#
# TABLE STRUCTURE FOR: tec_brands
#

DROP TABLE IF EXISTS `tec_brands`;

CREATE TABLE `tec_brands` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(10) NOT NULL,
  `brand` varchar(250) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `tec_brands` (`id`, `code`, `brand`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', 'TOSHIBA', 'TOSHIBA', '2021-06-28 22:12:30', '2021-06-30 03:59:36', NULL);
INSERT INTO `tec_brands` (`id`, `code`, `brand`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '123', 'w wq w', '2021-06-28 22:13:26', '2021-06-28 22:13:35', '2021-06-28 22:13:35');
INSERT INTO `tec_brands` (`id`, `code`, `brand`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', 'ACER', 'ACER', '2021-06-30 03:58:29', '2021-06-30 03:58:29', NULL);
INSERT INTO `tec_brands` (`id`, `code`, `brand`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', 'APPLE', 'APPLE', '2021-06-30 03:59:06', '2021-06-30 03:59:06', NULL);
INSERT INTO `tec_brands` (`id`, `code`, `brand`, `created_at`, `updated_at`, `deleted_at`) VALUES ('5', 'ASUS', 'ASUS', '2021-11-24 18:07:37', '2021-11-24 18:07:53', NULL);


#
# TABLE STRUCTURE FOR: tec_canals
#

DROP TABLE IF EXISTS `tec_canals`;

CREATE TABLE `tec_canals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `canal` varchar(250) CHARACTER SET latin1 DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `tec_canals` (`id`, `canal`) VALUES ('1', 'TPV');
INSERT INTO `tec_canals` (`id`, `canal`) VALUES ('2', 'FZA');
INSERT INTO `tec_canals` (`id`, `canal`) VALUES ('3', 'Externo');


#
# TABLE STRUCTURE FOR: tec_categories
#

DROP TABLE IF EXISTS `tec_categories`;

CREATE TABLE `tec_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(20) NOT NULL,
  `parent_category_id` int(11) NOT NULL,
  `name` varchar(55) NOT NULL,
  `image` varchar(100) DEFAULT 'no_image.png',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `tec_categories` (`id`, `code`, `parent_category_id`, `name`, `image`) VALUES ('1', '', '0', 'sin categoria', 'no_image.png');
INSERT INTO `tec_categories` (`id`, `code`, `parent_category_id`, `name`, `image`) VALUES ('2', '', '0', 'EMBASES Y EMBALAJES', 'no_image.png');
INSERT INTO `tec_categories` (`id`, `code`, `parent_category_id`, `name`, `image`) VALUES ('3', '', '0', 'MATERIA PRIMA', 'no_image.png');
INSERT INTO `tec_categories` (`id`, `code`, `parent_category_id`, `name`, `image`) VALUES ('4', '', '0', 'PRODUCTO EN PROCESO', 'no_image.png');
INSERT INTO `tec_categories` (`id`, `code`, `parent_category_id`, `name`, `image`) VALUES ('5', '', '0', 'PRODUCTO TERMINADO', 'no_image.png');


#
# TABLE STRUCTURE FOR: tec_combo_items
#

DROP TABLE IF EXISTS `tec_combo_items`;

CREATE TABLE `tec_combo_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `item_code` varchar(20) NOT NULL,
  `quantity` decimal(12,4) NOT NULL,
  `price` decimal(25,2) DEFAULT NULL,
  `cost` decimal(25,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `tec_combo_items` (`id`, `product_id`, `item_code`, `quantity`, `price`, `cost`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '205', '224', '1.0000', '0.01', '0.00', NULL, NULL, NULL);
INSERT INTO `tec_combo_items` (`id`, `product_id`, `item_code`, `quantity`, `price`, `cost`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '205', '130', '2.0000', '0.01', '0.00', NULL, NULL, NULL);
INSERT INTO `tec_combo_items` (`id`, `product_id`, `item_code`, `quantity`, `price`, `cost`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', '206', '127', '20.0000', '0.00', '0.00', NULL, NULL, NULL);
INSERT INTO `tec_combo_items` (`id`, `product_id`, `item_code`, `quantity`, `price`, `cost`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', '206', '180', '10.0000', '6.36', '0.00', NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: tec_credit_note
#

DROP TABLE IF EXISTS `tec_credit_note`;

CREATE TABLE `tec_credit_note` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_id` int(11) NOT NULL,
  `responseCode` int(11) NOT NULL,
  `invoiceTypeCode` int(11) NOT NULL,
  `serieNumero` varchar(20) NOT NULL,
  `issueDate` date NOT NULL,
  `issueTime` time NOT NULL,
  `documentCurrencyCode` varchar(10) NOT NULL,
  `customerDocumentID` int(11) NOT NULL,
  `supplierDocumentID` int(11) NOT NULL,
  `customerID` varchar(255) NOT NULL,
  `customerName` varchar(100) NOT NULL,
  `taxAmount` decimal(25,2) NOT NULL,
  `taxableAmount` decimal(25,2) NOT NULL,
  `non_affected` decimal(25,2) NOT NULL,
  `exonerated` decimal(25,2) NOT NULL,
  `taxSubtotal` decimal(25,2) NOT NULL,
  `payableAmount` decimal(25,2) NOT NULL,
  `referenceID` varchar(20) NOT NULL,
  `DocumentTypeCode` int(11) NOT NULL,
  `description` varchar(100) NOT NULL,
  `user_upgrade` int(11) DEFAULT NULL,
  `date_upgrade` datetime DEFAULT NULL,
  `user_create` int(11) NOT NULL,
  `date_create` datetime NOT NULL,
  `flg_response` int(11) DEFAULT NULL,
  `error_code` varchar(15) DEFAULT NULL,
  `response_descrip` varchar(2000) DEFAULT NULL,
  `digest_value` varchar(250) DEFAULT NULL,
  `estado` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `tec_credit_note` (`id`, `sale_id`, `responseCode`, `invoiceTypeCode`, `serieNumero`, `issueDate`, `issueTime`, `documentCurrencyCode`, `customerDocumentID`, `supplierDocumentID`, `customerID`, `customerName`, `taxAmount`, `taxableAmount`, `non_affected`, `exonerated`, `taxSubtotal`, `payableAmount`, `referenceID`, `DocumentTypeCode`, `description`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado`) VALUES ('1', '75', '1', '7', 'BC01-0000006', '2021-02-14', '03:27:07', 'PEN', '6', '1', '46809059', 'Karina Macías Yucra', '4.00', '21.00', '0.00', '0.00', '4.00', '24.00', 'B002-0000015', '3', 'ANULACION DE LA OPERACION', NULL, NULL, '2', '2021-02-14 03:27:07', NULL, NULL, NULL, NULL, '1');
INSERT INTO `tec_credit_note` (`id`, `sale_id`, `responseCode`, `invoiceTypeCode`, `serieNumero`, `issueDate`, `issueTime`, `documentCurrencyCode`, `customerDocumentID`, `supplierDocumentID`, `customerID`, `customerName`, `taxAmount`, `taxableAmount`, `non_affected`, `exonerated`, `taxSubtotal`, `payableAmount`, `referenceID`, `DocumentTypeCode`, `description`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado`) VALUES ('2', '139', '1', '7', 'BC01-0000007', '2021-03-28', '19:44:38', 'PEN', '6', '6', '20544142772', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '938.00', '5211.00', '0.00', '0.00', '938.00', '6149.00', 'B002-0000056', '3', 'Anulación de la operación', NULL, NULL, '2', '2021-03-28 19:44:38', NULL, NULL, NULL, NULL, '1');
INSERT INTO `tec_credit_note` (`id`, `sale_id`, `responseCode`, `invoiceTypeCode`, `serieNumero`, `issueDate`, `issueTime`, `documentCurrencyCode`, `customerDocumentID`, `supplierDocumentID`, `customerID`, `customerName`, `taxAmount`, `taxableAmount`, `non_affected`, `exonerated`, `taxSubtotal`, `payableAmount`, `referenceID`, `DocumentTypeCode`, `description`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado`) VALUES ('3', '140', '1', '7', 'FC01-0000016', '2021-03-28', '19:52:23', 'PEN', '6', '6', '20544142772', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '938.00', '5211.00', '0.00', '0.00', '938.00', '6149.00', 'F002-0000036', '1', 'Anulación de la operacion', NULL, NULL, '2', '2021-03-28 19:52:23', NULL, NULL, NULL, NULL, '1');
INSERT INTO `tec_credit_note` (`id`, `sale_id`, `responseCode`, `invoiceTypeCode`, `serieNumero`, `issueDate`, `issueTime`, `documentCurrencyCode`, `customerDocumentID`, `supplierDocumentID`, `customerID`, `customerName`, `taxAmount`, `taxableAmount`, `non_affected`, `exonerated`, `taxSubtotal`, `payableAmount`, `referenceID`, `DocumentTypeCode`, `description`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado`) VALUES ('4', '141', '1', '7', 'FC01-0000017', '2021-03-28', '19:52:50', 'PEN', '6', '6', '20544142772', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '938.00', '5211.00', '0.00', '0.00', '938.00', '6149.00', 'F002-0000037', '1', 'Anulación de la operación', NULL, NULL, '2', '2021-03-28 19:52:50', NULL, NULL, NULL, NULL, '1');
INSERT INTO `tec_credit_note` (`id`, `sale_id`, `responseCode`, `invoiceTypeCode`, `serieNumero`, `issueDate`, `issueTime`, `documentCurrencyCode`, `customerDocumentID`, `supplierDocumentID`, `customerID`, `customerName`, `taxAmount`, `taxableAmount`, `non_affected`, `exonerated`, `taxSubtotal`, `payableAmount`, `referenceID`, `DocumentTypeCode`, `description`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado`) VALUES ('5', '258', '1', '7', 'FC01-0000018', '2021-03-31', '08:48:15', 'PEN', '6', '6', '20538601684', 'MULTIGOURMET E.I.R.L.', '9.00', '48.00', '0.00', '0.00', '9.00', '57.00', 'F002-0000093', '1', 'Anulación de la operación', NULL, NULL, '2', '2021-03-31 08:48:15', '1', '0', 'La Nota de credito numero FC01-0000018, ha sido aceptada', 'jcSVcFx6meqhhARGKse2rUtA0mU=', '1');


#
# TABLE STRUCTURE FOR: tec_credit_note_files
#

DROP TABLE IF EXISTS `tec_credit_note_files`;

CREATE TABLE `tec_credit_note_files` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `credit_note_id` int(11) NOT NULL,
  `file_name` varchar(300) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `tec_credit_note_files` (`id`, `credit_note_id`, `file_name`) VALUES ('1', '1', 'boletas/EbRb48F9VViHxHNYcwSv.pdf');
INSERT INTO `tec_credit_note_files` (`id`, `credit_note_id`, `file_name`) VALUES ('2', '5', 'facturas/UqEgN7a1SzNYrTnaSXgZ.pdf');


#
# TABLE STRUCTURE FOR: tec_credit_note_items
#

DROP TABLE IF EXISTS `tec_credit_note_items`;

CREATE TABLE `tec_credit_note_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `credit_note_id` int(11) NOT NULL,
  `Quantity` int(11) NOT NULL,
  `LineExtensionAmount` int(11) NOT NULL,
  `PricingReference` int(11) NOT NULL,
  `PriceTypeCode` int(11) NOT NULL,
  `TaxTotalTaxAmount` decimal(25,2) NOT NULL,
  `TaxSubtotalTaxableAmount` int(11) NOT NULL,
  `PriceAmount` int(11) NOT NULL,
  `TaxSubtotalTaxAmount` decimal(25,2) NOT NULL,
  `TaxPercent` int(11) NOT NULL,
  `tax_method` int(11) NOT NULL,
  `Description` varchar(255) NOT NULL,
  `itemSellersID` varchar(50) NOT NULL,
  `user_upgrade` int(11) DEFAULT NULL,
  `date_upgrade` datetime DEFAULT NULL,
  `user_create` int(11) NOT NULL,
  `date_create` datetime NOT NULL,
  `estado` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;

INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('1', '1', '4', '4', '1', '1', '0.61', '3', '0', '0.61', '18', '0', 'BARRA DE QUINUA CON MANI Y NARANJA', '29', NULL, NULL, '2', '2021-02-14 03:27:07', '1');
INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('2', '1', '5', '5', '1', '1', '0.76', '4', '0', '0.76', '18', '0', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '31', NULL, NULL, '2', '2021-02-14 03:27:07', '1');
INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('3', '1', '5', '5', '1', '1', '0.76', '4', '0', '0.76', '18', '0', 'BARRA DE QUINUA CON MANI Y PASAS', '30', NULL, NULL, '2', '2021-02-14 03:27:07', '1');
INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('4', '1', '4', '5', '1', '1', '0.79', '4', '1', '0.79', '18', '0', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '33', NULL, NULL, '2', '2021-02-14 03:27:07', '1');
INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('5', '1', '5', '5', '1', '1', '0.76', '4', '0', '0.76', '18', '0', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '28', NULL, NULL, '2', '2021-02-14 03:27:07', '1');
INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('6', '2', '8784', '6148', '0', '1', '937.95', '5182', '0', '937.95', '18', '0', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '31', NULL, NULL, '2', '2021-03-28 19:44:38', '1');
INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('7', '3', '8784', '6148', '0', '1', '937.95', '5182', '0', '937.95', '18', '0', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '31', NULL, NULL, '2', '2021-03-28 19:52:23', '1');
INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('8', '4', '8784', '6148', '0', '1', '937.95', '5182', '0', '937.95', '18', '0', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '31', NULL, NULL, '2', '2021-03-28 19:52:50', '1');
INSERT INTO `tec_credit_note_items` (`id`, `credit_note_id`, `Quantity`, `LineExtensionAmount`, `PricingReference`, `PriceTypeCode`, `TaxTotalTaxAmount`, `TaxSubtotalTaxableAmount`, `PriceAmount`, `TaxSubtotalTaxAmount`, `TaxPercent`, `tax_method`, `Description`, `itemSellersID`, `user_upgrade`, `date_upgrade`, `user_create`, `date_create`, `estado`) VALUES ('9', '5', '5', '56', '11', '1', '8.64', '48', '9', '8.64', '18', '0', 'AJMG X 15 UND', '', NULL, NULL, '2', '2021-03-31 08:48:15', '1');


#
# TABLE STRUCTURE FOR: tec_credit_note_motive
#

DROP TABLE IF EXISTS `tec_credit_note_motive`;

CREATE TABLE `tec_credit_note_motive` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `description_NC` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

INSERT INTO `tec_credit_note_motive` (`id`, `description_NC`) VALUES ('1', 'AnulaciÃ³n de la operaciÃ³n');
INSERT INTO `tec_credit_note_motive` (`id`, `description_NC`) VALUES ('2', 'AnulaciÃ³n por error en el RUC');
INSERT INTO `tec_credit_note_motive` (`id`, `description_NC`) VALUES ('3', 'CorrecciÃ³n por error en la descripciÃ³n');
INSERT INTO `tec_credit_note_motive` (`id`, `description_NC`) VALUES ('4', 'Descuento global');
INSERT INTO `tec_credit_note_motive` (`id`, `description_NC`) VALUES ('5', 'Descuento por Item');
INSERT INTO `tec_credit_note_motive` (`id`, `description_NC`) VALUES ('6', 'DevoluciÃ³n total');
INSERT INTO `tec_credit_note_motive` (`id`, `description_NC`) VALUES ('7', 'DevoluciÃ³n parcial');


#
# TABLE STRUCTURE FOR: tec_customers
#

DROP TABLE IF EXISTS `tec_customers`;

CREATE TABLE `tec_customers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ruc` varchar(15) DEFAULT NULL,
  `name` varchar(55) NOT NULL,
  `cf1` varchar(255) NOT NULL,
  `cf2` varchar(255) NOT NULL,
  `phone` varchar(20) NOT NULL,
  `email` varchar(100) NOT NULL,
  `direccion` varchar(300) DEFAULT NULL,
  `customers_type_id` int(11) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `status` int(11) NOT NULL,
  `person_type` varchar(20) NOT NULL,
  `document_type_id` int(11) DEFAULT NULL,
  `is_retainer` tinyint(4) DEFAULT '0',
  `retainer_percentage` decimal(4,2) DEFAULT '0.00',
  PRIMARY KEY (`id`),
  KEY `INX_ESTADO` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=49762 DEFAULT CHARSET=utf8;

INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1', NULL, 'Varios', '00000000', '', '', '', '', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2', '10123456781', 'CEBRIAN HUAMAN TREYSSI LIBERTAD', '85255234', '', '930908971', 'kedibero@hotmail.com', 'dddddddddddddddddddddddddddddddddddd', NULL, NULL, '1', NULL, '2023-10-25 05:10:33', '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3', NULL, 'varios', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4', NULL, 'María Espiritu', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5', NULL, 'Eliana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6', NULL, 'PRODUCTOS VEGANOS GOURMET SAC', '', '20606170069', '', '', 'CAL.MANCO CAPAC NRO. 536 URB. ARMENDARIZ (DPTO 702) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '', '0', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7', NULL, 'judit', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8', NULL, 'JUAN CARLOS ALARCON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9', NULL, 'Isabell', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10', NULL, 'Gladys', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11', NULL, 'Isabell', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12', NULL, 'Lisbeth', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13', NULL, 'Juan Mantilla', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15', NULL, 'RUTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16', NULL, 'MERCEDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17', NULL, 'MILUSKA BELTRAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18', NULL, 'CARMEN SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19', NULL, 'JANINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20', NULL, 'ANTONIO SORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21', NULL, 'BRISET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23', NULL, 'BETY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25', NULL, 'SUSANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27', NULL, 'BILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30', NULL, 'LILY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31', NULL, 'LUANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32', NULL, 'LIDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36', NULL, 'IVAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38', NULL, 'JILL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39', NULL, 'ROSANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40', NULL, 'JULIO ANGULO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41', NULL, 'LINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42', NULL, 'CESAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44', NULL, 'LIDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45', NULL, 'VICTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46', NULL, 'ROSA MORI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47', NULL, 'DALILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48', NULL, 'GENISIS MEZARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('50', NULL, 'LUCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('51', NULL, 'RUTH TRUJILLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('52', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('53', NULL, 'CARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('54', NULL, 'CRISTIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('55', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('56', NULL, 'ESTEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('57', NULL, 'CARMEN MOGOLLON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('58', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('59', NULL, 'EFRAIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('60', NULL, 'DINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('61', NULL, 'DINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('62', NULL, 'NATALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('63', NULL, 'NATALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('64', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('65', NULL, 'LUZ JAYO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('66', NULL, 'MIRTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('67', NULL, 'PILAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('68', NULL, 'PERCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('69', NULL, 'LUISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('70', NULL, 'NINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('71', NULL, 'ANA MARIA TORRES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('72', NULL, 'MARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('73', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('74', NULL, 'LIZ CONTRERAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('75', NULL, 'JESOICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('76', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('77', NULL, 'FABIOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('78', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('79', NULL, 'CARLA PEREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('80', NULL, 'MAGALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('81', NULL, 'VICTORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('82', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('83', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('84', NULL, 'CARMEN ORTIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('85', NULL, 'ANGIE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('86', NULL, 'LIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('87', NULL, 'MAXIMILIANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('88', NULL, 'ANGIE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('89', NULL, 'YANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('90', NULL, 'JUAN CASTILLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('91', NULL, 'YAHAIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('92', NULL, 'JULIO TORRES MENDOZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('93', NULL, 'ANTONIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('94', NULL, 'MALU SERVICE S.R.L.', '', '20446901959', '', '', 'JR. LOS TULIPANES NRO. 210 PAUCARBAMBILLA HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('95', NULL, 'LUISA GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('96', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('97', NULL, 'CAMILA', '--', '', '', '', 'JR. LOS TULIPANES NRO. 210 PAUCARBAMBILLA HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('98', NULL, 'NELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('99', NULL, 'MARIA TERESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('100', NULL, 'ANA', '--', '', '', '', 'JR. LOS TULIPANES NRO. 210 PAUCARBAMBILLA HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('101', NULL, 'KELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('102', NULL, 'MIRLA', '--', '', '', '', 'JR. LOS TULIPANES NRO. 210 PAUCARBAMBILLA HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('103', NULL, 'MERCEDES', '--', '', '', '', 'JR. LOS TULIPANES NRO. 210 PAUCARBAMBILLA HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('104', NULL, 'FILOMENA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('105', NULL, 'ANDREA', '--', '', '', '', 'JR. LOS TULIPANES NRO. 210 PAUCARBAMBILLA HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('106', NULL, 'GUISELLA GUEVARA', '--', '', '', '', 'JR. LOS TULIPANES NRO. 210 PAUCARBAMBILLA HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('107', NULL, 'MARITZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('108', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('109', NULL, 'OLINDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('110', NULL, 'GERALDINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('111', NULL, 'CAROLINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('112', NULL, 'JESICA SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('113', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('114', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('115', NULL, 'LILIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('116', NULL, 'JULIA ALVAREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('117', NULL, 'TUEROS ABREGU DORIS', '', '10464020557', '', '', 'JR HUANUCO 221 INT 4 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('118', NULL, 'NORMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('119', NULL, 'EMILIA', '--', '', '', '', 'JR HUANUCO 221 INT 4 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('120', NULL, 'CARMEN', '--', '', '', '', 'JR HUANUCO 221 INT 4 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('121', NULL, 'MAURA UGARTE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('122', NULL, 'GISSELA', '--', '', '', '', 'JR HUANUCO 221 INT 4 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('123', NULL, 'RODRIGUEZ AYQUIPA VERONICA', '431770801', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('124', NULL, 'OMAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('125', NULL, 'GIULIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('126', NULL, 'CAROL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('127', NULL, 'JUAN MANUEL ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('128', NULL, 'INGRI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('129', NULL, 'JUAN MANUEL ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('130', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('131', NULL, 'MONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('132', NULL, 'AMPARO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('133', NULL, 'VIOLETA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('134', NULL, 'ALVARO CANDIA MOLINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('135', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('136', NULL, 'JESSICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('137', NULL, 'mercedes alarcon', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('138', NULL, 'karina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('139', NULL, 'katerine', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('140', NULL, 'deisy rojas', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('141', NULL, 'carolina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('142', NULL, 'carolina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('143', NULL, 'iago trujillano', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('144', NULL, 'JUAREZ MEZA GAUDI YOLANDA', '', '10403019424', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('145', NULL, 'RENZO', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('146', NULL, 'EBONY', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('147', NULL, 'LUIS', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('148', NULL, 'karina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('149', NULL, 'KARINA', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('150', NULL, 'MARIA', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('151', NULL, 'olga', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('152', NULL, 'DENIS', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('153', NULL, 'CECILIA', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('154', NULL, 'JESICA GARCIA', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('155', NULL, 'julissa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('156', NULL, 'ana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('157', NULL, 'MARIA', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('158', NULL, 'MARIA', '--', '', '', '', 'AV NICOLAS AYLLON 2150 ATE', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('159', NULL, 'emperatriz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('160', NULL, 'VANESSA VELEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('161', NULL, 'ANGELICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('162', NULL, 'sergio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('163', NULL, 'SERGIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('164', NULL, 'cecilia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('165', NULL, 'fredy barral', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('166', NULL, 'jaime', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('167', NULL, 'lupe', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('168', NULL, 'carlos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('169', NULL, 'carmen pachas', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('170', NULL, 'maritte del rosario', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('171', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('172', NULL, 'bilma', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('173', NULL, 'joselin saenz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('174', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('175', NULL, 'luis delgado', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('176', NULL, 'pablo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('177', NULL, 'JOSEFA OLAYA HIDALGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('178', NULL, 'lesly', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('179', NULL, 'MARGARITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('180', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('181', NULL, 'ROCIO LARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('182', NULL, 'KAREN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('183', NULL, 'MERCEDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('184', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('185', NULL, 'JAIME', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('186', NULL, 'ROBERTO ALVARADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('187', NULL, 'CINTIA GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('188', NULL, 'ROBERTO ALVARADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('189', NULL, 'ROBERTO ALVARADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('190', NULL, 'CELESTINO LUCAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('191', NULL, 'CELESTINO LUCAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('192', NULL, 'TITO PAREJA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('193', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('194', NULL, 'JONATAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('195', NULL, 'YANINA QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('196', NULL, 'JOSE LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('197', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('198', NULL, 'CECILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('199', NULL, 'SUSANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('200', NULL, 'NELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('201', NULL, 'TANIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('202', NULL, 'DALILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('203', NULL, 'ELISABET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('204', NULL, 'KAREN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('205', NULL, 'Rosario', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('206', NULL, 'MARIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('207', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('208', NULL, 'MARIELLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('209', NULL, 'NELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('210', NULL, 'BEATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('211', NULL, 'LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('212', NULL, 'MARITZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('213', NULL, 'MARITZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('214', NULL, 'JANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('215', NULL, 'JANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('216', NULL, 'PEDRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('217', NULL, 'JESSICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('218', NULL, 'ROSMERY FERNANDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('219', NULL, 'ELISABETH GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('220', NULL, 'CARLOS BECERRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('221', NULL, 'ANDREA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('222', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('223', NULL, 'FERNANDO ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('224', NULL, 'WALTER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('225', NULL, 'EDNA FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('226', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('227', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('228', NULL, 'MARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('229', NULL, 'ELSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('230', NULL, 'SOILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('231', NULL, 'SOILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('232', NULL, 'LURDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('233', NULL, 'ELVIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('234', NULL, 'LUIS GOMEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('235', NULL, 'GLADIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('236', NULL, 'JANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('237', NULL, 'OMAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('238', NULL, 'CARLOS ALBERTO PAREDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('239', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('240', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('241', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('242', NULL, 'SANDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('243', NULL, 'ELISABET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('244', NULL, 'GEAN CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('245', NULL, 'CARLOS ALBERTO PAREDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('246', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('247', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('248', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('249', NULL, 'DAYANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('250', NULL, 'MARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('251', NULL, 'PIERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('252', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('253', NULL, 'JESSICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('254', NULL, 'GLADIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('255', NULL, 'ANGELICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('256', NULL, 'ALISON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('257', NULL, 'ALISON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('258', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('259', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('260', NULL, 'CESAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('261', NULL, 'CESAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('262', NULL, 'CAROL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('263', NULL, 'LUCRESIA DE BORJA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('264', NULL, 'INES VEGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('265', NULL, 'MARTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('266', NULL, 'CELFA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('267', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('268', NULL, 'MARITZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('269', NULL, 'LILIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('270', NULL, 'EBELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('271', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('272', NULL, 'KELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('273', NULL, 'KELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('274', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('275', NULL, 'MARCIAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('276', NULL, 'JANET RAMIREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('277', NULL, 'MARCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('278', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('279', NULL, 'LADY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('280', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('281', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('282', NULL, 'POLL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('283', NULL, 'NICOLL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('284', NULL, 'LURDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('285', NULL, 'FABIOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('286', NULL, 'DALESKA PEREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('287', NULL, 'MARIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('288', NULL, 'BELU REYNA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('289', NULL, 'MONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('290', NULL, 'MORI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('291', NULL, 'LISBETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('292', NULL, 'SUSANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('293', NULL, 'EMILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('294', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('295', NULL, 'CRISTIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('296', NULL, 'NANCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('297', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('298', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('299', NULL, 'PINTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('300', NULL, 'SUSAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('301', NULL, 'WALTER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('302', NULL, 'MIRIYAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('303', NULL, 'YENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('304', NULL, 'LADY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('305', NULL, 'LINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('306', NULL, 'ENRIQUE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('307', NULL, 'VICTORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('308', NULL, 'CARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('309', NULL, 'ROSMERY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('310', NULL, 'GABY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('311', NULL, 'JESSICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('312', NULL, 'KELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('313', NULL, 'ANGELICA FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('314', NULL, 'TULA DE LA TORRE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('315', NULL, 'BEATRIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('316', NULL, 'MERCEDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('317', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('318', NULL, 'JULY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('319', NULL, 'LEONARDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('320', NULL, 'LEONARDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('321', NULL, 'GISSLEA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('322', NULL, 'LEONARDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('323', NULL, 'AYDE SAAVEDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('324', NULL, 'YAQUELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('325', NULL, 'LUCI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('326', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('327', NULL, 'SUSANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('328', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('329', NULL, 'JACKELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('330', NULL, 'NOEMI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('331', NULL, 'DANIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('332', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('333', NULL, 'DANIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('334', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('335', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('336', NULL, 'MARITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('337', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('338', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('339', NULL, 'NADIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('340', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('341', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('342', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('343', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('344', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('345', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('346', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('347', NULL, 'LURDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('348', NULL, 'ESTELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('349', NULL, 'ROLANDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('350', NULL, 'GABRIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('351', NULL, 'LESLI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('352', NULL, 'ROBERT', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('353', NULL, 'GISELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('354', NULL, 'MARGARITA SERNAQUE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('355', NULL, 'JULISA CRUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('356', NULL, 'JUAN CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('357', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('358', NULL, 'EDDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('359', NULL, 'XIOMARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('360', NULL, 'CAROLINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('361', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('362', NULL, 'JAVIER FARRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('363', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('364', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('365', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('366', NULL, 'DORELIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('367', NULL, 'nancy', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('368', NULL, 'julia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('369', NULL, 'varios', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('370', NULL, 'mari', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('371', NULL, 'BETTY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('372', NULL, 'JHON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('373', NULL, 'AQUIM', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('374', NULL, 'ADRIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('375', NULL, 'ALEXANDER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('376', NULL, 'ROSMERY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('377', NULL, 'fFELIX', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('378', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('379', NULL, 'CLORINDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('380', NULL, 'PIERINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('381', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('382', NULL, 'CAROLINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('383', NULL, 'eliana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('384', NULL, 'sandra', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('385', NULL, 'salcedo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('386', NULL, 'david', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('387', NULL, 'JAIME', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('388', NULL, 'angelica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('389', NULL, 'angelica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('390', NULL, 'LUIS VASQUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('391', NULL, 'jorge', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('392', NULL, 'GISSELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('393', NULL, 'SERMANTEC EIRL', '', '20552775831', '981491540', '', 'AV RIVAGUERO 583 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('394', NULL, 'DAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('395', NULL, 'ROSA', '--', '', '', '', 'av rivaguero 583 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('396', NULL, 'javier', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('397', NULL, 'MARIA ALEJANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('398', NULL, 'mirsa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('399', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('400', NULL, 'sandra', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('401', NULL, 'sandra', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('402', NULL, 'marco antonio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('403', NULL, 'claudia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('404', NULL, 'july', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('405', NULL, 'CELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('406', NULL, 'CELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('407', NULL, 'consuelo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('408', NULL, 'YAHAIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('409', NULL, 'magaly', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('410', NULL, 'milagros', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('411', NULL, 'YAHAIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('412', NULL, 'jJACQUELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('413', NULL, 'juan carlos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('414', NULL, 'fredi paucar', '23270496', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('415', NULL, 'CHRISTIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('416', NULL, 'BORY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('417', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('418', NULL, 'BERTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('419', NULL, 'ARTURO AGURTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('420', NULL, 'JENIFER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('421', NULL, 'FRANKLIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('422', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('423', NULL, 'JULIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('424', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('425', NULL, 'GERAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('426', NULL, 'JULIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('427', NULL, 'ALIDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('428', NULL, 'MEDOZA RODRIGUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('429', NULL, 'SERGIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('430', NULL, 'CARLOS DIAZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('431', NULL, 'ROCIO ARIAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('432', NULL, 'RAFAEL FUENTES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('433', NULL, 'MARIELA MORENO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('434', NULL, 'KAREN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('435', NULL, 'CINTHIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('436', NULL, 'MERCEDES CRUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('437', NULL, 'LINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('438', NULL, 'WALTER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('439', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('440', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('441', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('442', NULL, 'ANDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('443', NULL, 'FERNNDO PAREDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('444', NULL, 'TANIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('445', NULL, 'KETTY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('446', NULL, 'ALEXANDER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('447', NULL, 'ALEX', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('448', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('449', NULL, 'JHONY RAMIREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('450', NULL, 'DAYANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('451', NULL, 'ESTELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('452', NULL, 'SARA GONZALES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('453', NULL, 'SISI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('454', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('455', NULL, 'CESAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('456', NULL, 'BEATRIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('457', NULL, 'CHRISTIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('458', NULL, 'CHRISTIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('459', NULL, 'CHRISTIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('460', NULL, 'MELISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('461', NULL, 'BEATRIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('462', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('463', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('464', NULL, 'EMILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('465', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('466', NULL, 'JANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('467', NULL, 'BEATRIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('468', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('469', NULL, 'LUCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('470', NULL, 'MILUSKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('471', NULL, 'CLARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('472', NULL, 'CLARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('473', NULL, 'ALEXANDER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('474', NULL, 'ROSY DIAZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('475', NULL, 'PATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('476', NULL, 'ANGELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('477', NULL, 'VANESSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('478', NULL, 'INGRID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('479', NULL, 'JENIFER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('480', NULL, 'ELISABET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('481', NULL, 'CAROL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('482', NULL, 'MARTHA FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('483', NULL, 'KAROL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('484', NULL, 'ALEXANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('485', NULL, 'ALEXIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('486', NULL, 'LISBET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('487', NULL, 'PEDRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('488', NULL, 'ROSA SANTISTEBAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('489', NULL, 'CARMELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('490', NULL, 'ALBERTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('491', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('492', NULL, 'BENJAMIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('493', NULL, 'BENJAMIN DELGADILLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('494', NULL, 'ANGI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('495', NULL, 'JENNY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('496', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('497', NULL, 'ELISABET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('498', NULL, 'MIREYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('499', NULL, 'LUIS ANGEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('500', NULL, 'CARMEN VENTURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('501', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('502', NULL, 'EMILY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('503', NULL, 'LUIS MOYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('504', NULL, 'WILIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('505', NULL, 'ROSARIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('506', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('507', NULL, 'IVAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('508', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('509', NULL, 'MARITZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('510', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('511', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('512', NULL, 'LIDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('513', NULL, 'LOREN JIMENEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('514', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('515', NULL, 'susana castañeda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('516', NULL, 'GISSELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('517', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('518', NULL, 'nils', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('519', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('520', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('521', NULL, 'JULIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('522', NULL, 'mariela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('523', NULL, 'ROBERTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('524', NULL, 'aracely', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('525', NULL, 'JULIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('526', NULL, 'roberto', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('527', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('528', NULL, 'EBER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('529', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('530', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('531', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('532', NULL, 'YAKI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('533', NULL, 'JULI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('534', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('535', NULL, 'JANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('536', NULL, 'MARITZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('537', NULL, 'MILY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('538', NULL, 'MARI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('539', NULL, 'VICTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('540', NULL, 'JANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('541', NULL, 'WILMER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('542', NULL, 'UMERES S.A.C', '', '20550592763', '', '', 'AV CAQUETA 467 INT 387 A', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('543', NULL, 'DAIMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('544', NULL, 'MICHAEL COCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('545', NULL, 'UMERES S.A.C', '', '20550592763', '', '', 'AV CAQUETA 467 INT 387 A', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('546', NULL, 'YESENIA ROQUE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('547', NULL, 'ARMANDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('548', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('549', NULL, 'ESPINOZA VELARDE FRESIA JASMIN', '', '10405784748', '', '', 'PARQUE HUAURA 289 SANTOYO EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('550', NULL, 'JUSTIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('551', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('552', NULL, 'ELIZABET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('553', NULL, 'FRESIA JASMIN ESPINOZA VELARDE', '', '10405784748', '', '', 'PARQUE HUARA 289 SANTOYO  EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('554', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('555', NULL, 'BETTY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('556', NULL, 'carlos ramirez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('557', NULL, 'KATYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('558', NULL, 'JANET CASTRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('559', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('560', NULL, 'FRANCISCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('561', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('562', NULL, 'HUMBERTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('563', NULL, 'ROSMANM', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('564', NULL, 'MANUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('565', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('566', NULL, 'CAROLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('567', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('568', NULL, 'LUIS SEQUERA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('569', NULL, 'MILAGROS VALENCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('570', NULL, 'KATYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('571', NULL, 'MARLENE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('572', NULL, 'LUCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('573', NULL, 'NOEMI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('574', NULL, 'DAVID GARAY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('575', NULL, 'AMALIA COLLANTES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('576', NULL, 'ROLANDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('577', NULL, 'DIEGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('578', NULL, 'ZEIDA PALACIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('579', NULL, 'susana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('580', NULL, 'francis', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('581', NULL, 'magnolia parades', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('582', NULL, 'beatriz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('583', NULL, 'kimi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('584', NULL, 'carla', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('585', NULL, 'alicia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('586', NULL, 'jusse', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('587', NULL, 'zulema', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('588', NULL, 'mirian', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('589', NULL, 'paula chamache', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('590', NULL, 'miguel ramos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('591', NULL, 'cecilia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('592', NULL, 'cecilia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('593', NULL, 'jose armas', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('594', NULL, 'micaela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('595', NULL, 'mari pacheco', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('596', NULL, 'luis lopez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('597', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('598', NULL, 'KELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('599', NULL, 'paola', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('600', NULL, 'DOANI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('601', NULL, 'juan tito', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('602', NULL, 'EMELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('603', NULL, 'paola bautista', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('604', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('605', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('606', NULL, 'DILMER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('607', NULL, 'JOSE LUIS QUISPE HIDALGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('608', NULL, 'DOMINGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('609', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('610', NULL, 'ALICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('611', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('612', NULL, 'MRIA LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('613', NULL, 'WILY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('614', NULL, 'LESLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('615', NULL, 'RENE VILCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('616', NULL, 'JACQUI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('617', NULL, 'SANDRA ALVARADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('618', NULL, 'ALINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('619', NULL, 'RENE VILCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('620', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('621', NULL, 'CANDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('622', NULL, 'ZOILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('623', NULL, 'Gladys', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('624', NULL, 'MARUJA RIVERA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('625', NULL, 'ADELAIDA DIAZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('626', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('627', NULL, 'MARCIAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('628', NULL, 'NORKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('629', NULL, 'JOEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('630', NULL, 'CARMEN GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('631', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('632', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('633', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('634', NULL, 'SANDRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('635', NULL, 'MODESTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('636', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('637', NULL, 'OLGA ROMERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('638', NULL, 'ERNESTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('639', NULL, 'EVANS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('640', NULL, 'VIVIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('641', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('642', NULL, 'JUDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('643', NULL, 'JANINA ALFARO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('644', NULL, 'ELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('645', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('646', NULL, 'MARTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('647', NULL, 'PATRICIA QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('648', NULL, 'ELENA NEVADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('649', NULL, 'HELEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('650', NULL, 'LILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('651', NULL, 'ROSA MARQUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('652', NULL, 'CARMEN VEGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('653', NULL, 'ELIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('654', NULL, 'ELIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('655', NULL, 'CONSUELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('656', NULL, 'YOLINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('657', NULL, 'VIVIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('658', NULL, 'YASBET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('659', NULL, 'CELESTIAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('660', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('661', NULL, 'JUSBET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('662', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('663', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('664', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('665', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('666', NULL, 'YURI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('667', NULL, 'PAMELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('668', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('669', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('670', NULL, 'JESSICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('671', NULL, 'CHALICO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('672', NULL, 'CONSUELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('673', NULL, 'MERCEDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('674', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('675', NULL, 'TERESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('676', NULL, 'EMPERATRIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('677', NULL, 'ROSA GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('678', NULL, 'ROSA GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('679', NULL, 'CINTHYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('680', NULL, 'ERMENEGILDA VILLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('681', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('682', NULL, 'GABRIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('683', NULL, 'ANA MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('684', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('685', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('686', NULL, 'DORIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('687', NULL, 'KAREN COLLANTE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('688', NULL, 'pilar', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('689', NULL, 'deysi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('690', NULL, 'FREDDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('691', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('692', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('693', NULL, 'HECTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('694', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('695', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('696', NULL, 'CINDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('697', NULL, 'LILIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('698', NULL, 'ALEXANDRA GUZMAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('699', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('700', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('701', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('702', NULL, 'JAZMIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('703', NULL, 'KARINA HUAMAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('704', NULL, 'GISSELA HUAMAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('705', NULL, 'ANGELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('706', NULL, 'KARINA HUAMAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('707', NULL, 'LUZ URBINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('708', NULL, 'GLORIA HUACHO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('709', NULL, 'YENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('710', NULL, 'NATALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('711', NULL, 'GISELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('712', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('713', NULL, 'LUORDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('714', NULL, 'YANINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('715', NULL, 'MAGALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('716', NULL, 'MAGALI ZUMARAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('717', NULL, 'CELIDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('718', NULL, 'NELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('719', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('720', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('721', NULL, 'FIORELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('722', NULL, 'MEDALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('723', NULL, 'ARACELY BARRIENTOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('724', NULL, 'PILAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('725', NULL, 'ESTEFANI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('726', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('727', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('728', NULL, 'LIZETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('729', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('730', NULL, 'KELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('731', NULL, 'WENDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('732', NULL, 'GABRIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('733', NULL, 'ELENA MANTARI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('734', NULL, 'RAUL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('735', NULL, 'JOEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('736', NULL, 'LUCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('737', NULL, 'MAGALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('738', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('739', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('740', NULL, 'LUCI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('741', NULL, 'JOEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('742', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('743', NULL, 'JUAN CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('744', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('745', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('746', NULL, 'RITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('747', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('748', NULL, 'ELVIA QUIÑONES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('749', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('750', NULL, 'RAUL VELASQUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('751', NULL, 'CENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('752', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('753', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('754', NULL, 'CINDIA TADEO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('755', NULL, 'STWARS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('756', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('757', NULL, 'KATY CARDENAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('758', NULL, 'alfredo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('759', NULL, 'DAFNE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('760', NULL, 'NARCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('761', NULL, 'KATY CARDENAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('762', NULL, 'ENRIQUE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('763', NULL, 'MICHELE JIBAJA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('764', NULL, 'MICHELE JIBAJA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('765', NULL, 'MICHELE JIBAJA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('766', NULL, 'claudia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('767', NULL, 'EDUARD', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('768', NULL, 'ELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('769', NULL, 'manuela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('770', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('771', NULL, 'lesly', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('772', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('773', NULL, 'CECILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('774', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('775', NULL, 'maritza', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('776', NULL, 'richard', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('777', NULL, 'roger', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('778', NULL, 'petronila', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('779', NULL, 'CARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('780', NULL, 'gladis', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('781', NULL, 'tania', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('782', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('783', NULL, 'mery', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('784', NULL, 'JHON TAIPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('785', NULL, 'LISETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('786', NULL, 'MARIALITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('787', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('788', NULL, 'BRISET NUÑES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('789', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('790', NULL, 'JESENIA ESCOBAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('791', NULL, 'olga', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('792', NULL, 'wilbert', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('793', NULL, 'patricia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('794', NULL, 'juan', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('795', NULL, 'rosa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('796', NULL, 'rocio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('797', NULL, 'norma', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('798', NULL, 'maria campo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('799', NULL, 'jesica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('800', NULL, 'daniel', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('801', NULL, 'rogelio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('802', NULL, 'erika', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('803', NULL, 'karen', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('804', NULL, 'pilar', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('805', NULL, 'bety', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('806', NULL, 'yvi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('807', NULL, 'yvi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('808', NULL, 'yvi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('809', NULL, 'yvi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('810', NULL, 'cintia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('811', NULL, 'farfan', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('812', NULL, 'maribel lopez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('813', NULL, 'ricardo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('814', NULL, 'emerida', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('815', NULL, 'camilo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('816', NULL, 'dora', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('817', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('818', NULL, 'XIOMARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('819', NULL, 'ana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('820', NULL, 'ingrid huaira tito', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('821', NULL, 'graciela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('822', NULL, 'karina ortiz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('823', NULL, 'alfredo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('824', NULL, 'raquel VALVERDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('825', NULL, 'ermelinda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('826', NULL, 'ermelinda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('827', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('828', NULL, 'MIRIAN MENDOZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('829', NULL, 'HELEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('830', NULL, 'LOURDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('831', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('832', NULL, 'LISBETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('833', NULL, 'JUDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('834', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('835', NULL, 'yasenia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('836', NULL, 'FERNANDEZ ESTRELLA JOSE ANTONIO', '', '10101944455', '', '', 'JR AGATA 1352 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('837', NULL, 'GLADIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('838', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('839', NULL, 'ERIKA', '--', '', '', '', 'JR AGATA 1352 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('840', NULL, 'noemi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('841', NULL, 'LUIS SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('842', NULL, 'jose antonio fernandez estrella', '', '1010194445', '', '', 'jr agatea 1352 los olivos', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('843', NULL, 'ESTRELLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('844', NULL, 'jose antonio fernandez estrella', '', '10101944455', '', '', 'jr agatea 1352 los olivos', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('845', NULL, 'ESTRELLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('846', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('847', NULL, 'carlos marin  merino', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('848', NULL, 'esperanza', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('849', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('850', NULL, 'ESPERANZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('851', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('852', NULL, 'HORTELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('853', NULL, 'RONAL ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('854', NULL, 'SULLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('855', NULL, 'JAQUI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('856', NULL, 'JURADO SOLANO RICARDO MARTIN', '', '10400953932', '', '', 'AV. UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('857', NULL, 'JURADO SOLANO RICARDO MARTIN', '', '10400953932', '', '', 'AV UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('858', NULL, 'CARLOS ACOSTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('859', NULL, 'luis gonsalez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('860', NULL, 'RICARDO JURADO SOLANO', '', '10400953932', '', '', 'AV. UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('861', NULL, 'elisabet', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('862', NULL, 'YESICA', '--', '', '', '', 'AV. UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('863', NULL, 'sandro', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('864', NULL, 'SULLY', '--', '', '', '', 'AV. UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('865', NULL, 'yeni', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('866', NULL, 'MILUSKA', '--', '', '', '', 'AV. UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('867', NULL, 'LUIS DUEÑAS', '--', '', '', '', 'AV. UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('868', NULL, 'RONALD', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('869', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('870', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('871', NULL, 'OSCAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('872', NULL, 'ELIZABETH', '--', '', '', '', 'AV. UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('873', NULL, 'JENY', '--', '', '', '', 'AV. UNIVERSITARIA MZ F LT 5 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('874', NULL, 'MIRYAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('875', NULL, 'CRISTINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('876', NULL, 'BILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('877', NULL, 'LURDES MILAGRO LAZO AVALOS', '', '10407584894', '', '', 'POLO JIMENEZ 660 EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('878', NULL, 'LURDES MILAGRO LAZO AVALOS', '', '10407584894', '', '', 'POLO JIMENEZ 660 EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('879', NULL, 'GINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('880', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('881', NULL, 'REYNA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('882', NULL, 'MARIA VILCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('883', NULL, 'ROXANA HEREDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('884', NULL, 'DAYANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('885', NULL, 'EDSON ANCANA BARBARAN', '', '10460234358', '', '', 'CALLE LOS ROSALES ,MZ E LT8 LURIN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('886', NULL, 'EDSON ANCANA BARBARAN', '', '10460234358', '', '', 'CALLE LOS ROSALES ,MZ E LT8 LURIN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('887', NULL, 'EDSON ANCANA BARBARAN', '', '10460234358', '', '', 'CALLE LOS ROSALES ,MZ E LT8 LURIN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('888', NULL, 'DANTE PEREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('889', NULL, 'NANCY RODRIGUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('890', NULL, 'PATRICIA  SARABIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('891', NULL, 'ESTEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('892', NULL, 'ESTEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('893', NULL, 'CAMILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('894', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('895', NULL, 'JACQUELINE MEJIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('896', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('897', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('898', NULL, 'YAQUI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('899', NULL, 'BELGICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('900', NULL, 'JESICA TELLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('901', NULL, 'JUDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('902', NULL, 'KARINA SAVEDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('903', NULL, 'ROSARIO VILLANUEVA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('904', NULL, 'HUMBERTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('905', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('906', NULL, 'ANA MELENDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('907', NULL, 'CLAUDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('908', NULL, 'LILIANA PAOLA BRINGAS CALDERON', '', '10104766019', '', '', 'JR MONTERREY 170 CHACARILLA SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('909', NULL, 'ELENA', '--', '', '', '', 'JR MONTERREY 170 CHACARILLA SURCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('910', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('911', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('912', NULL, 'ALEXANDER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('913', NULL, 'MILAGROS MORALES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('914', NULL, 'JANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('915', NULL, 'GRISELDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('916', NULL, 'RUTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('917', NULL, 'ELIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('918', NULL, 'RUTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('919', NULL, 'monica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('920', NULL, 'NELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('921', NULL, 'VERNA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('922', NULL, 'karina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('923', NULL, 'EMILIANAO GONZALES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('924', NULL, 'lucy quispe', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('925', NULL, 'DANIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('926', NULL, 'maria fernanda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('927', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('928', NULL, 'milagros', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('929', NULL, 'CELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('930', NULL, 'KAREN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('931', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('932', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('933', NULL, 'PAMELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('934', NULL, 'PAMELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('935', NULL, 'PAMELA MORALES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('936', NULL, 'YESI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('937', NULL, 'GLADYS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('938', NULL, 'YENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('939', NULL, 'FLAVIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('940', NULL, 'SHIRLEY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('941', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('942', NULL, 'RUBEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('943', NULL, 'CARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('944', NULL, 'HERMELINDA BUTRON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('945', NULL, 'JULIO BECERRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('946', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('947', NULL, 'MERCEDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('948', NULL, 'IBETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('949', NULL, 'NELIDA REYES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('950', NULL, 'LILIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('951', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('952', NULL, 'ANA PORRES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('953', NULL, 'JHON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('954', NULL, 'VANESSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('955', NULL, 'RUTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('956', NULL, 'LIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('957', NULL, 'LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('958', NULL, 'JUAN CARLOS ADRIANO MORALES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('959', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('960', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('961', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('962', NULL, 'REY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('963', NULL, 'REY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('964', NULL, 'ALEXANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('965', NULL, 'ELISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('966', NULL, 'LIZETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('967', NULL, 'YANET SANDOVAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('968', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('969', NULL, 'YANELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('970', NULL, 'ELENA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('971', NULL, 'IVONE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('972', NULL, 'CINTHIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('973', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('974', NULL, 'IRENE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('975', NULL, 'LISBET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('976', NULL, 'KARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('977', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('978', NULL, 'PONCE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('979', NULL, 'RENZO CHERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('980', NULL, 'IRENE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('981', NULL, 'JULY NAVARRETE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('982', NULL, 'EDMUN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('983', NULL, 'LAURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('984', NULL, 'PAULA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('985', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('986', NULL, 'DAIFILIA YANGUAY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('987', NULL, 'GUTIERREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('988', NULL, 'oscar mendoza', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('989', NULL, 'elsa alanya', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('990', NULL, 'isabel sanchez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('991', NULL, 'NANCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('992', NULL, 'EVA SAENZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('993', NULL, 'RUTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('994', NULL, 'marcos espinoza', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('995', NULL, 'maria indriago', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('996', NULL, 'cristina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('997', NULL, 'joselin', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('998', NULL, 'SAYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('999', NULL, 'JULISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1000', NULL, 'LIZETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1001', NULL, 'carla', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1002', NULL, 'DANIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1003', NULL, 'CARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1004', NULL, 'julissa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1005', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1006', NULL, 'elena', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1007', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1008', NULL, 'beny', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1009', NULL, 'AVC RECICLAJE EIRL', '', '20573865171', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1010', NULL, 'CARLA', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1011', NULL, 'MARIA', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1012', NULL, 'YANET', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1013', NULL, 'VICTORIA', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1014', NULL, 'ROSARIO VILLANUEVA', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1015', NULL, 'RONALD', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1016', NULL, 'MARITZA', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1017', NULL, 'FREDY', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1018', NULL, 'MARIA SANCHEZ', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1019', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1020', NULL, 'elnea soto', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1021', NULL, 'CARLOS', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1022', NULL, 'MARIA CECILIA', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1023', NULL, 'DANIEL', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1024', NULL, 'merli bardales baca', '', '10445607920', '', '', 'av dominicos mz r lt 13 sta. rosa- callao', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1025', NULL, 'MELISSA MEZA', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1026', NULL, 'DAVID ZEVALLOS', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1027', NULL, 'ERIKA', '--', '', '', '', 'JIRON CAJMARCA 689 HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1028', NULL, 'KATHERINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1029', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1030', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1031', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1032', NULL, 'HERLINDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1033', NULL, 'HERLINDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1034', NULL, 'gabriela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1035', NULL, 'MAYDELI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1036', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1037', NULL, 'MARY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1038', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1039', NULL, 'LUANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1040', NULL, 'INGRID COCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1041', NULL, 'MARICIELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1042', NULL, 'AMELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1043', NULL, 'CARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1044', NULL, 'ANGELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1045', NULL, 'BARRA BRAVA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1046', NULL, 'VILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1047', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1048', NULL, 'NORA SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1049', NULL, 'KARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1050', NULL, 'ANABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1051', NULL, 'DEBORA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1052', NULL, 'LUCINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1053', NULL, 'KATHERINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1054', NULL, 'VICTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1055', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1056', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1057', NULL, 'CINTIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1058', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1059', NULL, 'YANINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1060', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1061', NULL, 'JASMIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1062', NULL, 'GISELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1063', NULL, 'GISELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1064', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1065', NULL, 'EDELMIRA TICLLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1066', NULL, 'MAGALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1067', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1068', NULL, 'PATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1069', NULL, 'EBERSON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1070', NULL, 'SUSAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1071', NULL, 'JHONATAN RODRIGUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1072', NULL, 'FRENANDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1073', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1074', NULL, 'NORA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1075', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1076', NULL, 'MERY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1077', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1078', NULL, 'ADALBERTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1079', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1080', NULL, 'LIBIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1081', NULL, 'GIOVANNA CRISOLOGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1082', NULL, 'ANDREA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1083', NULL, 'KELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1084', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1085', NULL, 'AURORA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1086', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1087', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1088', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1089', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1090', NULL, 'SOLEDAD', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1091', NULL, 'JESUS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1092', NULL, 'LADY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1093', NULL, 'OLIVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1094', NULL, 'EDUARDO SORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1095', NULL, 'DELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1096', NULL, 'ALEX', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1097', NULL, 'SHERLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1098', NULL, 'MARTHA CASTRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1099', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1100', NULL, 'MARGARITA ORTEGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1101', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1102', NULL, 'LENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1103', NULL, 'FLORA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1104', NULL, 'GIOANI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1105', NULL, 'GIOANI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1106', NULL, 'YESICA POZO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1107', NULL, 'LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1108', NULL, 'EVELIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1109', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1110', NULL, 'ANGELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1111', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1112', NULL, 'EMILY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1113', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1114', NULL, 'NOEMI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1115', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1116', NULL, 'YANELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1117', NULL, 'JAKY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1118', NULL, 'JAKY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1119', NULL, 'PAMELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1120', NULL, 'YAKY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1121', NULL, 'CINDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1122', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1123', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1124', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1125', NULL, 'LUCERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1126', NULL, 'NANCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1127', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1128', NULL, 'CRIS ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1129', NULL, 'ESTRELLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1130', NULL, 'DANIEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1131', NULL, 'YANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1132', NULL, 'YIMY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1133', NULL, 'DALILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1134', NULL, 'JULIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1135', NULL, 'MILI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1136', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1137', NULL, 'LOURDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1138', NULL, 'MILY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1139', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1140', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1141', NULL, 'SUSANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1142', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1143', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1144', NULL, 'GEMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1145', NULL, 'NATALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1146', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1147', NULL, 'LEYDI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1148', NULL, 'GUADALUPE GUERRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1149', NULL, 'RUTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1150', NULL, 'VIVIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1151', NULL, 'ANGELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1152', NULL, 'BEATRZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1153', NULL, 'VICTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1154', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1155', NULL, 'SATURNINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1156', NULL, 'NADIA IMAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1157', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1158', NULL, 'MERY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1159', NULL, 'MERY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1160', NULL, 'MARTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1161', NULL, 'Rosario', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1162', NULL, 'MARGARITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1163', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1164', NULL, 'ROSARIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1165', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1166', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1167', NULL, 'JOEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1168', NULL, 'LAURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1169', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1170', NULL, 'OSCAR DIAZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1171', NULL, 'DAYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1172', NULL, 'ALEJANDRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1173', NULL, 'MIRTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1174', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1175', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1176', NULL, 'OSWALDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1177', NULL, 'ROSA HARO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1178', NULL, 'SENDI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1179', NULL, 'JUNEISI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1180', NULL, 'ELMER LAZARO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1181', NULL, 'SARA HUAMAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1182', NULL, 'ANALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1183', NULL, 'NORA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1184', NULL, 'OLENKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1185', NULL, 'EBER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1186', NULL, 'SHARON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1187', NULL, 'RUBEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1188', NULL, 'JEIMI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1189', NULL, 'LUCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1190', NULL, 'PAUL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1191', NULL, 'MARIELA FERNANDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1192', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1193', NULL, 'MARGOT REYES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1194', NULL, 'MARGOT REYES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1195', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1196', NULL, 'GIANMARCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1197', NULL, 'ARANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1198', NULL, 'MARIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1199', NULL, 'LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1200', NULL, 'NICOLAS DEPAZ VALVERDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1201', NULL, 'PEDRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1202', NULL, 'JOANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1203', NULL, 'ALFREDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1204', NULL, 'JOANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1205', NULL, 'CARLOS QUISPE PERES', '', '10102235491', '', '', 'CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1206', NULL, 'ELENA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1207', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1208', NULL, 'HECTOR', '--', '', '', '', 'CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1209', NULL, 'GINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1210', NULL, 'LUCIA AGUIRRE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1211', NULL, 'AMANDA', '--', '', '', '', 'CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1212', NULL, 'DOMINGO HERNANDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1213', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1214', NULL, 'WENDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1215', NULL, 'SHIRLEY TORRES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1216', NULL, 'GISELA', '--', '', '', '', 'CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1217', NULL, 'patricia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1218', NULL, 'MAYRA', '--', '', '', '', 'CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1219', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1220', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1221', NULL, 'YULY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1222', NULL, 'EVELIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1223', NULL, 'OLGA  MUCHO CASTILLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1224', NULL, 'JOSELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1225', NULL, 'ROCIO PALOMINO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1226', NULL, 'GIULIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1227', NULL, 'patricia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1228', NULL, 'santos fria', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1229', NULL, 'santos fria', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1230', NULL, 'olenka', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1231', NULL, 'TERESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1232', NULL, 'maria de la cruz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1233', NULL, 'AIDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1234', NULL, 'ROBERT', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1235', NULL, 'AIDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1236', NULL, 'LUCI ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1237', NULL, 'RENZO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1238', NULL, 'RENZO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1239', NULL, 'NUTRA SA', '', '20144215649', '991983828', '', 'AL.CAMINO REAL 1801 MZA. A LOTE. 4 Z.I. PARQUE INDUSTRIAL SAN PEDRITO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1240', NULL, 'monica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1241', NULL, 'dora', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1242', NULL, 'ANDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1243', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1244', NULL, 'AIDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1245', NULL, 'rosa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1246', NULL, 'EDUARD', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1247', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1248', NULL, 'MILLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1249', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1250', NULL, 'CARMEN VICTORIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1251', NULL, 'LESLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1252', NULL, 'SERGIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1253', NULL, 'ROSA CABRERA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1254', NULL, 'NELI SANTOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1255', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1256', NULL, 'MARTIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1257', NULL, 'sergio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1258', NULL, 'RAMIRO VELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1259', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1260', NULL, 'LITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1261', NULL, 'german ramon', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1262', NULL, 'giovana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1263', NULL, 'LILDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1264', NULL, 'BEATRIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1265', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1266', NULL, 'LIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1267', NULL, 'MARCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1268', NULL, 'bety', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1269', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1270', NULL, 'endira', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1271', NULL, 'gabriel', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1272', NULL, 'juan', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1273', NULL, 'elena', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1274', NULL, 'bar zela e.i.r.l', '', '20603736690', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1275', NULL, 'briseida', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1276', NULL, 'JOANA', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1277', NULL, 'VANESA', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1278', NULL, 'SOILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1279', NULL, 'DIONICIO', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1280', NULL, 'MARTHA', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1281', NULL, 'OMAR', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1282', NULL, 'NATALIA', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1283', NULL, 'ELSA', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1284', NULL, 'LUCIANO', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1285', NULL, 'RAQUEL', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1286', NULL, 'MAYRA', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1287', NULL, 'ELENA', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1288', NULL, 'CANDY', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1289', NULL, 'CANDY', '--', '', '', '', 'av. nicolas de pierola 961 lima', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1290', NULL, 'NOREL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1291', NULL, 'CANDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1292', NULL, 'FREDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1293', NULL, 'DANIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1294', NULL, 'YANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1295', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1296', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1297', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1298', NULL, 'CECILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1299', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1300', NULL, 'LIDI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1301', NULL, 'CANDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1302', NULL, 'melisa muñoz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1303', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1304', NULL, 'jon', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1305', NULL, 'jon', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1306', NULL, 'YULISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1307', NULL, 'DELCI VALVERDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1308', NULL, 'NORI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1309', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1310', NULL, 'BEATRIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1311', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1312', NULL, 'MARGOT', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1313', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1314', NULL, 'LIDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1315', NULL, 'ANDREA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1316', NULL, 'FLOR RAMON JAIMES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1317', NULL, 'WILMER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1318', NULL, 'MAJUMI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1319', NULL, 'ELSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1320', NULL, 'LETICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1321', NULL, 'PATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1322', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1323', NULL, 'ALEJANDRO RUEDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1324', NULL, 'ILDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1325', NULL, 'LEIDY DELGADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1326', NULL, 'FIORELLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1327', NULL, 'MERCEDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1328', NULL, 'KIARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1329', NULL, 'SAIDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1330', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1331', NULL, 'LUIGI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1332', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1333', NULL, 'ELVIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1334', NULL, 'ANGELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1335', NULL, 'MARIA FERNANDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1336', NULL, 'LAURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1337', NULL, 'NANCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1338', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1339', NULL, 'DINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1340', NULL, 'SAIDA ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1341', NULL, 'YANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1342', NULL, 'NESTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1343', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1344', NULL, 'COTY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1345', NULL, 'WALTER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1346', NULL, 'CARLOS GOMEZ MARAVI', '', '10067803995', '4997275', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1347', NULL, 'DANIEL RAMIREZ', '--', '', '', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1348', NULL, 'EDITH', '--', '', '', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1349', NULL, 'BEATRIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1350', NULL, 'LUCY', '--', '', '', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1351', NULL, 'SHIRLEY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1352', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1353', NULL, 'ROSA SANCHEZ', '--', '', '', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1354', NULL, 'KATERINE', '--', '', '', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1355', NULL, 'CECILIA', '--', '', '', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1356', NULL, 'ROSA', '--', '', '', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1357', NULL, 'RONAL APOLINARIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1358', NULL, 'NADIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1359', NULL, 'MERY', '--', '', '', '', 'JR. YAPURA #137 BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1360', NULL, 'JUANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1361', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1362', NULL, 'ESTELITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1363', NULL, 'TRANSPORTES RIOS S.R.Ltda', '', '20375938341', '989167361', '', 'JR. FRANCISCO VIDAL DE LAOS #172 SAN LUIS-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1364', NULL, 'DAIDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1365', NULL, 'VICTORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1366', NULL, 'palcom import s.a.c', '', '20547463341', '', '', 'jr. paruro 1314 tda 122-5 cercado de lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1367', NULL, 'PALCOM IMPORT S.A.C', '', '20547463341', '', '', 'jr. paruro 1314 tda 122-5 cercado de lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1368', NULL, 'DAVID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1369', NULL, 'MEDALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1370', NULL, 'JOSEFA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1371', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1372', NULL, 'EMILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1373', NULL, 'ALEX', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1374', NULL, 'EMILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1375', NULL, 'ALEX VIDAURRI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1376', NULL, 'elton santi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1377', NULL, 'nely', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1378', NULL, 'flor', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1379', NULL, 'lidia uribe', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1380', NULL, 'miguel', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1381', NULL, 'vanesa marquez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1382', NULL, 'SANTIAGO CASTRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1383', NULL, 'elizabeth', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1384', NULL, 'INVERSIONES 1220', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1385', NULL, 'FERNANDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1386', NULL, 'FERNANDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1387', NULL, 'FERNANDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1388', NULL, 'MAYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1389', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1390', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1391', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1392', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1393', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1394', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1395', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1396', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1397', NULL, 'IRMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1398', NULL, 'LAURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1399', NULL, 'RUTY CONA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1400', NULL, 'ISABEL GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1401', NULL, 'JESICA ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1402', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1403', NULL, 'katerine', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1404', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1405', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1406', NULL, 'NANCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1407', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1408', NULL, 'juan carlos pereda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1409', NULL, 'juliana hinostroza', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1410', NULL, 'liliana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1411', NULL, 'karin', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1412', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1413', NULL, 'nely', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1414', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1415', NULL, 'milet', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1416', NULL, 'nilton', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1417', NULL, 'rocio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1418', NULL, 'estrella de mar', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1419', NULL, 'KERLI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1420', NULL, 'liz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1421', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1422', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1423', NULL, 'ruben estrada', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1424', NULL, 'EVELIN CASTRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1425', NULL, 'francisco', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1426', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1427', NULL, 'carlos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1428', NULL, 'ZENEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1429', NULL, 'LEILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1430', NULL, 'ARIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1431', NULL, 'ruben perez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1432', NULL, 'LISET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1433', NULL, 'SHERLY GONZALES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1434', NULL, 'LEIDA CHACAYASA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1435', NULL, 'PILAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1436', NULL, 'JONATAN MENDOZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1437', NULL, 'BILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1438', NULL, 'ELI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1439', NULL, 'LUIS ENRIQUE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1440', NULL, 'JAVIER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1441', NULL, 'DAVID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1442', NULL, 'soraida', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1443', NULL, 'soraida', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1444', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1445', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1446', NULL, 'georgina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1447', NULL, 'RICARDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1448', NULL, 'ALCIDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1449', NULL, 'FATIMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1450', NULL, 'HORACIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1451', NULL, 'yanet', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1452', NULL, 'JOHAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1453', NULL, 'violeta', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1454', NULL, 'delia cruz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1455', NULL, 'COMERCIAL LUCERO HERMANOS E.I.R.L', '', '20570773951', '956848453', '', 'CALLE PACASMAYO #216 CHILETE CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1456', NULL, 'ELTON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1457', NULL, 'SHERLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1458', NULL, 'MARLENE', '--', '', '', '', 'CALLE PACASMAYO #216 CHILETE CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1459', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1460', NULL, 'ESMERALDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1461', NULL, 'ESMERALDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1462', NULL, 'JONY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1463', NULL, 'CECILIA MORALES', '--', '', '', '', 'CALLE PACASMAYO #216 CHILETE CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1464', NULL, 'JOHAN', '--', '', '', '', 'CALLE PACASMAYO #216 CHILETE CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1465', NULL, 'JOHAN', '--', '', '', '', 'CALLE PACASMAYO #216 CHILETE CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1466', NULL, 'CELSO INCAUPAUCAR AFAN', '', '10103634020', '', '', 'URB. MARISCAL CACERES MZ V11 LT 22 S.J.L LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1467', NULL, 'VIOLETA VACILIO', '--', '', '', '', 'URB. MARISCAL CACERES MZ V11 LT 22 S.J.L LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1468', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1469', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1470', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1471', NULL, 'ivana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1472', NULL, 'VICTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1473', NULL, 'isabela alvarez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1474', NULL, 'ELBA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1475', NULL, 'ariana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1476', NULL, 'ALBERTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1477', NULL, 'elva', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1478', NULL, 'elva', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1479', NULL, 'MARCIAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1480', NULL, 'LESLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1481', NULL, 'aracely', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1482', NULL, 'aracely', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1483', NULL, 'MELISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1484', NULL, 'MELISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1485', NULL, 'ELISABETH RODRIGUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1486', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1487', NULL, 'FEDELINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1488', NULL, 'ROSA ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1489', NULL, 'SAIME', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1490', NULL, 'MAYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1491', NULL, 'JOANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1492', NULL, 'FELIX', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1493', NULL, 'LAURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1494', NULL, 'TANIA GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1495', NULL, 'ELVIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1496', NULL, 'GABRIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1497', NULL, 'TERESA SANTA MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1498', NULL, 'MARLENE GALINDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1499', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1500', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1501', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1502', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1503', NULL, 'JUANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1504', NULL, 'FELIPA PALOMINO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1505', NULL, 'MARYORI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1506', NULL, 'ESTEFANI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1507', NULL, 'ANDREA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1508', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1509', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1510', NULL, 'DARWIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1511', NULL, 'ADRIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1512', NULL, 'MIRTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1513', NULL, 'REGINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1514', NULL, 'PABLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1515', NULL, 'PAMELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1516', NULL, 'RAYSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1517', NULL, 'MIRTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1518', NULL, 'DEYSI VASQUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1519', NULL, 'CANDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1520', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1521', NULL, 'PATY CALERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1522', NULL, 'JAVIER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1523', NULL, 'LESLI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1524', NULL, 'JAVIER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1525', NULL, 'HUMBERTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1526', NULL, 'AYDE HERNANDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1527', NULL, 'SANTIAGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1528', NULL, 'FANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1529', NULL, 'ADRIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1530', NULL, 'FRANCISCO SANDOVAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1531', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1532', NULL, 'FANNY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1533', NULL, 'MIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1534', NULL, 'FRANCISCO SANDOVAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1535', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1536', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1537', NULL, 'NORA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1538', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1539', NULL, 'PILAR CANQUI RAMON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1540', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1541', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1542', NULL, 'WILLIANS VALDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1543', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1544', NULL, 'DIEGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1545', NULL, 'FLORENTINA ROMERO LOPEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1546', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1547', NULL, 'LIZZY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1548', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1549', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1550', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1551', NULL, 'LUCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1552', NULL, 'FIORELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1553', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1554', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1555', NULL, 'THIAGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1556', NULL, 'JOSEFINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1557', NULL, 'YOJANI GUERRERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1558', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1559', NULL, 'AVELINA HUAMAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1560', NULL, 'ERIKA PARIONA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1561', NULL, 'DENIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1562', NULL, 'NATALY AYALA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1563', NULL, 'MARIA RAMIREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1564', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1565', NULL, 'JUSTINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1566', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1567', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1568', NULL, 'GINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1569', NULL, 'JONY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1570', NULL, 'JONY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1571', NULL, 'MAURICIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1572', NULL, 'ALDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1573', NULL, 'FREDY FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1574', NULL, 'LEO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1575', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1576', NULL, 'VIVIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1577', NULL, 'YOLANDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1578', NULL, 'CESAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1579', NULL, 'JHON VIOLETA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1580', NULL, 'RUTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1581', NULL, 'FREDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1582', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1583', NULL, 'YOLANDA LOZANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1584', NULL, 'LIDA SALAZAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1585', NULL, 'MARCO PEREIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1586', NULL, 'PAUL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1587', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1588', NULL, 'EULOCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1589', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1590', NULL, 'CELSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1591', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1592', NULL, 'LAURA CONTRERAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1593', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1594', NULL, 'zulema', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1595', NULL, 'DAYANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1596', NULL, 'THIAGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1597', NULL, 'CECILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1598', NULL, 'RUTH CHAVEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1599', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1600', NULL, 'ADI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1601', NULL, 'ALICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1602', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1603', NULL, 'MARVI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1604', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1605', NULL, 'MANUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1606', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1607', NULL, 'DELMIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1608', NULL, 'DELMIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1609', NULL, 'ANGELICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1610', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1611', NULL, 'PERCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1612', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1613', NULL, 'nelly palomino', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1614', NULL, 'gianela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1615', NULL, 'NOEMI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1616', NULL, 'NUEV AGENERACION', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1617', NULL, 'rocio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1618', NULL, 'GERALDINE MERINO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1619', NULL, 'HILDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1620', NULL, 'PILAR FIESTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1621', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1622', NULL, 'VIRGINIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1623', NULL, 'FIORELLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1624', NULL, 'ANA FERNANDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1625', NULL, 'ANA FERNANDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1626', NULL, 'YESENIA ESCOBAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1627', NULL, 'YACKELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1628', NULL, 'rosario  ballon', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1629', NULL, 'alberto', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1630', NULL, 'dalia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1631', NULL, 'ANABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1632', NULL, 'guadalupe', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1633', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1634', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1635', NULL, 'luz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1636', NULL, 'INES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1637', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1638', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1639', NULL, 'ELIO MEDRANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1640', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1641', NULL, 'MARCELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1642', NULL, 'VANESSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1643', NULL, 'PERCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1644', NULL, 'SUSY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1645', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1646', NULL, 'CLAUDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1647', NULL, 'MIREYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1648', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1649', NULL, 'DAYANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1650', NULL, 'YANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1651', NULL, 'SUSY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1652', NULL, 'ABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1653', NULL, 'ERICK PUCHO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1654', NULL, 'ESTHER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1655', NULL, 'ESTHER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1656', NULL, 'ESTHER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1657', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1658', NULL, 'GABRIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1659', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1660', NULL, 'ISRAEL MEDINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1661', NULL, 'ISRAEL MEDINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1662', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1663', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1664', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1665', NULL, 'liz laura', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1666', NULL, 'liz laura', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1667', NULL, 'joselin', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1668', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1669', NULL, 'LEON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1670', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1671', NULL, 'MELISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1672', NULL, 'LUZMILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1673', NULL, 'SAENZ PEREZ ANGELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1674', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1675', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1676', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1677', NULL, 'ROSA GREGORIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1678', NULL, 'MARITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1679', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1680', NULL, 'greti', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1681', NULL, 'FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1682', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1683', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1684', NULL, 'ROSA GREGORIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1685', NULL, 'MARTIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1686', NULL, 'MARISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1687', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1688', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1689', NULL, 'SUSAN OSORIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1690', NULL, 'JONATAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1691', NULL, 'ZUHEY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1692', NULL, 'ELENA HUARA QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1693', NULL, 'LILIANA QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1694', NULL, 'KELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1695', NULL, 'JULI CACERES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1696', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1697', NULL, 'OLINDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1698', NULL, 'LISBETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1699', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1700', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1701', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1702', NULL, 'yeni gonsalez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1703', NULL, 'JULIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1704', NULL, 'kaire', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1705', NULL, 'eber', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1706', NULL, 'MARLENE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1707', NULL, 'MARLENE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1708', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1709', NULL, 'jose luis', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1710', NULL, 'jaison', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1711', NULL, 'ESTEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1712', NULL, 'AMELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1713', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1714', NULL, 'carlos herrera', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1715', NULL, 'GUISELA AQUIJE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1716', NULL, 'kalesa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1717', NULL, 'JESUS ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1718', NULL, 'MOISES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1719', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1720', NULL, 'virginia montero', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1721', NULL, 'antony', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1722', NULL, 'GUICELA RODRIGUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1723', NULL, 'ADRIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1724', NULL, 'FERNANDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1725', NULL, 'jose luis', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1726', NULL, 'GUICELA RODRIGUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1727', NULL, 'JULISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1728', NULL, 'katerine', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1729', NULL, 'gisela ventura', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1730', NULL, 'AIDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1731', NULL, 'AIDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1732', NULL, 'erick', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1733', NULL, 'merly', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1734', NULL, 'julia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1735', NULL, 'JULIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1736', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1737', NULL, 'HERNAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1738', NULL, 'ABRAHAM', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1739', NULL, 'JOSY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1740', NULL, 'DORIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1741', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1742', NULL, 'OLGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1743', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1744', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1745', NULL, 'SALDAÑA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1746', NULL, 'MARISOL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1747', NULL, 'YESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1748', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1749', NULL, 'LUCIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1750', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1751', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1752', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1753', NULL, 'MARISOL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1754', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1755', NULL, 'GEORGIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1756', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1757', NULL, 'INGRID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1758', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1759', NULL, 'MARCIAL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1760', NULL, 'ALDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1761', NULL, 'OSCAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1762', NULL, 'marlene', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1763', NULL, 'monica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1764', NULL, 'silvia quispe', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1765', NULL, 'ESTEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1766', NULL, 'SILVIA QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1767', NULL, 'LUCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1768', NULL, 'VALENTINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1769', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1770', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1771', NULL, 'PILAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1772', NULL, 'NANCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1773', NULL, 'LEON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1774', NULL, 'HELEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1775', NULL, 'CIELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1776', NULL, 'CIELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1777', NULL, 'MARITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1778', NULL, 'CINTIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1779', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1780', NULL, 'JUDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1781', NULL, 'LILIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1782', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1783', NULL, 'HUGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1784', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1785', NULL, 'JESUS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1786', NULL, 'JAVIER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1787', NULL, 'YESENIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1788', NULL, 'FABIOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1789', NULL, 'TANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1790', NULL, 'EVELIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1791', NULL, 'YANINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1792', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1793', NULL, 'KELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1794', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1795', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1796', NULL, 'MARICIELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1797', NULL, 'GIAN FRANCO ESCOBAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1798', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1799', NULL, 'PEDRO PAZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1800', NULL, 'BRISET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1801', NULL, 'FATIMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1802', NULL, 'GACIEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1803', NULL, 'REYNA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1804', NULL, 'DENIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1805', NULL, 'CLAUDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1806', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1807', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1808', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1809', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1810', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1811', NULL, 'YANETSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1812', NULL, 'ANGEL DIAZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1813', NULL, 'NATALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1814', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1815', NULL, 'DANIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1816', NULL, 'ERICK', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1817', NULL, 'XIOMARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1818', NULL, 'XIOMARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1819', NULL, 'JULIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1820', NULL, 'JULIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1821', NULL, 'JOB', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1822', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1823', NULL, 'CARMIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1824', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1825', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1826', NULL, 'DARWIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1827', NULL, 'DARWIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1828', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1829', NULL, 'jimy', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1830', NULL, 'jimy', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1831', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1832', NULL, 'CESAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1833', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1834', NULL, 'yesenia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1835', NULL, 'maria dios medina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1836', NULL, 'jose dalmer', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1837', NULL, 'DANIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1838', NULL, 'mariela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1839', NULL, 'LEO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1840', NULL, 'karina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1841', NULL, 'EDDY GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1842', NULL, 'marcera', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1843', NULL, 'ANGELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1844', NULL, 'NICOLE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1845', NULL, 'LALI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1846', NULL, 'ester', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1847', NULL, 'jony', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1848', NULL, 'MONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1849', NULL, 'RICHAR PAJUELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1850', NULL, 'MINIMARKET EL PUNTO SCRL', '', '20603292911', '940412408', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1851', NULL, 'JONATAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1852', NULL, 'ESTEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1853', NULL, 'ESTEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1854', NULL, 'IGNACIO FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1855', NULL, 'SEILA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1856', NULL, 'PAOLA DIAZ', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1857', NULL, 'IRMA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1858', NULL, 'ELDA DE LA CRUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1859', NULL, 'CECILIA LOPEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1860', NULL, 'CINTIA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1861', NULL, 'samuel', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1862', NULL, 'VANESA LOPEZ', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1863', NULL, 'ISABEL SALAZAR', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1864', NULL, 'DEYVI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1865', NULL, 'JAKI', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1866', NULL, 'karin', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1867', NULL, 'WENDY', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1868', NULL, 'PAMELA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1869', NULL, 'PAMELA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1870', NULL, 'MONICA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1871', NULL, 'ELI', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1872', NULL, 'YACKELINE', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1873', NULL, 'JACKELINE', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1874', NULL, 'ANALY', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1875', NULL, 'MIGUEL', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1876', NULL, 'IRMA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1877', NULL, 'ANA ROMERO', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1878', NULL, 'WILIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1879', NULL, 'FELICITA VALENTINO', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1880', NULL, 'JOSE GONZALES', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1881', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1882', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1883', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1884', NULL, 'FATIMA PAZ', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1885', NULL, 'febe', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1886', NULL, 'WILMER', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1887', NULL, 'ENMA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1888', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1889', NULL, 'MARIA', '--', '', '', '', 'JR. BREÑA #09 HUARAUCACA- PASCO-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1890', NULL, 'YUDITH JAYO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1891', NULL, 'ANDREA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1892', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1893', NULL, 'helmer vargas', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1894', NULL, 'mayara', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1895', NULL, 'mayte', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1896', NULL, 'GLADIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1897', NULL, 'evelin', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1898', NULL, 'denise', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1899', NULL, 'yuri', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1900', NULL, 'ingrid chung', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1901', NULL, 'ana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1902', NULL, 'yolanda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1903', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1904', NULL, 'REYNA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1905', NULL, 'ROSARIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1906', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1907', NULL, 'LUISA GOMEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1908', NULL, 'ADRIANA SABINO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1909', NULL, 'DELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1910', NULL, 'CAROLINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1911', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1912', NULL, 'ANDREA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1913', NULL, 'ADRIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1914', NULL, 'ROSMERY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1915', NULL, 'ADRIANA SALINAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1916', NULL, 'GRECIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1917', NULL, 'VERONICA HUAMANI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1918', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1919', NULL, 'EDUARDO PEÑA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1920', NULL, 'MARCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1921', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1922', NULL, 'ANDRE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1923', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1924', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1925', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1926', NULL, 'margi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1927', NULL, 'margi', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1928', NULL, 'erlinda chumacero flores', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1929', NULL, 'TAYBER GIL ECHEGARAY', '', '10435616840', '986498390', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1930', NULL, 'MARCELA', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1931', NULL, 'soledad', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1932', NULL, 'EDER MEJIA', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1933', NULL, 'AIDE', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1934', NULL, 'MARIA NATALIA', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1935', NULL, 'HENRY', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1936', NULL, 'URSULA', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1937', NULL, 'WENDY', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1938', NULL, 'CARMEN', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1939', NULL, 'ZAID GUTIERREZ', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1940', NULL, 'CARMEN', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1941', NULL, 'SULY', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1942', NULL, 'MILKA', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1943', NULL, 'MIGUEL DE LA CRUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1944', NULL, 'GEORGE LOAYZA', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1945', NULL, 'madelein', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1946', NULL, 'ZAID GUTIERREZ', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1947', NULL, 'GUSTAVO', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1948', NULL, 'GLORIA', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1949', NULL, 'KELLY', '--', '', '', '', 'CALLE MARQUEZ DE CAÑETE MZB LT8 SURCO- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1950', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1951', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1952', NULL, 'JOSELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1953', NULL, 'JESSICA JACKELINE VILLAR', '', '10417955921', '', '', 'JR. CUZCO 572 TDA. 262 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1954', NULL, 'WALTER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1955', NULL, 'ERIKA', '--', '', '', '', 'JR. CUZCO 572 TDA. 262 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1956', NULL, 'MARIA LOZANO', '--', '', '', '', 'JR. CUZCO 572 TDA. 262 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1957', NULL, 'SAIDA VALERA GUEVARA', '', '10473144064', '', '', 'MRDO. CENTRAL FEVACEL  INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1958', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1959', NULL, 'ALVARES', '--', '', '', '', 'MRDO. CENTRAL FEVACEL  INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1960', NULL, 'YAMILE', '--', '', '', '', 'MRDO. CENTRAL FEVACEL  INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1961', NULL, 'WILDER DELGADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1962', NULL, 'KARINA', '--', '', '', '', 'MRDO. CENTRAL FEVACEL  INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1963', NULL, 'GENOVEVA CELESTE SUAREZ  ATENCIO', '', '10406304651', '3860259', '', 'AV. PRINCIPAL CAMPOY MZ M LT 2A S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1964', NULL, 'PILAR ENRIQUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1965', NULL, 'FERNANDO', '--', '', '', '', 'AV. PRINCIPAL CAMPOY MZ M LT 2A S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1966', NULL, 'marleni', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1967', NULL, 'ELISABETH gonsalez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1968', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1969', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1970', NULL, 'JONATAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1971', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1972', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1973', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1974', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1975', NULL, 'MARTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1976', NULL, 'VICTORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1977', NULL, 'ELIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1978', NULL, 'eliana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1979', NULL, 'yani', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1980', NULL, 'yiomaira', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1981', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1982', NULL, 'C&S POLINARIO S.A.C', '', '20554928596', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1983', NULL, 'RUTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1984', NULL, 'MAGNOLIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1985', NULL, 'MONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1986', NULL, 'MAYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1987', NULL, 'MERCEDES', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1988', NULL, 'MONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1989', NULL, 'marleni', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1990', NULL, 'WILFREDO', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1991', NULL, 'MONICA', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1992', NULL, 'CESAR TENORIO', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1993', NULL, 'JHONY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1994', NULL, 'mirian', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1995', NULL, 'SUSY', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1996', NULL, 'MILAGROS', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1997', NULL, 'JULIANA', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1998', NULL, 'JULIANA', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('1999', NULL, 'lizy', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2000', NULL, 'ghisela', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2001', NULL, 'VIRGINIA VELASQUE PALOMINO', '', '10310401507', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2002', NULL, 'ISABEL', '--', '', '', '', 'ASOC. STA. ROSA MZ H LT12 CARABAYLLO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2003', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2004', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2005', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2006', NULL, 'burga', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2007', NULL, 'VIRGINIA VELASQUE PALOMINO', '', '10310401507', '', '', 'JR.AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2008', NULL, 'de la cruz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2009', NULL, 'KAREN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2010', NULL, 'jesus seminario', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2011', NULL, 'jesus seminario', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2012', NULL, 'mabel mejia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2013', NULL, 'romy', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2014', NULL, 'teodoro', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2015', NULL, 'VIRGINIA VELASQUE PALOMINO', '', '10310401507', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2016', NULL, 'IRMA RAMOS', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2017', NULL, 'IRMA RAMOS', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2018', NULL, 'LAURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2019', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2020', NULL, 'VIRGINIA VELASQUE PALOMINO', '', '10310401507', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2021', NULL, 'CARMEN LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2022', NULL, 'VIRGINIA VELASQUE PALOMINO', '', '10310401507', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2023', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2024', NULL, 'MIGUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2025', NULL, 'MIGUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2026', NULL, 'HERNAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2027', NULL, 'RITA CONDORI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2028', NULL, 'LUCERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2029', NULL, 'MARILU', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2030', NULL, 'ADELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2031', NULL, 'PAOLO', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2032', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2033', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2034', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2035', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2036', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2037', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2038', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2039', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2040', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2041', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2042', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2043', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2044', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2045', NULL, 'FABIOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2046', NULL, 'FABIOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2047', NULL, 'CONSUELO MEDINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2048', NULL, 'CATALINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2049', NULL, 'MARLENE HUAMAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2050', NULL, 'IRMA COSME', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2051', NULL, 'GONSALO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2052', NULL, 'KARINA GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2053', NULL, 'KARINA GARCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2054', NULL, 'HENRY CUADRA CASTILLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2055', NULL, 'GUILLERMA VICTORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2056', NULL, 'CONSUELO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2057', NULL, 'NOEMI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2058', NULL, 'JORGE URBIOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2059', NULL, 'JORGE URBIOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2060', NULL, 'JACKI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2061', NULL, 'JUANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2062', NULL, 'EVA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2063', NULL, 'MIRIAN', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2064', NULL, 'MIRIAN', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2065', NULL, 'LIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2066', NULL, 'DEYSI', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2067', NULL, 'AMANDA SALINAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2068', NULL, 'VIRGINIA', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2069', NULL, 'JUNIOR', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2070', NULL, 'XIOMARA', '--', '', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2071', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2072', NULL, 'WILMER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2073', NULL, 'NATIVIDAD', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2074', NULL, 'FLOR QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2075', NULL, 'MARIELENA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2076', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2077', NULL, 'JORGE NEYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2078', NULL, 'PAOLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2079', NULL, 'MAGALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2080', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2081', NULL, 'LUCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2082', NULL, 'JULIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2083', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2084', NULL, 'JULI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2085', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2086', NULL, 'MONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2087', NULL, 'JUAN HUAMANI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2088', NULL, 'INVERSIONES & MULTISERVICIOS ALDAIR E.I.R.L', '', '205364472275', '', '', 'JR PUNO 802 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2089', NULL, 'INVERSIONES & MULTISERVICIOS ALDAIR E.I.R.L', '', '20536472275', '', '', 'JR. PUNO 802 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2090', NULL, 'YANINA', '--', '', '', '', 'JR PUNO 802 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2091', NULL, 'LILY DIAZ', '--', '', '', '', 'JR PUNO 802 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2092', NULL, 'YANET', '--', '', '', '', 'JR PUNO 802 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2093', NULL, 'TERESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2094', NULL, 'DANNE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2095', NULL, 'DARWIN LOZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2096', NULL, 'LISET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2097', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2098', NULL, 'CALDERON ARQQUE DAVID', '', '10805696589', '', '', 'JR.LOS RUBIES 1831 S. J.L', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2099', NULL, 'julisa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2100', NULL, 'CALDERON ARQQUE DAVID', '', '10805696589', '', '', 'JR.LOS RUBIES 1831 S. J.L', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2101', NULL, 'EDITH VALENCIA', '--', '', '', '', 'JR.LOS RUBIES 1831 S. J.L', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2102', NULL, 'JHAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2103', NULL, 'DELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2104', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2105', NULL, 'ALFONSO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2106', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2107', NULL, 'VIOLETA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2108', NULL, 'ROSARIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2109', NULL, 'LORENA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2110', NULL, 'carlos sanchez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2111', NULL, 'BETZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2112', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2113', NULL, 'MARGOT DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2114', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2115', NULL, 'LIZETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2116', NULL, 'CECI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2117', NULL, 'PANTOJA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2118', NULL, 'YESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2119', NULL, 'CECI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2120', NULL, 'LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2121', NULL, 'ALICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2122', NULL, 'REBECA ALIAGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2123', NULL, 'MAGALI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2124', NULL, 'CARLOS QUESQUEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2125', NULL, 'NELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2126', NULL, 'QUISPE GALIANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2127', NULL, 'CRISTINA GUIDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2128', NULL, 'TRINIDAD QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2129', NULL, 'CECILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2130', NULL, 'CRISTINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2131', NULL, 'NELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2132', NULL, 'GLADIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2133', NULL, 'SERGIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2134', NULL, 'ROSARIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2135', NULL, 'JHONY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2136', NULL, 'LOURDES MARTINEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2137', NULL, 'YIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2138', NULL, 'MONICA RAMOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2139', NULL, 'FELICITA TINEO YUPANQUI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2140', NULL, 'MICHEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2141', NULL, 'VLADIMIR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2142', NULL, 'NORMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2143', NULL, 'DELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2144', NULL, 'GILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2145', NULL, 'YAMILE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2146', NULL, 'COMERCIALIZADORA LOS ANDES S.C.R.L', '', '20486497349', '967699051', '', 'AV.SEBASTIAN BARRANCA # 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2147', NULL, 'FIORELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2148', NULL, 'BLADMER DAMIAN HUAMANSUPA', '', '10412941051', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2149', NULL, 'GIOVANA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2150', NULL, 'GIOVANA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2151', NULL, 'NAYSAHA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2152', NULL, 'ROSA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2153', NULL, 'LUCERO GARCIA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2154', NULL, 'JACINTO SALCEDO', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2155', NULL, 'JHON', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2156', NULL, 'JUANA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2157', NULL, 'ROSA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2158', NULL, 'KAREN HERNADEZ', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2159', NULL, 'REBECA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2160', NULL, 'LORENA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2161', NULL, 'LUZDELLA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2162', NULL, 'GABY', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2163', NULL, 'CARMEN', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2164', NULL, 'MARITZA AGUILAR', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2165', NULL, 'ENRIQUE SILVERA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2166', NULL, 'CARMEN VICTORIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2167', NULL, 'PATRICIA ROJAS', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2168', NULL, 'MARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2169', NULL, 'EMILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2170', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2171', NULL, 'STICK', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2172', NULL, 'JUDITH', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2173', NULL, 'VICTORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2174', NULL, 'VERONICA CAMACHO', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2175', NULL, 'VANESA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2176', NULL, 'ELITA CUBA KOTRINA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2177', NULL, 'WALTER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2178', NULL, 'ALICIA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2179', NULL, 'LISET FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2180', NULL, 'NELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2181', NULL, 'YESICA', '--', '', '', '', 'AV. DEL PANGOA #488 MAZAMARI -SATIPO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2182', NULL, 'DANIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2183', NULL, 'susana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2184', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2185', NULL, 'eda angulo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2186', NULL, 'MARGARITA  FLORES RAMOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2187', NULL, 'GLADIS LEON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2188', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2189', NULL, 'ELENA FERNADEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2190', NULL, 'CLAUDIA VARGAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2191', NULL, 'JUANI ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2192', NULL, 'nelson chavez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2193', NULL, 'kety', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2194', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2195', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2196', NULL, 'ELODIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2197', NULL, 'ELODIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2198', NULL, 'CICINIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2199', NULL, 'YADIRA PALOMINO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2200', NULL, 'KARINA SAYAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2201', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2202', NULL, 'RUBEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2203', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2204', NULL, 'ELVIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2205', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2206', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2207', NULL, 'ingrid  espiritu', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2208', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2209', NULL, 'cponsuelo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2210', NULL, 'CINTHYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2211', NULL, 'pacheco', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2212', NULL, 'MIKUNA WASI DEL CENTRO SAC', '', '20604280959', '', '', 'MZ A10 LT 06 APV LAS TERRAZAS EX FUNDO EL TARO PUENTE PIEDRA- LIMA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2213', NULL, 'CINTYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2214', NULL, 'RAMOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2215', NULL, 'JORGE PARRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2216', NULL, 'TIMOTEO BERROCAL ATACHAO', '', '10097749448', '966002454', '', 'JR. ASAMBLEA #320 HUAMANGA - AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2217', NULL, 'TIMOTEO BERROCAL ATACHAO', '', '10097749448', '', '', 'JR. ASAMBLEA #320 HUAMANGA - AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2218', NULL, 'OLGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2219', NULL, 'ANGEL CASAFRANCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2220', NULL, 'CESAR PAREDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2221', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2222', NULL, 'MARTHA VIGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2223', NULL, 'HUAYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2224', NULL, 'RONALD FRETEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2225', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2226', NULL, 'ANA TORRES ESPÍNOZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2227', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2228', NULL, 'PERCY PELADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2229', NULL, 'MARY ESTHER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2230', NULL, 'SAMANTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2231', NULL, 'juan carlos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2232', NULL, 'KARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2233', NULL, 'NOEL CHUMBES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2234', NULL, 'RUDY GONSALEZ MEZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2235', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2236', NULL, 'JAIME', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2237', NULL, 'LORENA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2238', NULL, 'DAELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2239', NULL, 'ALFREDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2240', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2241', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2242', NULL, 'JESUS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2243', NULL, 'ALEJANDRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2244', NULL, 'rosa laguna', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2245', NULL, 'BEATRIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2246', NULL, 'ERIKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2247', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2248', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2249', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2250', NULL, 'ELVIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2251', NULL, 'diana rodriguez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2252', NULL, 'joe', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2253', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2254', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2255', NULL, 'cecilia llanos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2256', NULL, 'yesica juarez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2257', NULL, 'JULIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2258', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2259', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2260', NULL, 'ABIGAIL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2261', NULL, 'FIORELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2262', NULL, 'MILAGROS MESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2263', NULL, 'luisana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2264', NULL, 'CINTHIA VEGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2265', NULL, 'OFELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2266', NULL, 'ROSA  PORRAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2267', NULL, 'DAVID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2268', NULL, 'PABLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2269', NULL, 'BERTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2270', NULL, 'veronica leon', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2271', NULL, 'VERONICA', '--', '', '', '', 'trujillo', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2272', NULL, 'RUBI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2273', NULL, 'RUBI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2274', NULL, 'NATIVIDAD', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2275', NULL, 'YAHAIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2276', NULL, 'YAHAIRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2277', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2278', NULL, 'VANESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2279', NULL, 'iris', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2280', NULL, 'maxima eladia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2281', NULL, 'soledada', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2282', NULL, 'DAN YERIK S.A.C', '', '20519381860', '', '', 'CALLE ANTARES NORTE 338 DPTO 302 RIMAC RIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2283', NULL, 'MARGARITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2284', NULL, 'LUCERO CORDERO', '--', '', '', '', 'CALLE ANTARES NORTE 338 DPTO 302 RIMAC RIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2285', NULL, 'LUCERO CORDOBA', '--', '', '', '', 'CALLE ANTARES NORTE 338 DPTO 302 RIMAC RIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2286', NULL, 'CARLOS HINOSTROZA', '--', '', '', '', 'CALLE ANTARES NORTE 338 DPTO 302 RIMAC RIMAC', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2287', NULL, 'COMERCIAL VIBALCA S.A.C', '', '20521047853', '', '', 'AV. ALFREDO MENDIOLA 6530 S.M.P', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2288', NULL, 'COMERCIAL VIBALCA S.A.C', '', '20521047853', '', '', 'AV. ALFREDO MENDIOLA 6530 S.M.P', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2289', NULL, 'REYNA', '--', '', '', '', 'AV. ALFREDO MENDIOLA 6530 S.M.P', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2290', NULL, 'SILVIA', '--', '', '', '', 'AV. ALFREDO MENDIOLA 6530 S.M.P', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2291', NULL, 'ROCIO ORTIZ', '--', '', '', '', 'AV. ALFREDO MENDIOLA 6530 S.M.P', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2292', NULL, 'MILAGROS', '--', '', '', '', 'AV. ALFREDO MENDIOLA 6530 S.M.P', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2293', NULL, 'NADIA VICENTE', '--', '', '', '', 'AV. ALFREDO MENDIOLA 6530 S.M.P', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2294', NULL, 'AMDRES', '--', '', '', '', 'AV. ALFREDO MENDIOLA 6530 S.M.P', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2295', NULL, 'LINK PRODUCCIONES SAC', '', '20514249726', '', '', 'LOS GIRASOLES 166 DPTO401 SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2296', NULL, 'DEYSI', '--', '', '', '', 'LOS GIRASOLES 166 DPTO401 SURCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2297', NULL, 'DAYSY', '--', '', '', '', 'LOS GIRASOLES 166 DPTO401 SURCO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2298', NULL, 'SONIA NIETO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2299', NULL, 'consuelo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2300', NULL, 'ROCIO FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2301', NULL, 'JAVIER AGUADA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2302', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2303', NULL, 'BILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2304', NULL, 'HOTEL 1900', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2305', NULL, 'OLGA ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2306', NULL, 'ROCIO CAHUANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2307', NULL, 'SILVIA SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2308', NULL, 'LISBETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2309', NULL, 'DENIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2310', NULL, 'LISBETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2311', NULL, 'SOLANGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2312', NULL, 'PILAR RIVAFUERTE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2313', NULL, 'bety', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2314', NULL, 'evelin', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2315', NULL, 'CLOTILDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2316', NULL, 'PERCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2317', NULL, 'CLOTILDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2318', NULL, 'NELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2319', NULL, 'GUILLERMA  ECHEVARRIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2320', NULL, 'NELI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2321', NULL, 'MARITO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2322', NULL, 'VERONICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2323', NULL, 'RAFAELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2324', NULL, 'OMAR TIRADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2325', NULL, ',MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2326', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2327', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2328', NULL, 'LILIANA ALIAGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2329', NULL, 'LILIANA ALIAGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2330', NULL, 'FELIPE IPARRAGUIRRE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2331', NULL, 'CRISTIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2332', NULL, 'ELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2333', NULL, 'NANCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2334', NULL, 'NANCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2335', NULL, 'KATIA INFANTE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2336', NULL, 'MABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2337', NULL, 'MARIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2338', NULL, 'CINTIA ZAMBRANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2339', NULL, 'MABEL ESTEBAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2340', NULL, 'susana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2341', NULL, 'ROSALINDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2342', NULL, 'VICTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2343', NULL, 'DELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2344', NULL, 'JULIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2345', NULL, 'JULIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2346', NULL, 'INES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2347', NULL, 'LUZ MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2348', NULL, 'HOSPITAL CENTRAL FAP', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2349', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2350', NULL, 'PIER ARANDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2351', NULL, 'CARLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2352', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2353', NULL, 'BENILDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2354', NULL, 'BENILDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2355', NULL, 'JAQUELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2356', NULL, 'MARISOL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2357', NULL, 'ROXANA ALTAMIRANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2358', NULL, 'DANIEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2359', NULL, 'LIDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2360', NULL, 'VIOLETA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2361', NULL, 'JIMENA CORREA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2362', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2363', NULL, 'GEOGREEN INGENIEROS SAC', '', '20537491605', '', '', 'AV LAS GAVIOTAS 816 DPTO 202 CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2364', NULL, 'PAUL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2365', NULL, 'VIOLETA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2366', NULL, 'percy vasquez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2367', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2368', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2369', NULL, 'jimy samame cruz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2370', NULL, 'EDUARDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2371', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2372', NULL, 'EDUARDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2373', NULL, 'ADELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2374', NULL, 'fernando perez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2375', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2376', NULL, 'RITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2377', NULL, 'FIORELLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2378', NULL, 'roxana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2379', NULL, 'carlos muñoz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2380', NULL, 'LIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2381', NULL, 'ingrid', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2382', NULL, 'LESLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2383', NULL, 'consuelo castro', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2384', NULL, 'ABIGAIL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2385', NULL, 'catalina rojas', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2386', NULL, 'graciela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2387', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2388', NULL, 'caterine', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2389', NULL, 'ramos aullami', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2390', NULL, 'maximo solier', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2391', NULL, 'elisa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2392', NULL, 'ELISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2393', NULL, 'MILUSKA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2394', NULL, 'ESTHER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2395', NULL, 'MEDALI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2396', NULL, 'HUMBERTO SEGURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2397', NULL, 'SARA CORONEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2398', NULL, 'KELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2399', NULL, 'eduardo becerra', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2400', NULL, 'JOSE ANTONIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2401', NULL, 'mariela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2402', NULL, 'MELINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2403', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2404', NULL, 'MARYORI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2405', NULL, 'MARILU', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2406', NULL, 'SARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2407', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2408', NULL, 'MERCEDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2409', NULL, 'WENDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2410', NULL, 'dora', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2411', NULL, 'VALERIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2412', NULL, 'YESENIA POMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2413', NULL, 'DORIS SAVEDRA TORRES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2414', NULL, 'PATTY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2415', NULL, 'LIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2416', NULL, 'LIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2417', NULL, 'AURORA MOLINA MUÑOZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2418', NULL, 'MAYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2419', NULL, 'VIOLETA DE LA COLINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2420', NULL, 'MAYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2421', NULL, 'EDWIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2422', NULL, 'SABINO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2423', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2424', NULL, 'VILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2425', NULL, 'EDA GOMEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2426', NULL, 'JERRY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2427', NULL, 'MAGALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2428', NULL, 'MARY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2429', NULL, 'PATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2430', NULL, 'MARY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2431', NULL, 'SUSY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2432', NULL, 'LUIS OSCAR VARA CAMPOS', '', '10428344982', '', '', 'JR. T. PEDRO GAREZON N1651 T.9 DPTO102 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2433', NULL, 'DIEGO', '--', '', '', '', 'JR. T. PEDRO GAREZON N1651 T.9 DPTO102 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2434', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2435', NULL, 'CELIA', '--', '', '', '', 'JR. T. PEDRO GAREZON N1651 T.9 DPTO102 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2436', NULL, 'JOSELIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2437', NULL, 'PAOLA', '--', '', '', '', 'JR. T. PEDRO GAREZON N1651 T.9 DPTO102 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2438', NULL, 'WALTER RAMIREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2439', NULL, 'LITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2440', NULL, 'YUDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2441', NULL, 'SAIRA LEON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2442', NULL, 'MARIA SALCEDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2443', NULL, 'RAUL ROMERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2444', NULL, 'JESUS RUBEN', '--', '', '', '', 'JR. T. PEDRO GAREZON N1651 T.9 DPTO102 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2445', NULL, 'MARIBEL PEÑA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2446', NULL, 'JESUS RUBEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2447', NULL, 'ISAIAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2448', NULL, 'LUCHO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2449', NULL, 'DANIEL ESPINOZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2450', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2451', NULL, 'EIDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2452', NULL, 'CLOTILDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2453', NULL, 'JUAN REYNA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2454', NULL, 'JHON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2455', NULL, 'GABRIELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2456', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2457', NULL, 'KLELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2458', NULL, 'STEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2459', NULL, 'DELFINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2460', NULL, 'DINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2461', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2462', NULL, 'DAVID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2463', NULL, 'DAVID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2464', NULL, 'DELFINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2465', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2466', NULL, 'FARMACIAS ANDAHUAYLAS S.C.R.L', '', '20492300790', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2467', NULL, 'PATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2468', NULL, 'MANUEL', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2469', NULL, 'MARINA PALACIOS', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2470', NULL, 'CARLOS', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2471', NULL, 'MAGALY MEDINA', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2472', NULL, 'SALOME', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2473', NULL, 'SALOME', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2474', NULL, 'LUISA', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2475', NULL, 'PATRICIA', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2476', NULL, 'LUIS PORRAS', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2477', NULL, 'GIANINA', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2478', NULL, 'JESUS RAMIREZ', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2479', NULL, 'LUCIA ROCA', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2480', NULL, 'GIETA', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2481', NULL, 'MERCEDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2482', NULL, 'ALICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2483', NULL, 'MELLI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2484', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2485', NULL, 'rocio castro', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2486', NULL, 'PAULA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2487', NULL, 'mariana donayre', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2488', NULL, 'LENA', '--', '', '', '', 'AV. LOS TUSILAGOS #434 URB. LAS VIOLETAS S.J.L LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2489', NULL, 'leonor', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2490', NULL, 'sofia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2491', NULL, 'sofia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2492', NULL, 'JAVIER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2493', NULL, 'FREDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2494', NULL, 'dafo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2495', NULL, 'carlos pando', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2496', NULL, 'FREDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2497', NULL, 'SANDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2498', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2499', NULL, 'rosa peña ramos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2500', NULL, 'CECILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2501', NULL, 'JAVIER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2502', NULL, 'KIARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2503', NULL, 'YANET', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2504', NULL, 'leonel', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2505', NULL, 'yeni melo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2506', NULL, 'marco antonio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2507', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2508', NULL, 'betsa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2509', NULL, 'rosela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2510', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2511', NULL, 'nidia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2512', NULL, 'JACKELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2513', NULL, 'JESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2514', NULL, 'sandra', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2515', NULL, 'FIORELLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2516', NULL, 'carmen', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2517', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2518', NULL, 'JAIME SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2519', NULL, 'DAVID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2520', NULL, 'DAVID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2521', NULL, 'CESAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2522', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2523', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2524', NULL, 'violeta', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2525', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2526', NULL, 'PAUL ALANIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2527', NULL, 'HANS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2528', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2529', NULL, 'NAIDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2530', NULL, 'EVELYN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2531', NULL, 'LUZ HIJAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2532', NULL, 'ABRAHAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2533', NULL, 'SONIA VILCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2534', NULL, 'JHONY LEON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2535', NULL, 'PATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2536', NULL, 'JANETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2537', NULL, 'ELVA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2538', NULL, 'SEGUNDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2539', NULL, 'MARGARITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2540', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2541', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2542', NULL, 'DORA QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2543', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2544', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2545', NULL, 'EUFRACIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2546', NULL, 'GUILLERMO SILVA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2547', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2548', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2549', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2550', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2551', NULL, 'DANIEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2552', NULL, 'MARGARITA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2553', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2554', NULL, 'FANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2555', NULL, 'MARIA TERESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2556', NULL, 'JULIANA SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2557', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2558', NULL, 'OLGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2559', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2560', NULL, 'rosa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2561', NULL, 'maria', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2562', NULL, 'DEYSI CARRASCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2563', NULL, 'norma', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2564', NULL, 'VIVIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2565', NULL, 'alberto', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2566', NULL, 'castillo arteaga', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2567', NULL, 'veronica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2568', NULL, 'lidia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2569', NULL, 'julisa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2570', NULL, 'karola', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2571', NULL, 'GLORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2572', NULL, 'natalia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2573', NULL, 'LIDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2574', NULL, 'yesica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2575', NULL, 'joselin', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2576', NULL, 'yesenia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2577', NULL, 'MELISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2578', NULL, 'FANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2579', NULL, 'sandra romero', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2580', NULL, 'vanesa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2581', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2582', NULL, 'OLGA TORRES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2583', NULL, 'magnolia larianco brueto', '--', '', '', '', 'ancash', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2584', NULL, 'alais', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2585', NULL, 'jose mori', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2586', NULL, 'MATIAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2587', NULL, 'MARCELINO CHAMBI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2588', NULL, 'LIDIA TRUJILLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2589', NULL, 'isidora', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2590', NULL, 'ALFONSO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2591', NULL, 'GUDELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2592', NULL, 'zhen', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2593', NULL, 'jeremy', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2594', NULL, 'joel', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2595', NULL, 'CARMEN OTAYZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2596', NULL, 'NILDA VILLANUEVA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2597', NULL, 'VICTORIA TACO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2598', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2599', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2600', NULL, 'FERNANDO ALANYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2601', NULL, 'BLANCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2602', NULL, 'LEYLA DIAZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2603', NULL, 'ANA CAMPOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2604', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2605', NULL, 'CLAUDIA CAPCHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2606', NULL, 'JOSY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2607', NULL, 'GUSMILDA RAMOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2608', NULL, 'LEONOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2609', NULL, 'LUZMILA RAMOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2610', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2611', NULL, 'CLAUDIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2612', NULL, 'JHON SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2613', NULL, 'PATRICIA PINTADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2614', NULL, 'YENY ARELLANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2615', NULL, 'YENY ARELLANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2616', NULL, 'BLANCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2617', NULL, 'LEONARDA PEREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2618', NULL, 'MICHAEL RODRIGEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2619', NULL, 'AGUSTINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2620', NULL, 'DELIA ESPINOZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2621', NULL, 'PATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2622', NULL, 'LUZ APONTE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2623', NULL, 'VIVIANA CANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2624', NULL, 'LAURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2625', NULL, 'JORGE MANRIQUE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2626', NULL, 'MELISA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2627', NULL, 'NELLY CANCHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2628', NULL, 'JOSE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2629', NULL, 'MARIANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2630', NULL, 'LITA LOZANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2631', NULL, 'LURDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2632', NULL, 'YESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2633', NULL, 'ANGEL VALCAZAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2634', NULL, 'JENIFER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2635', NULL, 'JUANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2636', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2637', NULL, 'MARINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2638', NULL, 'SILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2639', NULL, 'ELISABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2640', NULL, 'juan carlos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2641', NULL, 'APOLAYA DELGADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2642', NULL, 'MARITZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2643', NULL, 'FRANCISCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2644', NULL, 'FRANCISCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2645', NULL, 'LETICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2646', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2647', NULL, 'MARLENE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2648', NULL, 'ELENA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2649', NULL, 'CARITO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2650', NULL, 'CARITO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2651', NULL, 'PEDRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2652', NULL, 'GLADIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2653', NULL, 'CRISTIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2654', NULL, 'KATHERIN CASTRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2655', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2656', NULL, 'GLADYS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2657', NULL, 'MANUELA LUZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2658', NULL, 'SIMONA CHINGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2659', NULL, 'GLADIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2660', NULL, 'OLGA TERESA HILARIO SOLIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2661', NULL, 'MARTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2662', NULL, 'gladis flores', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2663', NULL, 'evelina', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2664', NULL, 'salvador', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2665', NULL, 'ana quino', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2666', NULL, 'SALVADOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2667', NULL, 'ermelinda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2668', NULL, 'ermelinda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2669', NULL, 'JAVIER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2670', NULL, 'MARIBEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2671', NULL, 'REYNA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2672', NULL, 'DELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2673', NULL, 'yesica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2674', NULL, 'HECTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2675', NULL, 'elena', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2676', NULL, 'MARISOL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2677', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2678', NULL, 'norma', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2679', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2680', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2681', NULL, 'LALY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2682', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2683', NULL, 'FARID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2684', NULL, 'ROSA PEREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2685', NULL, 'JOANA QUINTERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2686', NULL, 'carmen', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2687', NULL, 'JACKI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2688', NULL, 'PABLO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2689', NULL, 'nancy toledo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2690', NULL, 'BLANCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2691', NULL, 'LUCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2692', NULL, 'SOFIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2693', NULL, 'ANGIE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2694', NULL, 'angel', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2695', NULL, 'DANTE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2696', NULL, 'gladis', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2697', NULL, 'lurdes rivera', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2698', NULL, 'FABIOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2699', NULL, 'LILIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2700', NULL, 'elva rivera', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2701', NULL, 'ROSARIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2702', NULL, 'melisa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2703', NULL, 'JAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2704', NULL, 'MARIBEL FARFAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2705', NULL, 'DIANA BENDEZU', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2706', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2707', NULL, 'ANTONIO NEYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2708', NULL, 'BILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2709', NULL, 'ELIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2710', NULL, 'KATHERINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2711', NULL, 'GLADIS DELGADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2712', NULL, 'COOPERATIVA DE SERVICIOS MULTIPLES SIEMPRE SOLIDARIA', '', '20600640403', '956724756', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2713', NULL, 'YOLANDA PRIETO HUAMAN', '', '10407333115', '', '', 'JR LOS RUBIES 1933 SJL', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2714', NULL, 'GIOVANA', '--', '', '', '', 'JR LOS RUBIES 1933 SJL', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2715', NULL, 'SANTIAGO', '--', '', '', '', 'JR LOS RUBIES 1933 SJL', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2716', NULL, 'ISABEL', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2717', NULL, 'KATERINE', '--', '', '', '', 'JR LOS RUBIES 1933 SJL', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2718', NULL, 'YURI', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2719', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2720', NULL, 'MARIA LUISA', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2721', NULL, 'MABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2722', NULL, 'HILDA VARGAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2723', NULL, 'ROY PORTILLA', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2724', NULL, 'CARMEN', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2725', NULL, 'ROSARIO', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2726', NULL, 'YOSELIN', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2727', NULL, 'DANIEL', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2728', NULL, 'ELIZABETH', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2729', NULL, 'HORLANDO', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2730', NULL, 'nilton', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2731', NULL, 'ELIZABETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2732', NULL, 'dora', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2733', NULL, 'LUIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2734', NULL, 'DEYSI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2735', NULL, 'enrique aguila palacios', '08005297', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2736', NULL, 'HUAMANI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2737', NULL, 'GABRIELA FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2738', NULL, 'alcides', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2739', NULL, 'MARIELA OBLE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2740', NULL, 'MARISOL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2741', NULL, 'jesa', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2742', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2743', NULL, 'JOANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2744', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2745', NULL, 'LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2746', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2747', NULL, 'DORIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2748', NULL, 'SAU', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2749', NULL, 'ISABEL QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2750', NULL, 'SHERLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2751', NULL, 'DONATA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2752', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2753', NULL, 'MEZA SAN MARTIN ROSSANA', '', '10060689933', '', '', 'AV. RIVERA NAVARRETE #2580 LINCE- LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2754', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2755', NULL, 'LUIS RAMONES', '--', '', '', '', 'AV. RIVERA NAVARRETE #2580 LINCE- LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2756', NULL, 'EDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2757', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2758', NULL, 'JENIFER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2759', NULL, 'KENEDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2760', NULL, 'LUCIA ORDINOLA', '--', '', '', '', 'AV. RIVERA NAVARRETE #2580 LINCE- LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2761', NULL, 'EVER VALERIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2762', NULL, 'JULIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2763', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2764', NULL, 'ASTRID', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2765', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2766', NULL, 'VALERIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2767', NULL, 'KARIM', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2768', NULL, 'MIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2769', NULL, 'ENMA DE LA CRUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2770', NULL, 'GISELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2771', NULL, 'JACKELINE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2772', NULL, 'ROSA AGURTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2773', NULL, 'cesar', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2774', NULL, 'carla choque', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2775', NULL, 'guisela ramos', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2776', NULL, 'yulisa cadenas', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2777', NULL, 'blanca', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2778', NULL, 'katy', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2779', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2780', NULL, 'stefany', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2781', NULL, 'BLANCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2782', NULL, 'rocio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2783', NULL, 'ortiz rojas', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2784', NULL, 'GONZALO ALFARO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2785', NULL, 'maribel', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2786', NULL, 'SAMANTA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2787', NULL, 'WARNER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2788', NULL, 'VANIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2789', NULL, 'monica castillo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2790', NULL, 'paris', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2791', NULL, 'silvia', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2792', NULL, 'LIZ CRUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2793', NULL, 'gregorio sierra', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2794', NULL, 'MARTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2795', NULL, 'paola', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2796', NULL, 'ALICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2797', NULL, 'isabel', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2798', NULL, 'ana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2799', NULL, 'JOSEFA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2800', NULL, 'maria mendoza', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2801', NULL, 'TERESA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2802', NULL, 'LITA MEDINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2803', NULL, 'GEMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2804', NULL, 'DIEGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2805', NULL, 'claire velasco', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2806', NULL, 'AGRICOLA OSKAR E.I.R.L', '', '20603846584', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2807', NULL, 'KIMBERLI', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2808', NULL, 'BRENDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2809', NULL, 'BRENDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2810', NULL, 'JOHANA', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2811', NULL, 'ANGELICA ARTE', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2812', NULL, 'JOHANA', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2813', NULL, 'ANTONY TORRES', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2814', NULL, 'TERESA', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2815', NULL, 'LAURA', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2816', NULL, 'MARIA CABANILLAS', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2817', NULL, 'SONIA AGUADO GUSMAN', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2818', NULL, 'NELIDA AVILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2819', NULL, 'WILDER FUENTES', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2820', NULL, 'WILDER FUENTES', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2821', NULL, 'francis', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2822', NULL, 'MARINA DE GUERRA', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2823', NULL, 'ESTEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2824', NULL, 'EDITH', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2825', NULL, 'LUISA  VELIZ', '--', '', '', '', 'URB. FRAY MARTIN MZ N LOTE 4 CASMA ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2826', NULL, 'LUISA VELIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2827', NULL, 'PABLITO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2828', NULL, 'COOPERATIVA DE SERVICIOS MULTIPLES SIEMPRE SOLIDARIA', '', '20600640403', '', '', 'JR. 2 DE MAYO #210 AYACUCHO- HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2829', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2830', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2831', NULL, '.', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2832', NULL, 'PAUL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2833', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2834', NULL, 'EDITH FELICITAS RUIZ PALOMINO', '', '10460357042', '', '', 'JR. JM POZO 648 JESUS NAZARENO -AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2835', NULL, 'EDITH FELICITAS RUIZ PALOMINO', '', '10460357042', '', '', 'JR. JM POZO 648 JESUS NAZARENO - HUAMANGA- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2836', NULL, 'COOPERATIVA DE SERVICIOS SIEMPRE SOLIDARIA', '', '20600640403', '', '', 'JR. 2 DE MAYO #210 AYACUCHO HUAMANGA AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2837', NULL, 'COOPERITIVA DE SERVICIOS SIEMPRE SOLIDARIA', '', '20600640403', '', '', 'JR. 2 DE MAYO #210 AYACUCHO HUAMANGA AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2838', NULL, 'GILBERT', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2839', NULL, 'JORGE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2840', NULL, 'ANA VILLANUEVA', '--', '', '', '', 'JR. 2 DE MAYO #210 AYACUCHO HUAMANGA AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2841', NULL, 'JANETH RAMOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2842', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2843', NULL, 'AIDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2844', NULL, 'ELI LOAYZA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2845', NULL, 'NELY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2846', NULL, 'MILDER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2847', NULL, 'GINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2848', NULL, 'GINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2849', NULL, 'DUANE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2850', NULL, 'MIGUEL ANGEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2851', NULL, 'torrez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2852', NULL, 'bety', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2853', NULL, 'JOSE VELASQUEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2854', NULL, 'yesica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2855', NULL, 'richard', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2856', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2857', NULL, 'MERCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2858', NULL, 'alonso', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2859', NULL, 'ROCIO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2860', NULL, 'ESTEFANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2861', NULL, 'BERTHA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2862', NULL, 'SUSANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2863', NULL, 'ELIZABETH HURTADO ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2864', NULL, 'CARMEN SULLCA QUISPE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2865', NULL, 'MARIA LARA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2866', NULL, 'CINTIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2867', NULL, 'JUANA CASTRO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2868', NULL, 'JUDITH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2869', NULL, 'ELISABET PEREZ GALINDO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2870', NULL, 'NELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2871', NULL, 'JMR EQUIPOS S.A.C', '', '20566329728', '', '', 'CALLE JANGAS N628- BREÑA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2872', NULL, 'YANETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2873', NULL, 'FIORELLA', '--', '', '', '', 'CALLE JANGAS N628- BREÑA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2874', NULL, 'LILIANA ORE', '--', '', '', '', 'CALLE JANGAS N628- BREÑA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2875', NULL, 'MAYRA TINOCO', '--', '', '', '', 'CALLE JANGAS N628- BREÑA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2876', NULL, 'CARLOS', '--', '', '', '', 'CALLE JANGAS N628- BREÑA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2877', NULL, 'VICTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2878', NULL, 'MAYRA TINOCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2879', NULL, 'EIMY LOPEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2880', NULL, 'FRANCISCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2881', NULL, 'YULI SILVA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2882', NULL, 'DANIEL ROMERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2883', NULL, 'MARTHA SALVATIERRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2884', NULL, 'LUIS CELAYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2885', NULL, 'ELMER HERNANDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2886', NULL, 'ROSA ALVARADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2887', NULL, 'KARINA PONTE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2888', NULL, 'DIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2889', NULL, 'ANGELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2890', NULL, 'ROBERTO MARTINEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2891', NULL, 'VICTOR ORE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2892', NULL, 'JOSE HUARIPATA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2893', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2894', NULL, 'MILAGROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2895', NULL, 'MAVI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2896', NULL, 'BLANCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2897', NULL, 'OFELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2898', NULL, 'segundo flores', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2899', NULL, 'segundo flores', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2900', NULL, 'segundo flores', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2901', NULL, 'marianela', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2902', NULL, 'lena perez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2903', NULL, 'LISBETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2904', NULL, 'CECILIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2905', NULL, 'LUZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2906', NULL, 'CINTHYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2907', NULL, 'GUSTAVO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2908', NULL, 'LIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2909', NULL, 'PILAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2910', NULL, 'MERY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2911', NULL, 'PERCY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2912', NULL, 'mainin', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2913', NULL, 'PERCY ROJAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2914', NULL, 'eduard dueñas', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2915', NULL, 'rosario savedra', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2916', NULL, 'vanesa zambrano', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2917', NULL, 'santiago diaz', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2918', NULL, 'PILAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2919', NULL, 'PILAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2920', NULL, 'ISABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2921', NULL, 'JENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2922', NULL, 'augusto pando', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2923', NULL, 'NOEMI OLIVAREZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2924', NULL, 'PAMELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2925', NULL, 'alejandra', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2926', NULL, 'SUYLIN CABRERA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2927', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2928', NULL, 'BILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2929', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2930', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2931', NULL, 'FANNY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2932', NULL, 'FANY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2933', NULL, 'CRISTINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2934', NULL, 'jesica', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2935', NULL, 'joaquin', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2936', NULL, 'YULI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2937', NULL, 'ANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2938', NULL, 'edward cardenas pumayauli', '', '10407996696', '', '', 'antioquia-huarochiri', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2939', NULL, 'LUCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2940', NULL, 'roxana', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2941', NULL, 'DELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2942', NULL, 'anali', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2943', NULL, 'EVELIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2944', NULL, 'ABEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2945', NULL, 'ROBERTH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2946', NULL, 'LUIS SANCHEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2947', NULL, 'CARLOS CONTRERAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2948', NULL, 'YOLANDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2949', NULL, 'MONICA RAMOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2950', NULL, 'MONICA RAMOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2951', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2952', NULL, 'TANIA LOZANO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2953', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2954', NULL, 'LILIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2955', NULL, 'KEVIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2956', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2957', NULL, 'DEYSI TITO GONSALEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2958', NULL, 'DEYSI TITO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2959', NULL, 'SALLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2960', NULL, 'ADEMIR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2961', NULL, 'MARIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2962', NULL, 'JHON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2963', NULL, 'LOURDES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2964', NULL, 'VICTOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2965', NULL, 'CINTHIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2966', NULL, 'GABRIELA ESTRADA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2967', NULL, 'ELIAS CABALLERO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2968', NULL, 'ROSA SOTO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2969', NULL, 'ROSA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2970', NULL, 'JULIO REY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2971', NULL, 'MAYRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2972', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2973', NULL, 'EMERSON', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2974', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2975', NULL, 'MIGUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2976', NULL, 'elio', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2977', NULL, 'BILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2978', NULL, 'CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2979', NULL, 'naeli', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2980', NULL, 'FLOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2981', NULL, 'PATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2982', NULL, 'robinson', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2983', NULL, 'FELIX', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2984', NULL, 'ALICIA ESTHER AVILA GALARZA', '', '10413115731', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2985', NULL, 'IPE CORPORATION', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2986', NULL, 'KARINA', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2987', NULL, 'KARINA', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2988', NULL, 'KARINA', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2989', NULL, 'MARY', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2990', NULL, 'MARIA DURANT', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2991', NULL, 'MERCEDES NUÑES', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2992', NULL, 'VICTOR GUTARRA', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2993', NULL, 'ANDRES', '--', '', '', '', 'SAN DIEGO 452 DPTO D -SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2994', NULL, 'ROSENIA CHAVEZ EVANGELISTA', '', '10227030009', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2995', NULL, 'ROSENIA CHAVEZ EVANGELISTA', '', '10227030009', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2996', NULL, 'MERCEDES', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2997', NULL, 'SANDRA', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2998', NULL, 'LURDES', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('2999', NULL, 'SUELEN', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3000', NULL, 'LAURA', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3001', NULL, 'ROCIO', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3002', NULL, 'ADRIANA', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3003', NULL, 'JAIME', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3004', NULL, 'MANUEL', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3005', NULL, 'DARIO HUARCAYA', '--', '', '', '', 'JR. DOS DE MAYO S/N HUANUCO LA UNION', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3006', NULL, 'MARLENY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3007', NULL, 'JESINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3008', NULL, 'DARIO HUARCAYA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3009', NULL, ',MERCEDES LEO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3010', NULL, 'LUIS CARRASAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3011', NULL, 'LORENA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3012', NULL, 'KAREN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3013', NULL, 'LUCIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3014', NULL, 'KEMI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3015', NULL, 'MARCIA PACHECO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3016', NULL, 'nely', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3017', NULL, 'CARLOS LAURA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3018', NULL, 'JUAN CARLOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3019', NULL, 'GINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3020', NULL, 'WILDER MUÑOZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3021', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3022', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3023', NULL, 'NORI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3024', NULL, 'SONIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3025', NULL, 'PERSONALIZA S.A.C', '', '20515263331', '', '', 'AV. PALERMO 277 LA VICTORIA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3026', NULL, 'yeni', '40896199', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3027', NULL, 'LUISA', '44135346', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3028', NULL, 'BRUNO', '15724143', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3029', NULL, 'THE PHOENIX CLUB', '', '20137416540', '', '', 'CALLE SANTA LUISA 205 SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3030', NULL, 'RAMIRO PUGA', '72520907', '', '', '', 'CALLE SANTA LUISA 205 SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3031', NULL, 'KATIA', '46203133', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3032', NULL, 'CELENE', '46421799', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3033', NULL, 'LUIS JIMENEZ NEYRA', '07310364', '', '', '', 'CALLE SANTA LUISA 205 SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3034', NULL, 'FRANK AREAS', '41579580', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3035', NULL, 'CRISTIAN ROJAS', '42168416', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3036', NULL, 'DIANA CHOTA', '47512649', '', '', '', 'CALLE SANTA LUISA 205 SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3037', NULL, 'pablo zegarra', '22241616', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3038', NULL, 'MARIO VERAMENDI JAMANCA', '40064333', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3039', NULL, 'YENY', '40949883', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3040', NULL, 'JONATAN', '44010794', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3041', NULL, 'PATY', '25531170', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3042', NULL, 'LUZ ROMERO  PAMPAVILCO', '40106870', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3043', NULL, 'LUZ ROMERO PAMPAVILCO', '40106870', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3044', NULL, 'EULOGIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3045', NULL, 'MAGALY', '18131981', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3046', NULL, 'DENY', '07626778', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3047', NULL, 'ANA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3048', NULL, 'ISAURA HINOSTROZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3049', NULL, 'NADINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3050', NULL, 'MARIA MENDOZA', '44436957', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3051', NULL, 'ANGI', '77334241', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3052', NULL, 'MICHAEL CONTRERAS', '41029133', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3053', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3054', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3055', NULL, 'JUANA', '45475635', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3056', NULL, 'MARIA VASQUES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3057', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3058', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3059', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3060', NULL, 'JEREMY', '43620567', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3061', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3062', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3063', NULL, 'DAVID', '45133292', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3064', NULL, 'LILIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3065', NULL, 'BLANCA', '72807655', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3066', NULL, 'DROGUERIA E.S.C PHARMED CORPORATION S..C', '', '20505578806', '', '', 'CAL. SAN LORENZO NRO. 950 LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3067', NULL, 'MARIA CALLUPE', '20078874', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3068', NULL, 'ANA', '07735446', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3069', NULL, 'MILAGROS', '42743427', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3070', NULL, 'angelica', '06641549', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3071', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3072', NULL, 'KETY', '09976423', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3073', NULL, 'LITA', '06788916', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3074', NULL, 'LILIAN MARIA VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3075', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3076', NULL, 'VIOLETA LANDA', '15640223', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3077', NULL, 'JOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3078', NULL, 'PAMELA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3079', NULL, 'SONIA RIOS', '08017444', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3080', NULL, 'MANUELA OVIEDO', '06094124', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3081', NULL, 'ELVA', '40111554', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3082', NULL, 'DORIS', '21831350', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3083', NULL, 'TILSA ROMERO', '40964072', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3084', NULL, 'KARINA', '76313659', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3085', NULL, 'GIOVANA', '40107904', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3086', NULL, 'MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3087', NULL, 'MELISA', '43209349', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3088', NULL, 'VANESA', '46617428', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3089', NULL, 'KARINA', '76313659', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3090', NULL, 'EMILIA', '40378761', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3091', NULL, 'ANGELICA GUTIERRES', '09525576', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3092', NULL, 'MARITZA HUAILLA', '21452974', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3093', NULL, 'GLADYS', '80529871', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3094', NULL, 'MARTIN', '41802684', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3095', NULL, 'YULIANA PACHECO', '70021815', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3096', NULL, 'MAYRA', '42934369', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3097', NULL, 'MAGALI', '44553813', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3098', NULL, 'SONIA', '40525472', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3099', NULL, 'CONSUELO', '01053373', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3100', NULL, 'ANGEL', '45088364', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3101', NULL, 'LAURA', '00493032', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3102', NULL, 'DELMIRA', '10779566', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3103', NULL, 'ROSA VINCES', '42964761', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3104', NULL, 'FORTUNATO', '08179427', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3105', NULL, 'MARIA ROSARIO VILLALOBOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3106', NULL, 'MARIA ROSARIO ALCALA', '15422506', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3107', NULL, 'CARLOS MACHADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3108', NULL, 'LIZ', '45197343', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3109', NULL, 'MARIBEL', '10394795', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3110', NULL, 'SH VISION &NEGOCIOS S.A.C', '', '20536829874', '', '', 'CALLE RODADERO 735 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3111', NULL, 'VILMA', '78104070', '', '', '', 'CALLE RODADERO 735 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3112', NULL, 'PAMELA GOYA', '78104070', '', '', '', 'CALLE RODADERO 735 LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3113', NULL, 'CARMEN LEON NINA', '10641369', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3114', NULL, 'teo sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3115', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3116', NULL, 'JHON verme', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3117', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3118', NULL, 'vanesa salguero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3119', NULL, 'antonio rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3120', NULL, 'luis rivas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3121', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3122', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3123', NULL, 'lucero garate', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3124', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3125', NULL, 'valentino', '73183424', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3126', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3127', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3128', NULL, 'JUANA CASTRO', '19326981', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3129', NULL, 'SERVICIOS MULTIPLES JEAMAR E.I.R.L', '', '20563071339', '', '', 'AV. TUPAC AMARU NRO. 2020 SANTA ROSA-COMAS-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3130', NULL, 'KATHERINE rey del esquivel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3131', NULL, 'JORGE', '00000000', '', '', '', 'AV. TUPAC AMARU NRO. 2020 SANTA ROSA-COMAS-LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3132', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3133', NULL, 'ESTHER ROMERO', '19839935', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3134', NULL, 'ESTHER ROMERO', '19839935', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3135', NULL, 'ALFONSO', '80577760', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3136', NULL, 'DANIEL', '40746879', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3137', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3138', NULL, 'MANUEL', '00000000', '', '', '', 'AV. TUPAC AMARU NRO. 2020 SANTA ROSA-COMAS-LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3139', NULL, 'VALENTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3140', NULL, 'IZUMI BARZOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3141', NULL, 'ANDREA', '46700519', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3142', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3143', NULL, 'EPIFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3144', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3145', NULL, 'CARLOS GUERRA', '21878844', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3146', NULL, 'ERIKA', '77485254', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3147', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3148', NULL, 'MAJID', '78104070', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3149', NULL, 'BENITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3150', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3151', NULL, 'BENITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3152', NULL, 'SARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3153', NULL, 'EMILIA BAYON', '08660632', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3154', NULL, 'SARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3155', NULL, 'LILIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3156', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3157', NULL, 'ALEXANDRA CORNEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3158', NULL, 'ROSARIO', '09439963', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3159', NULL, 'LUIS ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3160', NULL, 'RAMOS', '22269030', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3161', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3162', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3163', NULL, 'JULIA SAVEDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3164', NULL, 'CINTIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3165', NULL, 'MARISOL', '71917229', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3166', NULL, 'TORIBIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3167', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3168', NULL, 'SANDI', '76793192', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3169', NULL, 'JUAN CARLOS', '08807417', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3170', NULL, 'MADELEINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3171', NULL, 'MADELEINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3172', NULL, 'FANY VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3173', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3174', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3175', NULL, 'ULISES', '73097161', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3176', NULL, 'JOSEP VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3177', NULL, 'mateo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3178', NULL, 'ELISABETH  quintana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3179', NULL, 'iris', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3180', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3181', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3182', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3183', NULL, 'nilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3184', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3185', NULL, 'ROSA MAGUIÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3186', NULL, 'juana condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3187', NULL, 'guadalupe de castro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3188', NULL, 'MARDELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3189', NULL, 'INVERSIONES MEDINA S.A.C', '', '20523156382', '', '', 'AV. JAPON C12 MZD LT43 LOS LIRIOS CALLAO -CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3190', NULL, 'SUSANA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3191', NULL, 'YULI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3192', NULL, 'NELIDA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3193', NULL, 'JOSE CARBAJAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3194', NULL, 'DELFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3195', NULL, 'yudith', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3196', NULL, 'sunilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3197', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3198', NULL, 'paula magallanes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3199', NULL, 'RINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3200', NULL, 'PETRONILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3201', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3202', NULL, 'p\'atricia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3203', NULL, 'MERCEDES', '01127395', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3204', NULL, 'carlos pastor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3205', NULL, 'nelly olertegui trebejo', '', '10099634338', '', '', 'jr. dante 844 surquillo lima-lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3206', NULL, 'RUBELINDA ROSAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3207', NULL, 'jose', '00000000', '', '', '', 'jr. dante 844 surquillo lima-lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3208', NULL, 'JORGE SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3209', NULL, 'sarita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3210', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3211', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3212', NULL, 'carmen quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3213', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3214', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3215', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3216', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3217', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3218', NULL, 'CRISTIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3219', NULL, 'CRISTIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3220', NULL, 'CINTHYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3221', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3222', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3223', NULL, 'LILIAN CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3224', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3225', NULL, 'LESLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3226', NULL, 'rosario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3227', NULL, 'LUIS MEDINA', '25827202', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3228', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3229', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3230', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3231', NULL, 'liquia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3232', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3233', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3234', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3235', NULL, 'PORTUGAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3236', NULL, 'richard choque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3237', NULL, 'ermelinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3238', NULL, 'LUCINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3239', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3240', NULL, 'raquel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3241', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3242', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3243', NULL, 'willy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3244', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3245', NULL, 'chabela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3246', NULL, 'KIYARA AVALOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3247', NULL, 'monica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3248', NULL, 'CHABELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3249', NULL, 'juan huerta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3250', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3251', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3252', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3253', NULL, 'JOSE ALFREDO LINDO OBREGON', '', '10156949235', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3254', NULL, 'HENRY REBAZA', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3255', NULL, 'ROSA', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3256', NULL, 'elida barbosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3257', NULL, 'SAUL SANDOVAL', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3258', NULL, 'ROSMERY', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3259', NULL, 'MARIA', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3260', NULL, 'MARIA', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3261', NULL, 'MARIA', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3262', NULL, 'ingrid', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3263', NULL, 'ABIGAIL', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3264', NULL, 'MARIA', '00000000', '', '', '', 'MALECON RIO AGUAYTIA MZI LT7A PADRE ABAD UCAYALI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3265', NULL, 'erick', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3266', NULL, 'IZUMI BARZOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3267', NULL, 'MIRIAN POMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3268', NULL, 'UVALDIMIA CANDELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3269', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3270', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3271', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3272', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3273', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3274', NULL, 'CANDELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3275', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3276', NULL, 'HIPOLITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3277', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3278', NULL, 'ROSMERI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3279', NULL, 'AMERICAN MARK INC SAC', '', '20521268515', '', '', 'JR CUSCO 622 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3280', NULL, 'EDUARDO YANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3281', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3282', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3283', NULL, 'graciela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3284', NULL, 'clarisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3285', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3286', NULL, 'olga vergara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3287', NULL, 'josie', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3288', NULL, 'seleni campos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3289', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3290', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3291', NULL, 'aurelia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3292', NULL, 'federico alvarado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3293', NULL, 'MARIANA', '41276798', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3294', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3295', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3296', NULL, 'teodocia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3297', NULL, 'KAREN PANTOJA', '09936543', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3298', NULL, 'GLORIA BERROCAL', '25533735', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3299', NULL, 'ALEJO NIEVES', '09876469', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3300', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3301', NULL, 'GILBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3302', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3303', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3304', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3305', NULL, 'ELIANE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3306', NULL, 'RICHARD CUELLAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3307', NULL, 'SERVICIOS TURISTICOS LOS FAROLES SAC', '', '20506337560', '', '', 'AV. PROCERES NRO 328 URB. CONDEVILLA DEL SEÑOR SAN MARTIN DE PORRES -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3308', NULL, 'ENMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3309', NULL, 'GLADYS', '08176341', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3310', NULL, 'MARIELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3311', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3312', NULL, 'WILY CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3313', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3314', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3315', NULL, 'ZANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3316', NULL, 'EUSEVIO GARCIA SARAVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3317', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3318', NULL, 'VANESA VELGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3319', NULL, 'ZANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3320', NULL, 'ARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3321', NULL, 'KATERIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3322', NULL, 'VALENTINA LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3323', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3324', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3325', NULL, 'MAGALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3326', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3327', NULL, 'SAMUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3328', NULL, 'ROSA GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3329', NULL, 'MILI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3330', NULL, 'EDER TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3331', NULL, 'JORGE PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3332', NULL, 'MERLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3333', NULL, 'MARIO BERNAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3334', NULL, 'laura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3335', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3336', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3337', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3338', NULL, 'elvira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3339', NULL, 'DARY VENDEZU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3340', NULL, 'LISET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3341', NULL, 'guido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3342', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3343', NULL, 'jhonny chacon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3344', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3345', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3346', NULL, 'LUIS ANDRADE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3347', NULL, 'BENITO CHOQUE VILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3348', NULL, 'katy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3349', NULL, 'estrella', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3350', NULL, 'katy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3351', NULL, 'olga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3352', NULL, 'edison palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3353', NULL, 'olga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3354', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3355', NULL, 'MARIA CHIPANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3356', NULL, 'TEODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3357', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3358', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3359', NULL, 'ANA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3360', NULL, 'TEODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3361', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3362', NULL, 'PAULINA GOMES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3363', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3364', NULL, 'COMERCIALIZADORA LOS ANDES SCRL', '', '20486497344', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3365', NULL, 'AMPARO GARCIA', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3366', NULL, 'MAURA MENDOZA', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3367', NULL, 'MIRIAN', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3368', NULL, 'LUIS ALBERTO', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3369', NULL, 'ROSA JIMENES', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3370', NULL, 'BLANCA CHAVEZ', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3371', NULL, 'MIRIAN', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3372', NULL, 'RAQUEL', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3373', NULL, 'BLANCA', '00000000', '', '', '', 'AV SEBASTIAN BARRANCA 220 HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3374', NULL, 'rocio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3375', NULL, 'edith', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3376', NULL, 'ester', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3377', NULL, 'juan huamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3378', NULL, 'diego', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3379', NULL, 'steven ponte', '41403297', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3380', NULL, 'tula tafur tuesta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3381', NULL, 'AYME   ZAPATA', '40244617', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3382', NULL, 'AUGUSTO FLORES LUJAN', '21550659', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3383', NULL, 'ANGELA ARTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3384', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3385', NULL, 'MAYTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3386', NULL, 'MERY CARNICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3387', NULL, 'KARINA GOMEZ', '40683230', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3388', NULL, 'LUIS OBREGON', '16012106', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3389', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3390', NULL, 'ROSA CRUZ', '07962242', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3391', NULL, 'MARIA CABREJOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3392', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3393', NULL, 'FILADELFO MONCADA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3394', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3395', NULL, 'FILADELFO', '06951874', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3396', NULL, 'OLGA RIMACHI', '43678904', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3397', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3398', NULL, 'NORMA  CASTRO', '10448716', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3399', NULL, 'NORMA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3400', NULL, 'JASMIN RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3401', NULL, 'MIRIAN VIDELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3402', NULL, 'RICHARD PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3403', NULL, 'JUANAS ACEVEDO', '25592855', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3404', NULL, 'HERMELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3405', NULL, 'AOLEJANDRO HUAMAN VICUÑA', '09913983', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3406', NULL, 'MARITZA PARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3407', NULL, 'SANDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3408', NULL, 'CONSUELO COTRI NA', '32122166', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3409', NULL, 'RAMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3410', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3411', NULL, 'magda ortega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3412', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3413', NULL, 'ILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3414', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3415', NULL, 'CELINDA LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3416', NULL, 'LESLIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3417', NULL, 'ROSA MARIA DE ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3418', NULL, 'EDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3419', NULL, 'yesenia  flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3420', NULL, 'SUSY HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3421', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3422', NULL, 'GLORIA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3423', NULL, 'FELICITA PASTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3424', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3425', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3426', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3427', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3428', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3429', NULL, 'VOICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3430', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3431', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3432', NULL, 'LISBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3433', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3434', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3435', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3436', NULL, 'MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3437', NULL, 'MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3438', NULL, 'MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3439', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3440', NULL, 'MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3441', NULL, 'ABIGAIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3442', NULL, 'noemi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3443', NULL, 'armando gutierres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3444', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3445', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3446', NULL, 'milagros piña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3447', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3448', NULL, 'suni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3449', NULL, 'ana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3450', NULL, 'SHERRI MARIAN LOPEZ PEREZ', '', '10444607713', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3451', NULL, 'EDITH', '00000000', '', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3452', NULL, 'ELOY TEVES', '00000000', '', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3453', NULL, 'ELOY TEVES', '00000000', '', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3454', NULL, 'sheyla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3455', NULL, 'ROSANA', '00000000', '', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3456', NULL, 'MELITON', '00000000', '', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3457', NULL, 'HENRY', '00000000', '', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3458', NULL, 'delia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3459', NULL, 'gina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3460', NULL, 'patricia panez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3461', NULL, 'alexi garcia', '00000000', '', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3462', NULL, 'SULLY', '00000000', '', '', '', 'AV. HUANDOY MZJ LOTE 28 LOS JASMINES DEL NARANJAL LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3463', NULL, 'virginia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3464', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3465', NULL, 'dany', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3466', NULL, 'magaly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3467', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3468', NULL, 'MARIELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3469', NULL, 'BILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3470', NULL, 'liliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3471', NULL, 'evelin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3472', NULL, 'silvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3473', NULL, 'adela lujan', '10728858', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3474', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3475', NULL, 'leni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3476', NULL, 'rocilda quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3477', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3478', NULL, 'AYUMI S.A.C', '', '20515634682', '', '', 'AV ABANCAY 648 LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3479', NULL, 'MAVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3480', NULL, 'MAVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3481', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3482', NULL, 'CINTIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3483', NULL, 'ANGEL PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3484', NULL, 'maria delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3485', NULL, 'martin salina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3486', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3487', NULL, 'CAMPOS DE VIDA E.I.R.L', '', '20505034539', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3488', NULL, 'CAMPOS DE VIDA E.I.R.L', '', '20505034539', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3489', NULL, 'JENIFER', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3490', NULL, 'MARTINEZ VENTO A', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3491', NULL, 'PATRICIA BUSTO', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3492', NULL, 'ANDREA', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3493', NULL, 'sandra rosas', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3494', NULL, 'rosamaria  monte de ortiz', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3495', NULL, 'MARIA viera', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3496', NULL, 'matilde', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3497', NULL, 'milagros lazo', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3498', NULL, 'alfredo campos', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3499', NULL, 'INES LAZARTE', '00000000', '', '', '', 'JR. LEONCIO PRADO 443 MAGDALENA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3500', NULL, 'MAGALY ORDOÑES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3501', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3502', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3503', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3504', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3505', NULL, 'KATIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3506', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3507', NULL, 'ANA SIGUAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3508', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3509', NULL, 'WILSER DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3510', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3511', NULL, 'NESTOR MAMANI CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3512', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3513', NULL, 'RICARDO GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3514', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3515', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3516', NULL, 'LIZBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3517', NULL, 'zabaleta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3518', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3519', NULL, 'MARTIN JUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3520', NULL, '8', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3521', NULL, 'ALONSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3522', NULL, 'marcela leguia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3523', NULL, '3DXTES Y + SCRL', '', '20510272995', '', '', 'AV. PARDO DE ZELA 396 DPTO 7 LINCE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3524', NULL, '3DXTES + SCRL', '', '20510272995', '', '', 'AV PARDO DE ZELA 396 DPTO 7 LINCE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3525', NULL, 'MIGUEL TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3526', NULL, 'ADA TITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3527', NULL, 'ALEJO VALVERDE HEVER', '', '10443671787', '', '', 'JR CONRAY GRANDE 4874 LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3528', NULL, 'joel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3529', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3530', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3531', NULL, 'jony carbajal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3532', NULL, 'ali mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3533', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3534', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3535', NULL, 'jhony', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3536', NULL, 'ali mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3537', NULL, 'laura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3538', NULL, 'borys', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3539', NULL, 'erika caballero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3540', NULL, 'adriano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3541', NULL, 'hernan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3542', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3543', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3544', NULL, 'DANIEL ALRCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3545', NULL, 'RENZO DISEÑOS & IMPRENTA SAC', '', '20522553922', '', '', 'CALLE PORTA # 147 MIRAFLORES LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3546', NULL, 'NATALI ALIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3547', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3548', NULL, 'DOLLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3549', NULL, 'TIFANY ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3550', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3551', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3552', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3553', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3554', NULL, 'DIGNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3555', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3556', NULL, 'JACKELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3557', NULL, 'DANIEL S.A.C', '', '10416194888', '', '', 'NICOLAS AYLLON 8500 ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3558', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3559', NULL, 'FELICITA SULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3560', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3561', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3562', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3563', NULL, 'SERGIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3564', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3565', NULL, 'MIRIAN SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3566', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3567', NULL, 'SILVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3568', NULL, 'CARMEN AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3569', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3570', NULL, 'MAXIMO SOSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3571', NULL, 'JAVC EIRL', '', '20544022360', '', '', 'MZE LT8 URB LAS GARDENIAS S. M.P LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3572', NULL, 'ESTELA GUSMAN', '00000000', '', '', '', 'MZE LT8 URB LAS GARDENIAS S. M.P LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3573', NULL, 'ALVAREZ TRELLES', '00000000', '', '', '', 'MZE LT8 URB LAS GARDENIAS S. M.P LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3574', NULL, 'KATY', '00000000', '', '', '', 'MZE LT8 URB LAS GARDENIAS S. M.P LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3575', NULL, 'ALISON', '00000000', '', '', '', 'MZE LT8 URB LAS GARDENIAS S. M.P LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3576', NULL, 'ALISON', '00000000', '', '', '', 'MZE LT8 URB LAS GARDENIAS S. M.P LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3577', NULL, 'PEREZ MAITA MARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3578', NULL, 'PEREZ MAITA MARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3579', NULL, 'MONICA  GUTI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3580', NULL, 'LISET ARONI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3581', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3582', NULL, 'elena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3583', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3584', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3585', NULL, 'dina carbajal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3586', NULL, 'elvis leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3587', NULL, 'magdalena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3588', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3589', NULL, 'kely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3590', NULL, 'magdalena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3591', NULL, 'ANDRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3592', NULL, 'ISAIAS LORA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3593', NULL, 'JESUSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3594', NULL, 'MARINA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3595', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3596', NULL, 'MIRIAN BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3597', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3598', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3599', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3600', NULL, 'ADER CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3601', NULL, 'ELBER SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3602', NULL, 'GRUPO DKARIM EVENTOS Y CATERING S.A.C', '', '20545825016', '', '', 'EDIF. 17 DTO 202 CONDOMINIOS AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3603', NULL, 'ELI', '00000000', '', '', '', 'EDIF. 17 DTO 202 CONDOMINIOS AGUSTINO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3604', NULL, 'RUBI', '00000000', '', '', '', 'EDIF. 17 DTO 202 CONDOMINIOS AGUSTINO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3605', NULL, 'ELVIRA', '00000000', '', '', '', 'EDIF. 17 DTO 202 CONDOMINIOS AGUSTINO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3606', NULL, 'SANTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3607', NULL, 'lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3608', NULL, 'maura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3609', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3610', NULL, 'yomaira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3611', NULL, 'ricardo quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3612', NULL, 'geraldine', '43386498', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3613', NULL, 'JOSE LOPEZ', '44204539', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3614', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3615', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3616', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3617', NULL, 'EDUARDO HUARCAYA NEYRA', '', '10257566418', '', '', 'JR CASTRO VIRREYNA 266 INT 397 BREÑA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3618', NULL, 'LORENA', '00000000', '', '', '', 'JR CASTRO VIRREYNA 266 INT 397 BREÑA LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3619', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3620', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3621', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3622', NULL, 'ALICIA LIMAIMANTA', '21259986', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3623', NULL, 'VICTORIA VILLEGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3624', NULL, 'EDGAR SAMANIEGO', '20037847', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3625', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3626', NULL, 'SHIRLEY  CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3627', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3628', NULL, 'LILIANA HIDELFONSO', '70623367', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3629', NULL, 'JUAN PAMPA', '43669033', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3630', NULL, 'VANESA NAVARRO', '41110670', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3631', NULL, 'KATIA ALIAGA', '43175468', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3632', NULL, 'YANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3633', NULL, 'ELIANA ENRIQUES', '10296764', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3634', NULL, 'francisco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3635', NULL, 'CLARA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3636', NULL, 'CLARA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3637', NULL, 'ENMA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3638', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3639', NULL, 'CLARA GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3640', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3641', NULL, 'NOEMI CASTRO', '22295246', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3642', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3643', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3644', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3645', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3646', NULL, 'MARIENELA NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3647', NULL, 'GULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3648', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3649', NULL, 'GUSTAVO PERALTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3650', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3651', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3652', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3653', NULL, 'LEANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3654', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3655', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3656', NULL, 'FERNANDO YEP', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3657', NULL, 'MANUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3658', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3659', NULL, 'IVET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3660', NULL, 'alejandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3661', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3662', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3663', NULL, 'AGUSTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3664', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3665', NULL, 'AGUSTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3666', NULL, 'LINO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3667', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3668', NULL, 'SOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3669', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3670', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3671', NULL, 'sandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3672', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3673', NULL, 'elena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3674', NULL, 'ROSA CHILCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3675', NULL, 'elena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3676', NULL, 'CRISTINA CARBAJAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3677', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3678', NULL, 'WILMER ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3679', NULL, 'DELI SABORES SAC', '', '20565685159', '', '', 'JR. ALONSO DE MOLINA # 1652 MONTERRICO SURCO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3680', NULL, 'ABRAHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3681', NULL, 'NANCY RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3682', NULL, 'MARIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3683', NULL, 'MORENO JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3684', NULL, 'TEO RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3685', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3686', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3687', NULL, 'JOSE SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3688', NULL, 'ASUSENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3689', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3690', NULL, 'ELISABET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3691', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3692', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3693', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3694', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3695', NULL, 'ANA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3696', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3697', NULL, 'RONALD', '09458669', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3698', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3699', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3700', NULL, 'ADAMARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3701', NULL, 'PATRICIA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3702', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3703', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3704', NULL, 'iris', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3705', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3706', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3707', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3708', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3709', NULL, 'delia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3710', NULL, 'diana garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3711', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3712', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3713', NULL, 'tiofila boza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3714', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3715', NULL, 'javier rodriguez montes', '', '10099470718', '', '', 'jr cuzco 964 lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3716', NULL, 'korina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3717', NULL, 'susana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3718', NULL, 'esther m. garay sifuentes', '', '10062250661', '', '', 'jr. carhuaz 1481-1483 dpto 104 breña- lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3719', NULL, 'maria luz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3720', NULL, 'bienvenido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3721', NULL, 'JYUANA SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3722', NULL, 'ÑLIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3723', NULL, 'violeta', '00000000', '', '', '', 'jr. carhuaz 1481-1483 dpto 104 breña- lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3724', NULL, 'ADRIANA BARBOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3725', NULL, 'BENITO SACARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3726', NULL, 'SERGIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3727', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3728', NULL, 'susan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3729', NULL, 'tony uscapi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3730', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3731', NULL, 'martha', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3732', NULL, 'renzo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3733', NULL, 'rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3734', NULL, 'varios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3735', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3736', NULL, 'JULIA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3737', NULL, 'NEYVA ORTIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3738', NULL, 'ana campos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3739', NULL, 'julia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3740', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3741', NULL, 'ruth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3742', NULL, 'varios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3743', NULL, 'santiago', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3744', NULL, 'alcides', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3745', NULL, 'varios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3746', NULL, 'valeria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3747', NULL, 'jorge', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3748', NULL, 'jorge', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3749', NULL, 'veronica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3750', NULL, 'yesica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3751', NULL, 'varios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3752', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3753', NULL, 'katerine', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3754', NULL, 'guerrero cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3755', NULL, 'sonia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3756', NULL, 'maribel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3757', NULL, 'andrea', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3758', NULL, 'roberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3759', NULL, 'james', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3760', NULL, 'james', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3761', NULL, 'briceyda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3762', NULL, 'geraldine', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3763', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3764', NULL, 'varios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3765', NULL, 'ada ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3766', NULL, 'INSTITUCION EDUCATIVA PARROQUIAL DE REGIMEN PUBLICA GES', '', '20603151578', '', '', 'ASOC. DE VIVIENDA LOS CLAVELES CALLE 14 MZE LT5Y6 LURIN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3767', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3768', NULL, 'briana ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3769', NULL, 'katerine', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3770', NULL, 'gustavo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3771', NULL, 'zoila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3772', NULL, 'yenifer', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3773', NULL, 'aldeir', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3774', NULL, 'yackeline fuentes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3775', NULL, 'fabian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3776', NULL, 'lourdes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3777', NULL, 'claudia mamani puma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3778', NULL, 'karen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3779', NULL, 'luis poma maguiña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3780', NULL, 'dalila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3781', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3782', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3783', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3784', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3785', NULL, 'YUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3786', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3787', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3788', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3789', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3790', NULL, 'LEONARDO LIZARBE HERRERAS', '28680314', '', '', '', 'AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3791', NULL, 'MAYRA LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3792', NULL, 'NUÑES MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3793', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3794', NULL, 'ANTONIA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3795', NULL, 'ANTONIA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3796', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3797', NULL, 'MIGUEL', '09910451', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3798', NULL, 'JOSEFINA CARHUAMACA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3799', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3800', NULL, 'NANCY CANARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3801', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3802', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3803', NULL, 'NICANOR CARRASCO SALLCEDO', '', '10084951281', '', '', 'CALLE BRASILIA # 157 ATE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3804', NULL, 'PALACIOS ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3805', NULL, 'YAHAIRA', '00000000', '', '', '', 'CALLE BRASILIA # 157 ATE LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3806', NULL, 'NINA LAOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3807', NULL, 'LIZBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3808', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3809', NULL, 'JUAN RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3810', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3811', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3812', NULL, 'GILBERT BLANCO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3813', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3814', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3815', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3816', NULL, 'CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3817', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3818', NULL, 'YULI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3819', NULL, 'CARLOS ARAOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3820', NULL, 'LUZ ARTIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3821', NULL, 'DISTRIBUIDORA ARNOLD Y ALEXIS EIRL', '', '20553926841', '', '', 'AV. ARGENTINA 215 STAND BB12 CERCADO DE LIMA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3822', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3823', NULL, 'HERNAN GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3824', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3825', NULL, 'JOHANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3826', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3827', NULL, 'YURICO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3828', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3829', NULL, 'CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3830', NULL, 'ADELA AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3831', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3832', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3833', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3834', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3835', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3836', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3837', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3838', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3839', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3840', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3841', NULL, 'EUTROPIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3842', NULL, 'DENNIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3843', NULL, 'CARLOTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3844', NULL, 'ESTEFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3845', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3846', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3847', NULL, 'JORGE ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3848', NULL, 'fredy martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3849', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3850', NULL, 'LILI CAPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3851', NULL, 'YOLIMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3852', NULL, 'YOLIMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3853', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3854', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3855', NULL, 'LOPEZ VALDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3856', NULL, 'OSCAR RAMIREZ  TRUCIOS', '23276687', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3857', NULL, 'MAYRA LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3858', NULL, 'joselin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3859', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3860', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3861', NULL, 'EMUAPAR', '', '20535747181', '', '', 'PASEO DE LA CASTELLANA 597- SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3862', NULL, 'VIDAL CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3863', NULL, 'LURDES MATEO', '00000000', '', '', '', 'PASEO DE LA CASTELLANA 597- SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3864', NULL, 'JAVIER NUÑEZ', '80201228', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3865', NULL, 'PJA RIO SUR', '', '20491409917', '', '', 'AV SANTA ROSA NRO SN INT 42 MERCADO MODELO SAN VICENTE DE CAÑETE -CAÑETE -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3866', NULL, 'GLADYS PAUCAR', '00000000', '', '', '', 'AV SANTA ROSA NRO SN INT 42 MERCADO MODELO SAN VICENTE DE CAÑETE -CAÑETE -LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3867', NULL, 'JANETH', '00000000', '', '', '', 'AV SANTA ROSA NRO SN INT 42 MERCADO MODELO SAN VICENTE DE CAÑETE -CAÑETE -LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3868', NULL, 'MERCEDES DIESTRO', '00000000', '', '', '', 'AV SANTA ROSA NRO SN INT 42 MERCADO MODELO SAN VICENTE DE CAÑETE -CAÑETE -LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3869', NULL, 'LETICIA', '00000000', '', '', '', 'AV SANTA ROSA NRO SN INT 42 MERCADO MODELO SAN VICENTE DE CAÑETE -CAÑETE -LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3870', NULL, 'CRISTINA SANTU', '44870506', '', '', '', 'AV SANTA ROSA NRO SN INT 42 MERCADO MODELO SAN VICENTE DE CAÑETE -CAÑETE -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3871', NULL, 'FLOR RUIZ', '00000000', '', '', '', 'AV SANTA ROSA NRO SN INT 42 MERCADO MODELO SAN VICENTE DE CAÑETE -CAÑETE -LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3872', NULL, 'JANET', '00000000', '', '', '', 'PASEO DE LA CASTELLANA 597- SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3873', NULL, 'PATY', '00000000', '', '', '', 'PASEO DE LA CASTELLANA 597- SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3874', NULL, 'PATY', '00000000', '', '', '', 'PASEO DE LA CASTELLANA 597- SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3875', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3876', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3877', NULL, 'MELBA BARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3878', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3879', NULL, 'FLORA CADENAS', '00000000', '', '', '', 'PASEO DE LA CASTELLANA 597- SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3880', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3881', NULL, 'KERTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3882', NULL, 'JULISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3883', NULL, 'MARIA BALCAZAR', '06858629', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3884', NULL, 'SURCO QUISPE PAULINO', '23850831', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3885', NULL, 'APOLINARIA ROCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3886', NULL, 'ARLETTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3887', NULL, 'ESTER GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3888', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3889', NULL, 'JORGE', '00000000', '', '', '', 'PASEO DE LA CASTELLANA 597- SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3890', NULL, 'DIANA', '00000000', '', '', '', 'PASEO DE LA CASTELLANA 597- SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3891', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3892', NULL, 'CRISTINA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3893', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3894', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3895', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3896', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3897', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3898', NULL, 'JUANA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3899', NULL, 'JOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3900', NULL, 'CLEMENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3901', NULL, 'milagritos gamarra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3902', NULL, 'MERY ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3903', NULL, 'MERY ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3904', NULL, 'MERY ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3905', NULL, 'VALERIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3906', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3907', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3908', NULL, 'celina gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3909', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3910', NULL, 'PATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3911', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3912', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3913', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3914', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3915', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3916', NULL, 'luis peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3917', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3918', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3919', NULL, 'carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3920', NULL, 'allison', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3921', NULL, 'doly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3922', NULL, 'milagros poterico', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3923', NULL, 'alcides romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3924', NULL, 'dicto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3925', NULL, 'maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3926', NULL, 'yackelina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3927', NULL, 'silvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3928', NULL, 'patricia grecia mamani mamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3929', NULL, 'bernardina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3930', NULL, 'lozano broca carmen doris', '17804951', '', '', '', 'TRUJILLO -LA LIBERTAD', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3931', NULL, 'aida ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3932', NULL, 'rocio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3933', NULL, 'yesica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3934', NULL, 'albina arango', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3935', NULL, 'keiko', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3936', NULL, 'virginia velasque', '31040150', '', '', '', 'abancay-apurimac', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3937', NULL, 'JUAN SALCEDO', '40877218', '', '', '', 'ATE', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3938', NULL, 'GIORGINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3939', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3940', NULL, 'HOTEL RESTAURANTE CASABLANCA SCRL', '', '20443733273', '', '', 'CARRETERA CENTRAL KILOMETRO 100 SAN RAMON CHANCHAMAYO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3941', NULL, 'BENITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3942', NULL, 'FELICITA', '00000000', '', '', '', 'CARRETERA CENTRAL KILOMETRO 100 SAN RAMON CHANCHAMAYO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3943', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3944', NULL, 'HENRY MAYTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3945', NULL, 'SAMIN INVERSIONES Y SERVICIOS GENERALES S.A.C', '', '20601019923', '', '', '1RA ETAPA URB. STA ROSITA MZ F LT 37 ATE-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3946', NULL, 'VIDAL GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3947', NULL, 'SAMIN INVERSIONES SERV GENERALES', '', '20601019923', '', '', '1ra ETAPA URB STA ROSITA MZ F LT 37 ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3948', NULL, 'OCTAVIO CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3949', NULL, 'VIDAL GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3950', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3951', NULL, 'ROSA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3952', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3953', NULL, 'NELLY VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3954', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3955', NULL, 'ZULEMA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3956', NULL, 'PEDRO PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3957', NULL, 'LUISA BUENDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3958', NULL, 'jose', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3959', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3960', NULL, 'AIDE MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3961', NULL, 'CINTHIA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3962', NULL, 'juan carlos pereda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3963', NULL, 'YANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3964', NULL, 'JUAN SINCHE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3965', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3966', NULL, 'VICENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3967', NULL, 'NATALY MEDINA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3968', NULL, 'CARMEN PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3969', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3970', NULL, 'KELLY LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3971', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3972', NULL, 'joselin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3973', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3974', NULL, 'FRANCISCO FALCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3975', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3976', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3977', NULL, 'GLADIS LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3978', NULL, 'MADELEIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3979', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3980', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3981', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3982', NULL, 'zoila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3983', NULL, 'laura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3984', NULL, 'lety hurtado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3985', NULL, 'nelson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3986', NULL, 'GIOVANi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3987', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3988', NULL, 'anais', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3989', NULL, 'luz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3990', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3991', NULL, 'gilber', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3992', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3993', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3994', NULL, 'alfonso leiva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3995', NULL, 'graciela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3996', NULL, 'july', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3997', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3998', NULL, 'gladys duran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('3999', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4000', NULL, 'patricia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4001', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4002', NULL, 'SIXTO  CABELLO SAENZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4003', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4004', NULL, 'SIXTO CABELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4005', NULL, 'korina', '08299408', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4006', NULL, 'elvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4007', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4008', NULL, 'jenifer calderon', '40376592', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4009', NULL, 'alejandro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4010', NULL, 'sofia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4011', NULL, 'ana tamyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4012', NULL, 'sandra requena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4013', NULL, 'mirna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4014', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4015', NULL, 'quispe yano arturo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4016', NULL, 'WILFREDO', '16761686', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4017', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4018', NULL, 'LISBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4019', NULL, 'victoria ocho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4020', NULL, 'gloria palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4021', NULL, 'edwin figueredo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4022', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4023', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4024', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4025', NULL, 'ubaldo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4026', NULL, 'julissa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4027', NULL, 'AMERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4028', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4029', NULL, 'ERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4030', NULL, 'ARMANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4031', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4032', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4033', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4034', NULL, 'GIMY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4035', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4036', NULL, 'MARIA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4037', NULL, 'CLAUDIA  BARZOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4038', NULL, 'JOHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4039', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4040', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4041', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4042', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4043', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4044', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4045', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4046', NULL, ',MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4047', NULL, 'ERIKA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4048', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4049', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4050', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4051', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4052', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4053', NULL, 'MOISES ABANTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4054', NULL, 'CELESTINA PARIAMACHI FLORES', '31619227', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4055', NULL, 'GRUPO MITARASHI S.A.C', '', '20604045721', '', '', 'URB. PROLONGACION BENAVIDES AV. ALFREDO BENAVIDES 4850 SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4056', NULL, 'JORGE', '00000000', '', '', '', 'URB. PROLONGACION BENAVIDES AV. ALFREDO BENAVIDES 4850 SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4057', NULL, 'CESAR', '00000000', '', '', '', 'URB. PROLONGACION BENAVIDES AV. ALFREDO BENAVIDES 4850 SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4058', NULL, 'OMAR', '00000000', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4059', NULL, 'ROICIO', '00000000', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4060', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4061', NULL, 'CARLA DURAN', '00000000', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4062', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4063', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4064', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4065', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4066', NULL, 'TEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4067', NULL, 'JUAN ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4068', NULL, 'DIGNA MALCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4069', NULL, 'ELECTRO FERRO CENTRO S.A.C.', '', '20503141389', '', '', 'AV. REPUBLICA DE PANAMA # 5364 SURQUILLO -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4070', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4071', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4072', NULL, 'LORENA AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4073', NULL, 'JUANA YAREQUEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4074', NULL, 'JUANA YARLEQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4075', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4076', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4077', NULL, 'rosmery valle', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4078', NULL, 'mary cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4079', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4080', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4081', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4082', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4083', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4084', NULL, 'OLIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4085', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4086', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4087', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4088', NULL, 'SANTIAGO FERNADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4089', NULL, 'SANTIAGO FERNADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4090', NULL, 'CARMEN PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4091', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4092', NULL, 'YAMILE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4093', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4094', NULL, 'GIOGIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4095', NULL, 'IRIA GALLEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4096', NULL, 'LEONARDO BONILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4097', NULL, 'LEONARDO BONILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4098', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4099', NULL, 'ROBERTO SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4100', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4101', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4102', NULL, 'RAUL NEYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4103', NULL, 'NELLY VILLOTA', '09632136', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4104', NULL, 'JOSE SANCHEZ', '22304997', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4105', NULL, 'MELANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4106', NULL, 'INGRII  ULLOA HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4107', NULL, 'GUSTAVO VALDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4108', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4109', NULL, 'DANIEL MACAVILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4110', NULL, 'miguel fernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4111', NULL, 'allicia torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4112', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4113', NULL, 'JACKELINE vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4114', NULL, 'rosana diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4115', NULL, 'pedro loza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4116', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4117', NULL, 'lais', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4118', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4119', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4120', NULL, 'francisco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4121', NULL, 'JENY PACHECO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4122', NULL, 'GRABIEL LUYO', '10154729', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4123', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4124', NULL, 'PASCUALA ASTETE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4125', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4126', NULL, 'JAHAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4127', NULL, 'MARIA VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4128', NULL, 'PILAR QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4129', NULL, 'CAROLINA IBARRA', '75594964', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4130', NULL, 'DALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4131', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4132', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4133', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4134', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4135', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4136', NULL, 'DANIEL BAZALAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4137', NULL, 'ANITA CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4138', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4139', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4140', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4141', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4142', NULL, 'ROSSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4143', NULL, 'MARLENE E. PEREZ SUAREZ', '', '10027440555', '', '', 'CUZCO 633 PIURA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4144', NULL, 'GERALDINE', '00000000', '', '', '', 'CUZCO 633 PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4145', NULL, 'DIGNA', '00000000', '', '', '', 'CUZCO 633 PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4146', NULL, 'BIL,MA', '00000000', '', '', '', 'CUZCO 633 PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4147', NULL, 'LILI VALDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4148', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4149', NULL, 'DORIS', '00000000', '', '', '', 'CUZCO 633 PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4150', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4151', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4152', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4153', NULL, 'YENI TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4154', NULL, 'JOIRGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4155', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4156', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4157', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4158', NULL, 'MARIA  FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4159', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4160', NULL, 'MANUEL ALFARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4161', NULL, 'MARIA ISABEL COTRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4162', NULL, 'ANTONI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4163', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4164', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4165', NULL, 'LUZ AINCASTRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4166', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4167', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4168', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4169', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4170', NULL, 'JHON MONTALVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4171', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4172', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4173', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4174', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4175', NULL, 'YANET SALINAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4176', NULL, 'JANIRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4177', NULL, 'ROXANA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4178', NULL, 'JORGE CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4179', NULL, 'JORGE CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4180', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4181', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4182', NULL, 'ILDA CHAMBI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4183', NULL, 'ROSA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4184', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4185', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4186', NULL, 'EUCLIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4187', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4188', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4189', NULL, 'COMPAÑIA PERUANA DE ACERO S.A.C.', '', '20116120837', '4273548', '', 'AV. PIEDRA LUINA #2451 URB. SAN CARLOS S.J.L.- LIMA-LIMA-', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4190', NULL, 'DAVID ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4191', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4192', NULL, 'YAHAIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4193', NULL, 'AURORA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4194', NULL, 'AURORA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4195', NULL, 'AURORA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4196', NULL, 'JERALDIN RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4197', NULL, 'JERALDIN RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4198', NULL, 'JESICA GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4199', NULL, 'SILVIA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4200', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4201', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4202', NULL, 'antonia quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4203', NULL, 'dela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4204', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4205', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4206', NULL, 'OSCAR SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4207', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4208', NULL, 'DENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4209', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4210', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4211', NULL, 'MARIA JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4212', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4213', NULL, 'CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4214', NULL, 'veronica ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4215', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4216', NULL, 'rogata ariste', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4217', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4218', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4219', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4220', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4221', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4222', NULL, 'MARIA APARICIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4223', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4224', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4225', NULL, 'ELOY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4226', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4227', NULL, 'JULIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4228', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4229', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4230', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4231', NULL, 'GIAN PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4232', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4233', NULL, 'MARIA MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4234', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4235', NULL, 'DELIA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4236', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4237', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4238', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4239', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4240', NULL, 'JACK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4241', NULL, 'CINTIA SABOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4242', NULL, 'DEYSI TAMARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4243', NULL, 'MIRIAN MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4244', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4245', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4246', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4247', NULL, 'KARELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4248', NULL, 'ESTEFANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4249', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4250', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4251', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4252', NULL, 'FLOR DE MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4253', NULL, 'MIREYA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4254', NULL, 'HUGO PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4255', NULL, 'SANDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4256', NULL, 'JULIO HUNGARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4257', NULL, 'consuelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4258', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4259', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4260', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4261', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4262', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4263', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4264', NULL, 'YOLANDA USCANOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4265', NULL, 'vanesa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4266', NULL, 'florentino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4267', NULL, 'sara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4268', NULL, 'cecilia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4269', NULL, 'juan claros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4270', NULL, 'zoila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4271', NULL, 'RAUL RODRIGUEZ', '09241796', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4272', NULL, 'rebeca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4273', NULL, 'cristian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4274', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4275', NULL, 'PEDRO ESPEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4276', NULL, 'ANGI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4277', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4278', NULL, 'ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4279', NULL, 'GRUPO JR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4280', NULL, 'helen bendezu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4281', NULL, 'ANGELICA MARZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4282', NULL, 'GRUPO JR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4283', NULL, 'MELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4284', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4285', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4286', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4287', NULL, 'ROLABNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4288', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4289', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4290', NULL, 'MANUEL CHILON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4291', NULL, 'LIVIA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4292', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4293', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4294', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4295', NULL, 'COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4296', NULL, 'marcos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4297', NULL, 'YOLANDA HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4298', NULL, 'juli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4299', NULL, 'FIORELA MOLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4300', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4301', NULL, 'lili', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4302', NULL, 'JOSE DALVERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4303', NULL, 'alfredo gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4304', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4305', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4306', NULL, 'ITALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4307', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4308', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4309', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4310', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4311', NULL, 'MAX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4312', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4313', NULL, 'WELINTON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4314', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4315', NULL, 'candelaria flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4316', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4317', NULL, 'MELQUIADES SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4318', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4319', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4320', NULL, 'LUIS ZAVALETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4321', NULL, 'JOSE SAL Y ROSAS', '32116667', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4322', NULL, 'MARCELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4323', NULL, 'MARCELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4324', NULL, 'ANGEL MARCELO', '10762836', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4325', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4326', NULL, 'MARIA TERESA MARTINEZ', '07203471', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4327', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4328', NULL, 'CARMEN ESPEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4329', NULL, 'CARMEN ESPEJO SALDAÑA', '07599675', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4330', NULL, 'EUTROPIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4331', NULL, 'LILY ALVARADO', '31619081', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4332', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4333', NULL, 'NICOLAS CHUQUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4334', NULL, 'DIANA CONTRERAS', '41550935', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4335', NULL, 'ARTURO ANGLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4336', NULL, 'MARLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4337', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4338', NULL, 'ALBINA HONORES', '10752235', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4339', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4340', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4341', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4342', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4343', NULL, 'ZOILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4344', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4345', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4346', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4347', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4348', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4349', NULL, 'EMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4350', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4351', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4352', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4353', NULL, 'DIONE ÑAUPARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4354', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4355', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4356', NULL, 'MICAELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4357', NULL, 'LEILA ZEVALLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4358', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4359', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4360', NULL, 'MELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4361', NULL, 'NATALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4362', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4363', NULL, 'JORGE CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4364', NULL, 'EDUAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4365', NULL, 'ROCI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4366', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4367', NULL, 'arianny salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4368', NULL, 'sebastian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4369', NULL, 'luis ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4370', NULL, 'SERVICIOS GENERALES JJJJ Y L- EIRL', '', '20494534003', '', '', 'PSJE. SAN JAVIER #116 PISCO-ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4371', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4372', NULL, 'JOSE SALAS', '09312127', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4373', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4374', NULL, 'AIDE  RUELAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4375', NULL, 'ZENAIDA DIESTRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4376', NULL, 'CARMEN FERMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4377', NULL, 'ALEXANDER RAMOS', '41450515', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4378', NULL, 'FELIX CLEMENTE TORRES PABLO', '', '10040048354', '', '', 'JR. HUAMACHUCO # 262A CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4379', NULL, 'TERESA DIAZ PAREDES', '04002861', '', '', '', 'JR. YAULI # 337 CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4380', NULL, 'SOFIA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4381', NULL, 'YASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4382', NULL, 'JORGE PAREDES', '06697234', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4383', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4384', NULL, 'LUIS SIFUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4385', NULL, 'JORGE RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4386', NULL, 'CARMEN CHEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4387', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4388', NULL, 'BORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4389', NULL, 'ROSA JARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4390', NULL, 'julisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4391', NULL, 'MARINA SEGOVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4392', NULL, 'PEDRO HUAPAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4393', NULL, 'TEOFILO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4394', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4395', NULL, 'LEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4396', NULL, 'EDITH CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4397', NULL, 'LEON ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4398', NULL, 'alejandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4399', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4400', NULL, 'ALIDA  AVANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4401', NULL, 'BEATRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4402', NULL, 'nilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4403', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4404', NULL, 'YUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4405', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4406', NULL, 'MAXIMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4407', NULL, 'MARCELA LLANOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4408', NULL, 'WILMER IZQUIERDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4409', NULL, 'SAMUEL BONIFACIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4410', NULL, 'REPRESENTACIONES JEHOVA ES MI PASTOR E.I.R.L.', '', '20601045690', '', '', 'AV. ARGENTINA #215 INT. Q-1 LIMA -LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4411', NULL, 'miguel castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4412', NULL, 'miguel castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4413', NULL, 'SAMUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4414', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4415', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4416', NULL, 'PALOMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4417', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4418', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4419', NULL, 'ROSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4420', NULL, 'minera andina de exploraciones s.a.a.', '', '20338426781', '', '', 'jr. arnaldo de gregory # 392 surco-lima-lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4421', NULL, 'MIGUEL ANGEL MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4422', NULL, 'LEONARDO TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4423', NULL, 'camila', '00000000', '', '', '', 'jr. arnaldo de gregory # 392 surco-lima-lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4424', NULL, 'NELLY ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4425', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4426', NULL, 'LENIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4427', NULL, 'DORIS QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4428', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4429', NULL, 'NOELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4430', NULL, 'NOELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4431', NULL, 'DANIEL PERALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4432', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4433', NULL, 'ADRA PERU', '', '20138861300', '', '', 'AV.ANGAMOS OESTE # 770 MIRAFLORES-LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4434', NULL, 'ADRA PERU', '', '20138861300', '', '', 'AV.ANGAMOS OESTE # 770 MIRAFLORES-LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4435', NULL, 'ANDREA RICRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4436', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4437', NULL, 'REBECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4438', NULL, 'SABINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4439', NULL, 'victor santillan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4440', NULL, 'CARMEN PEREYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4441', NULL, 'NOEMI GODOY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4442', NULL, 'NOEMI GODOY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4443', NULL, 'cruzado willy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4444', NULL, 'hostal turistico misky huarac sac', '', '20530837492', '', '', 'jr. francisco araos # 170 huaraz', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4445', NULL, 'DARWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4446', NULL, 'yoli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4447', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4448', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4449', NULL, 'LILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4450', NULL, 'LITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4451', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4452', NULL, 'KINKLEY ALCANTARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4453', NULL, 'SANDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4454', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4455', NULL, 'JOHANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4456', NULL, 'MILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4457', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4458', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4459', NULL, 'CRISANTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4460', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4461', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4462', NULL, 'CARMEN PINEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4463', NULL, 'SHEYLA', '10621442', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4464', NULL, 'FIORELA', '43849511', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4465', NULL, 'MARIA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4466', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4467', NULL, 'MARIA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4468', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4469', NULL, 'SERGIO URBANO AROTINCO', '', '10218821541', '', '', 'AV. PERSHING S/N JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4470', NULL, 'HERNAN TOLENTINO', '41683809', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4471', NULL, 'MONICA', '00000000', '', '', '', 'AV. PERSHING S/N JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4472', NULL, 'MARUJA', '00000000', '', '', '', 'AV. PERSHING S/N JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4473', NULL, 'VICTOR ECOS FLORENTINI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4474', NULL, 'CONSUELO', '00000000', '', '', '', 'AV. PERSHING S/N JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4475', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4476', NULL, 'CATY', '00000000', '', '', '', 'AV. PERSHING S/N JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4477', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4478', NULL, 'LIDIA  mitma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4479', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4480', NULL, 'maria fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4481', NULL, 'noel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4482', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4483', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4484', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4485', NULL, 'YANETH GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4486', NULL, 'LEONIDAS PONCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4487', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4488', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4489', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4490', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4491', NULL, 'CAC CEPRO YANESHA', '', '20568071281', '', '', 'AV. PUERTO  BERMUDEZ 825 VILLA RICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4492', NULL, 'MARISOL URBANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4493', NULL, 'CAC CEPRO YANESHA', '', '20568071281', '', '', 'AV. PUERTO BERMUDEZ 825 VILLA RICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4494', NULL, 'BENJAMIN GAMARRA', '00000000', '', '', '', 'AV. PUERTO BERMUDEZ 825 VILLA RICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4495', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4496', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4497', NULL, 'ALICIA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4498', NULL, 'ALCIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4499', NULL, 'AMIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4500', NULL, 'ELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4501', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4502', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4503', NULL, 'estefany', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4504', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4505', NULL, 'LEONICIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4506', NULL, 'ERNESTO TAPIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4507', NULL, 'LAURA ORELLANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4508', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4509', NULL, 'GLORIA ALVARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4510', NULL, 'RENE LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4511', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4512', NULL, 'LAURA GALLEGOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4513', NULL, 'ESTRUCTURAS Y COMUNICACIONES SAC', '', '20513104112', '', '', 'SAN AMBROSIO #415 BARRANCO-LIMA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4514', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4515', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4516', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4517', NULL, 'PRICILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4518', NULL, 'EDNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4519', NULL, 'MARITZA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4520', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4521', NULL, 'ingrid', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4522', NULL, 'ANA  PECHO GALARZA', '', '10090639221', '', '', 'CALLE RIO MAJES MZ F LOTE 9 - URB LOS ANGELES- ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4523', NULL, 'IRMA PARAVICINO LIRA', '28306761', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9 - URB LOS ANGELES- ATE', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4524', NULL, 'MARIELA INGARUCA', '06162333', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4525', NULL, 'ricardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4526', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4527', NULL, 'MIGUEL ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4528', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4529', NULL, 'ELENA VELASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4530', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4531', NULL, 'SILVANA ROSALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4532', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4533', NULL, 'FELICITA OBESO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4534', NULL, 'DAVIC', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4535', NULL, 'ANA SILVESTRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4536', NULL, 'ANA SILVESTRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4537', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4538', NULL, 'GIANCARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4539', NULL, 'GRACIELA GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4540', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4541', NULL, 'ALCIRA RENDON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4542', NULL, 'JUSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4543', NULL, 'UNGRIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4544', NULL, 'JOSE CARRASCO ZAPOATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4545', NULL, 'GIOVANA MOGROVEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4546', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4547', NULL, 'MICAELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4548', NULL, 'ANN ELIZABETH CHAVEZ VALDIVIEZO', '', '10460073532', '', '', 'AV. CENTRAL #25 DIST. PARAMONGA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4549', NULL, 'EMELDA', '00000000', '', '', '', 'AV. CENTRAL #25 DIST. PARAMONGA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4550', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4551', NULL, 'HERMANAS MARIANITAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4552', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4553', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4554', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4555', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4556', NULL, 'BITIA ELIZALDE RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4557', NULL, 'ANA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4558', NULL, 'MARICIELO HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4559', NULL, 'PERLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4560', NULL, 'YEIMY VASQUEZ RODRIGEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4561', NULL, 'DAICY PIZARRO PAUCARHUANCA', '', '10462869814', '', '', 'AV HUANCARAY MZA5 LT18 SANTA ANITA -LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4562', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4563', NULL, 'MARILUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4564', NULL, 'CECILIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4565', NULL, 'THALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4566', NULL, 'LEOCADIO TORVISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4567', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4568', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4569', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4570', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4571', NULL, 'FLORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4572', NULL, 'BELCI BRIONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4573', NULL, 'CARLOS BOYD', '21299755', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4574', NULL, 'FRANCISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4575', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4576', NULL, 'VICTOR FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4577', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4578', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4579', NULL, 'LEOCADIO TORVISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4580', NULL, 'SILVIA', '10488820', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4581', NULL, 'MARIA CABANILLAS', '16523807', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4582', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4583', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4584', NULL, 'YESICA MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4585', NULL, 'EVA ASTORAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4586', NULL, 'AMPARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4587', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4588', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4589', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4590', NULL, 'AMPARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4591', NULL, 'MARIA MORAN', '25486333', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4592', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4593', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4594', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4595', NULL, 'DANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4596', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4597', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4598', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4599', NULL, 'JAVIER DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4600', NULL, 'ANALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4601', NULL, 'MARIA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4602', NULL, 'JHONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4603', NULL, 'FREDDY ARROYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4604', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4605', NULL, 'ANA AVALOS', '21805670', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4606', NULL, 'ERMELINDA JUSCAMAYTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4607', NULL, 'TEOFILA FONSECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4608', NULL, 'VENTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4609', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4610', NULL, 'CELIA REYES INFANTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4611', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4612', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4613', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4614', NULL, 'MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4615', NULL, 'PLUMAS CIELO EIRL', '', '20514674699', '', '', 'AV. SAN MARTIN #1243 V.M.T LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4616', NULL, 'MARCIAL LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4617', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4618', NULL, 'MARIELENA VELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4619', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4620', NULL, 'DAVID ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4621', NULL, 'REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4622', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4623', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4624', NULL, 'nely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4625', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4626', NULL, 'AURELIA SALINAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4627', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4628', NULL, 'LUIS ´PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4629', NULL, 'EUTIMIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4630', NULL, 'BETSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4631', NULL, 'ALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4632', NULL, 'EMANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4633', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4634', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4635', NULL, 'JORGE YUL ESTRELLA SALCEDO', '', '10211204261', '4273548', '', 'AV VIENRICH 136 TARMA- JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4636', NULL, 'EÑLIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4637', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4638', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4639', NULL, 'SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4640', NULL, 'GLADIS AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4641', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4642', NULL, 'MERLIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4643', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4644', NULL, 'MARITZA', '00000000', '', '', '', 'AV VIENRICH 136 TARMA- JUNIN', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4645', NULL, 'ISABEL', '00000000', '', '', '', 'AV VIENRICH 136 TARMA- JUNIN', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4646', NULL, 'AURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4647', NULL, 'SANTOS MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4648', NULL, 'aide palacios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4649', NULL, 'yolanda vega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4650', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4651', NULL, 'TRANS VICTORIA S.A.C', '', '20454571259', '', '', 'ASOC LADRILLEROS CONO SUR MZ M LOTE 4 MOLLEBAYA AREQUIPA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4652', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4653', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4654', NULL, 'JHENYFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4655', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4656', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4657', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4658', NULL, 'FRANCISCA DAVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4659', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4660', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4661', NULL, 'JULIA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4662', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4663', NULL, 'LOURDES UGARTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4664', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4665', NULL, 'ISMAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4666', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4667', NULL, 'MARIA LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4668', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4669', NULL, 'NELY CANCHU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4670', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4671', NULL, 'KRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4672', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4673', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4674', NULL, 'eva malqui', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4675', NULL, 'eva malqui', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4676', NULL, 'rosario torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4677', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4678', NULL, 'julio panta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4679', NULL, 'junior', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4680', NULL, 'JHULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4681', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4682', NULL, 'EMILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4683', NULL, 'ARAUCO ALARCO DANA VERUSHKA', '', '10107747066', '', '', 'AV. LIMA SUR #212 C.C. LOS PORTALES DE CHOSICA 1ER PISO INT. 35 LURIGANCHO -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4684', NULL, 'eusebia castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4685', NULL, 'madeleine', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4686', NULL, 'edgar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4687', NULL, 'luisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4688', NULL, 'maribel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4689', NULL, 'maribel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4690', NULL, 'adriana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4691', NULL, 'miguel torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4692', NULL, 'ana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4693', NULL, 'adolfo rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4694', NULL, 'evelina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4695', NULL, 'delsi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4696', NULL, 'jhonatan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4697', NULL, 'walter', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4698', NULL, 'maicol', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4699', NULL, 'amna valdivieso', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4700', NULL, 'zoila vargas de valdivieso', '22987838', '', '', '', 'MZE LT8 EL MIRADOR-PACHACUTEC- VENTANILLA', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4701', NULL, 'MADELEIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4702', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4703', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4704', NULL, 'MATEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4705', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4706', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4707', NULL, 'ANTONIA ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4708', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4709', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4710', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4711', NULL, 'VIRGINIA GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4712', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4713', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4714', NULL, 'JORGE PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4715', NULL, 'ROGATA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4716', NULL, 'ROGATA ARISTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4717', NULL, 'BRAYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4718', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4719', NULL, 'LUZ CUBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4720', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4721', NULL, 'MARISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4722', NULL, 'LITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4723', NULL, 'CARLOS BLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4724', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4725', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4726', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4727', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4728', NULL, 'ALFREDO CASAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4729', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4730', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4731', NULL, 'RUTH CAMAVILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4732', NULL, 'JULIO YAURY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4733', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4734', NULL, 'YACKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4735', NULL, 'ROSAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4736', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4737', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4738', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4739', NULL, 'ISABEL PASTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4740', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4741', NULL, 'MAGALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4742', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4743', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4744', NULL, 'CARMEN SANTANDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4745', NULL, 'KONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4746', NULL, 'CONGREGACION DE RELIGIOSAS MARIA INMACULADA', '', '20160045532', '', '', 'AV. EL POLO #375 SANTIAGO DE SURCO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4747', NULL, 'CONGREGACION DE RELIGIOSAS MARIA INMACULADA', '', '20160045532', '', '', 'AV. EL POLO #375 SAN TIAGO DE SURCO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4748', NULL, 'FREDDY GODOY', '00000000', '', '', '', 'AREQUIPA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4749', NULL, 'MIRTHA', '00000000', '', '', '', 'AREQUIPA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4750', NULL, 'NICOLAS MOCHICA VILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4751', NULL, 'BETSY FLORES', '40824806', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4752', NULL, 'HUALLPA NEGOCIOS GENERALES S.A.C', '', '20603972997', '', '', 'AV. SALAVERRY 676 JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4753', NULL, 'ROXANA IGARZA', '00000000', '', '', '', 'AV. SALAVERRY 676 JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4754', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4755', NULL, 'YACKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4756', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4757', NULL, 'MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4758', NULL, 'MARIA SANTANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4759', NULL, 'FRANCISCA AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4760', NULL, 'JUNIOR LLONTOP', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4761', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4762', NULL, 'GINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4763', NULL, 'yacky', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4764', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4765', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4766', NULL, 'MARI A DEL CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4767', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4768', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4769', NULL, 'mary cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4770', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4771', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4772', NULL, 'INES TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4773', NULL, 'FIDEL FERNANZDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4774', NULL, 'VICTOR FLORES PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4775', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4776', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4777', NULL, 'CELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4778', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4779', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4780', NULL, 'LUISA TEJADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4781', NULL, 'ROSARIO CAMONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4782', NULL, 'LEONIDAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4783', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4784', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4785', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4786', NULL, 'ASENCIA GIL CALISALLA', '02381250', '', '', '', 'JULIACA', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4787', NULL, 'BUDHA CONECTION SAC', '', '20601813671', '', '', 'JR. CARABAYA # 959 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4788', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4789', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4790', NULL, 'LUCIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4791', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4792', NULL, 'SONIA MENA', '07192922', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4793', NULL, 'EDILBERTO SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4794', NULL, 'CARLOS BALBIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4795', NULL, 'PILAR FABIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4796', NULL, 'BRIYID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4797', NULL, 'elvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4798', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4799', NULL, 'DORIS ORE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4800', NULL, 'lucy torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4801', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4802', NULL, 'DEYSI DURAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4803', NULL, 'CAROLINA  RON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4804', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4805', NULL, 'elisa pajuelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4806', NULL, 'carlos calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4807', NULL, 'carlos calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4808', NULL, 'eliana onorio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4809', NULL, 'marta torrejon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4810', NULL, 'carmen rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4811', NULL, 'lima', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4812', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4813', NULL, 'DOMENICO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4814', NULL, 'carito albornoz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4815', NULL, 'SONIA anchelia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4816', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4817', NULL, 'katy ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4818', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4819', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4820', NULL, 'DORIS GALEANO', '07217838', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4821', NULL, 'MABEL', '42413756', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4822', NULL, 'ADOLFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4823', NULL, 'ISABEL  AMANQUI', '09409590', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4824', NULL, 'MONTALVO RODRIGUES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4825', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4826', NULL, 'EDITA CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4827', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4828', NULL, 'EUSTAQUIO COSME CERNA', '16002404', '', '', '', 'CHANCAY', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4829', NULL, 'RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4830', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4831', NULL, 'IRACEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4832', NULL, 'CARLOS CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4833', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4834', NULL, 'LEGION DE HONOR DE LA BERIMERITA GUARDIA CIVIL DEL PERU', '', '20251228109', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4835', NULL, 'JONY', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4836', NULL, 'AIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4837', NULL, 'ANA ARCALLO', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4838', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4839', NULL, 'DELIA', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4840', NULL, 'GINA', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4841', NULL, 'ESTRELLA', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4842', NULL, 'GLADIS', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4843', NULL, 'ESTRELLA', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4844', NULL, 'ESTRELLA', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4845', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4846', NULL, 'CARMEN', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4847', NULL, 'OLGA ROJAS', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4848', NULL, 'ANTONIA SEPTIMO SANCHEZ', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4849', NULL, 'SANTA SIVERIA DIAZ', '00000000', '', '', '', 'JR. CRISTOBAL DE PERALTA NORTE 218 SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4850', NULL, 'LUIS LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4851', NULL, 'VCTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4852', NULL, 'LUPE RAMIRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4853', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4854', NULL, 'JUAN HUANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4855', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4856', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4857', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4858', NULL, 'FREDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4859', NULL, 'ANTHONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4860', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4861', NULL, 'LILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4862', NULL, 'PAOLA SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4863', NULL, 'PAOLA SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4864', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4865', NULL, 'ESTER VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4866', NULL, 'GLORIA BAZAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4867', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4868', NULL, 'GREGORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4869', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4870', NULL, 'janyna', '40616409', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4871', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4872', NULL, 'EDWIN', '09991086', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4873', NULL, 'ZOILA VASQUEZ', '16015422', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4874', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4875', NULL, 'JOSEFINA', '07652830', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4876', NULL, 'ELIZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4877', NULL, 'BETSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4878', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4879', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4880', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4881', NULL, 'KETI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4882', NULL, 'PAMELA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4883', NULL, 'LUCIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4884', NULL, 'PAOLa', '44300168', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4885', NULL, 'JACKY', '41218417', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4886', NULL, 'MARIA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4887', NULL, 'ALAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4888', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4889', NULL, 'esteban cueva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4890', NULL, 'luciana lara meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4891', NULL, 'hermelinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4892', NULL, 'mariluz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4893', NULL, 'maritza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4894', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4895', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4896', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4897', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4898', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4899', NULL, 'JULIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4900', NULL, 'NORAANDINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4901', NULL, 'MARTA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4902', NULL, 'nelson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4903', NULL, 'ROSALVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4904', NULL, 'LEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4905', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4906', NULL, 'corina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4907', NULL, 'corina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4908', NULL, 'CORINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4909', NULL, 'JENNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4910', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4911', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4912', NULL, 'JOEL MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4913', NULL, 'SALOME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4914', NULL, 'SALOME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4915', NULL, 'SALOME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4916', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4917', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4918', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4919', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4920', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4921', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4922', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4923', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4924', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4925', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4926', NULL, 'FRANCO AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4927', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4928', NULL, 'ROSA SIFUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4929', NULL, 'SALOME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4930', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4931', NULL, 'VEGA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4932', NULL, 'ESTER GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4933', NULL, 'JULY DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4934', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4935', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4936', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4937', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4938', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4939', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4940', NULL, 'IVAN BOCANEGRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4941', NULL, 'EDSON FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4942', NULL, 'MARGARITA AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4943', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4944', NULL, 'NELSON MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4945', NULL, 'ROSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4946', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4947', NULL, 'SEGUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4948', NULL, 'SERGIO GIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4949', NULL, 'CARLOS LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4950', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4951', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4952', NULL, 'MANUELA MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4953', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4954', NULL, 'ROBERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4955', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4956', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4957', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4958', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4959', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4960', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4961', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4962', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4963', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4964', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4965', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4966', NULL, 'PEDRO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4967', NULL, 'PEDRO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4968', NULL, 'hermelinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4969', NULL, 'HERMELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4970', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4971', NULL, 'KARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4972', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4973', NULL, 'SHADIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4974', NULL, 'FIME INDUSTRIAL SAC', '', '20477926143', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4975', NULL, 'AIDE SUMAITA', '00000000', '', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4976', NULL, 'AIDE SUMAITA', '00000000', '', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4977', NULL, 'HUGO', '00000000', '', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4978', NULL, 'ELVA', '00000000', '', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4979', NULL, 'ELVA', '00000000', '', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4980', NULL, 'JOSEP', '00000000', '', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4981', NULL, 'BILMA', '00000000', '', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4982', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4983', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4984', NULL, 'ROJAS', '00000000', '', '', '', 'MZ B LT 7 JARDINES DEL ENCANTO CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4985', NULL, 'NOR,MA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4986', NULL, 'NOR,MA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4987', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4988', NULL, 'SANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4989', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4990', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4991', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4992', NULL, 'LESLY HOYOS DURAN', '72969282', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4993', NULL, 'KATERIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4994', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4995', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4996', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4997', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4998', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('4999', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5000', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5001', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5002', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5003', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5004', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5005', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5006', NULL, 'dina palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5007', NULL, 'RAFAEL CAMARGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5008', NULL, 'VANESA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5009', NULL, 'CINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5010', NULL, 'WELTON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5011', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5012', NULL, 'giovana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5013', NULL, 'PILAR LOAYZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5014', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5015', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5016', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5017', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5018', NULL, 'GAUDENCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5019', NULL, 'BENITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5020', NULL, 'MLUIS AREVALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5021', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5022', NULL, 'COMUNIDAD EVANGELICA DE LIBERACION INTERDOMINACIONAL MI', '', '20137927714', '', '', 'JR. NEVADO HUASCARAN # 335 S.J.L- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5023', NULL, 'rita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5024', NULL, 'COMUNIDAD EVANGELICA DE LIBERACION INTERDOMINACIONAL MI', '', '20137927714', '', '', 'JR. NEVADO HUASCARAN # 335 S.J.L- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5025', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5026', NULL, 'NOELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5027', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5028', NULL, 'FLOR DE MARIA ZEVALLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5029', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5030', NULL, 'MAICOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5031', NULL, 'JESUS ACOSTA  CAVALIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5032', NULL, 'EDWIN CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5033', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5034', NULL, 'TERESA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5035', NULL, 'YUSELINA CERONI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5036', NULL, 'yackelin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5037', NULL, 'angelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5038', NULL, 'angelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5039', NULL, 'vanesa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5040', NULL, 'arita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5041', NULL, 'karina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5042', NULL, 'maritza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5043', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5044', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5045', NULL, 'JESICA HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5046', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5047', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5048', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5049', NULL, 'gloria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5050', NULL, 'julia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5051', NULL, 'ENDIRA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5052', NULL, 'ENDIRA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5053', NULL, 'ENDIRA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5054', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5055', NULL, 'guillermo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5056', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5057', NULL, 'alcida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5058', NULL, 'marilin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5059', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5060', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5061', NULL, 'froilan barrantes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5062', NULL, 'OFELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5063', NULL, 'maria trujillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5064', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5065', NULL, 'eulalia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5066', NULL, 'josie', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5067', NULL, 'josie', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5068', NULL, 'josie', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5069', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5070', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5071', NULL, 'JOSE PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5072', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5073', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5074', NULL, 'ESTELITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5075', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5076', NULL, 'alvina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5077', NULL, 'REYNA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5078', NULL, 'REYNA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5079', NULL, 'PATRICIA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5080', NULL, 'willy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5081', NULL, 'alejandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5082', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5083', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5084', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5085', NULL, 'ADA AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5086', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5087', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5088', NULL, 'MILUSKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5089', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5090', NULL, 'LUZ CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5091', NULL, 'DEYANIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5092', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5093', NULL, 'JESUSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5094', NULL, 'LUIS CRISTOBAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5095', NULL, 'ENRIQUE PACHECO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5096', NULL, 'BAYONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5097', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5098', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5099', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5100', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5101', NULL, 'candy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5102', NULL, 'DANIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5103', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5104', NULL, 'DANIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5105', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5106', NULL, 'daniel ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5107', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5108', NULL, 'evelin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5109', NULL, 'rodolfo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5110', NULL, 'PACHECO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5111', NULL, 'pelajia medrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5112', NULL, 'ADELA CARBAJAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5113', NULL, 'FELIPÉ AVALOS', '45845790', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5114', NULL, 'MAROA PALMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5115', NULL, 'KAREN', '07523495', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5116', NULL, 'MARIA PALMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5117', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5118', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5119', NULL, 'DELIA RAMOS HUAMANI', '40482939', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5120', NULL, 'MARIA BOCANEGRA', '08677567', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5121', NULL, 'CARMEN ARANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5122', NULL, 'JOYSE CHAVEZ', '44694412', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5123', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5124', NULL, 'MARIA MENDOZA', '07696731', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5125', NULL, 'GUADALUPE MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5126', NULL, 'LUIS FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5127', NULL, 'DIODORA', '07822712', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5128', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5129', NULL, 'DEBORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5130', NULL, 'KAREN TOMAS VILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5131', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5132', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5133', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5134', NULL, 'SATURNINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5135', NULL, 'MELSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5136', NULL, 'DEBORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5137', NULL, 'DEBORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5138', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5139', NULL, 'ROSA GONZALES SILVESTRE', '', '10215127813', '935291130', '', 'AA.HH. ALAN GARCIA PEREZ MZA LT3 PARACAS- PISCO- ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5140', NULL, 'ROSA GONZALES SILVESTRE', '', '10215127813', '', '', 'AA.HH. ALAN GARCIA PEREZ MZA LT3 PARACAS- PISCO- ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5141', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5142', NULL, 'SEFERINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5143', NULL, 'AMANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5144', NULL, 'GIAN CONDESO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5145', NULL, 'graciela vilchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5146', NULL, 'LA FIDUCIARIA S.A', '', '20501842771', '', '', 'CALLE LOS LIBERTADORES #155 PISO8 SAN ISIDRO -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5147', NULL, 'felipe maguiña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5148', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5149', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5150', NULL, 'CHANG', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5151', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5152', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5153', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5154', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5155', NULL, 'ELMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5156', NULL, 'ELMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5157', NULL, 'ELMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5158', NULL, 'SANCHEZ DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5159', NULL, 'HITOMY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5160', NULL, 'BERTHA  MOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5161', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5162', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5163', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5164', NULL, 'gelen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5165', NULL, 'ALEXANDRA', '00000000', '', '', '', 'CAL.LOS LIBERTADORES NRO. 155 DPTO. 8 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5166', NULL, 'OLGA', '00000000', '', '', '', 'AV. JORGE BASADRE NRO. 143 URB. SAN IGNACIO - AMPLIACION (ALT.PARADERO 20 DE LOS PROCERES) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5167', NULL, 'SAMUEL PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5168', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5169', NULL, 'MAGNOLIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5170', NULL, 'MERCEDES SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5171', NULL, 'MAGNOLIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5172', NULL, 'MARIA CARAZAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5173', NULL, 'BHERTA REATEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5174', NULL, 'JUSTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5175', NULL, 'JULIO OBANDO', '43869891', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5176', NULL, 'JORGE GIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5177', NULL, 'MARIA MITMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5178', NULL, 'VICTOR GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5179', NULL, 'ALVAREZ FRANCIA JULIA ANGELA', '', '10087960167', '', '', 'JR. MARISCAL CACERES 248- SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5180', NULL, 'SAUL TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5181', NULL, 'ARMINDA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5182', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5183', NULL, 'NANCY CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5184', NULL, 'RAMOS RIOS MARGARITA ANAHI', '', '10440190559', '', '', 'AV GUIDA JOSE CARLOS MARIATEGUI 624 EX- FUNDO LA ESTRELLA- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5185', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5186', NULL, 'LOURDES FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5187', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5188', NULL, 'ESTEFANIA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5189', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5190', NULL, 'ALAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5191', NULL, 'KARLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5192', NULL, 'PILAR FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5193', NULL, 'DALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5194', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5195', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5196', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5197', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5198', NULL, 'HERNAN TENORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5199', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5200', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5201', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5202', NULL, 'rony', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5203', NULL, 'TICLLA DE CONDOR EDELMIRA', '', '10273720451', '', '', 'INCA GARCILAZO DE LA VEGA 367 CHOTA- CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5204', NULL, 'EDUARDO MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5205', NULL, 'HINOSTROZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5206', NULL, 'raul', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5207', NULL, 'ysaias', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5208', NULL, 'marisol', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5209', NULL, 'YANETH GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5210', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5211', NULL, 'FLOR SAMANIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5212', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5213', NULL, 'FOOD PACK SAC', '', '20416001104', '', '', 'AV. SANTA ROSA #336 ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5214', NULL, 'FOOD PACK SAC', '', '20416001104', '3595656', '', 'AV. SANTA ROSA #336 ATE-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5215', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5216', NULL, 'YACKELINE  BANCES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5217', NULL, 'FELIX VICENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5218', NULL, 'HUMBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5219', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5220', NULL, 'JOBITA PINEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5221', NULL, 'JACKELINE LOPEZ', '40284501', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5222', NULL, 'CINTHYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5223', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5224', NULL, 'LINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5225', NULL, 'DAYANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5226', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5227', NULL, 'RUFINA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5228', NULL, 'YESICA URQUIZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5229', NULL, 'MARIELENA QUINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5230', NULL, 'JULIAN DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5231', NULL, 'MARIO VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5232', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5233', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5234', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5235', NULL, 'VILMA ARISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5236', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5237', NULL, 'JOHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5238', NULL, 'ELISEO SAENZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5239', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5240', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5241', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5242', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5243', NULL, 'PABLO  TAMAYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5244', NULL, 'TAGLIATELLA GROUP S.R.L.', '', '20553258635', '', '', 'AV. UNIVERSITARIA NRO. 567A LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5245', NULL, 'willians ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5246', NULL, 'ELISABETH LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5247', NULL, 'ISABEL TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5248', NULL, 'MARCELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5249', NULL, 'JUKIA REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5250', NULL, 'ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5251', NULL, 'ANA BARRETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5252', NULL, 'LUIS CUSTODIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5253', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5254', NULL, 'JAVIER TORRES BASTIDAS', '', '10070123547', '2515452', '', 'AV. JOSE OLAYA # 550-CHORRILLOS -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5255', NULL, 'TORRES BASTIDAS JAVIER', '', '10070123547', '2515452', '', 'AV JOSE OLAYA 550 CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5256', NULL, 'RUTH', '00000000', '', '', '', 'AV. JOSE OLAYA # 550-CHORRILLOS -LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5257', NULL, 'LUCY GUTIERREZ', '00000000', '', '', '', 'AV. JOSE OLAYA # 550-CHORRILLOS -LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5258', NULL, 'TORRES BASTIDAS JAVIER', '', '10070123547', '2515452', '', 'AV JOSE OLAYA 550 CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5259', NULL, 'TORRES BASTIDAS JAVIER', '', '10070123547', '2515452', '', 'AV JOSE OLAYA 550 CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5260', NULL, 'RAUL MINAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5261', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5262', NULL, 'naty', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5263', NULL, 'aurora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5264', NULL, 'aurora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5265', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5266', NULL, 'VANY HIDALGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5267', NULL, 'CRISTOBAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5268', NULL, 'ANTONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5269', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5270', NULL, 'LLOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5271', NULL, 'SARA DAVID', '09605688', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5272', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5273', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5274', NULL, 'ADMINISTRACION DE EMPRESAS S.A.C.', '', '20100114934', '', '', 'CAL.LAS BEGONIAS NRO. 441 INT. 402 URB. JARDIN LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5275', NULL, 'MILAGROS', '00000000', '', '', '', 'CAL.LAS BEGONIAS NRO. 441 INT. 402 URB. JARDIN LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5276', NULL, 'VIRGINIA', '00000000', '', '', '', 'CAL.LAS BEGONIAS NRO. 441 INT. 402 URB. JARDIN LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5277', NULL, 'ELIZABETH', '00000000', '', '', '', 'CAL.LAS BEGONIAS NRO. 441 INT. 402 URB. JARDIN LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5278', NULL, 'ARELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5279', NULL, 'ANDREA RICCI', '47181691', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5280', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5281', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5282', NULL, 'ADELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5283', NULL, 'YESSENIA  ATAUCURI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5284', NULL, 'MIGUEL FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5285', NULL, 'MARIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5286', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5287', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5288', NULL, 'cristina ligue', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5289', NULL, 'JULIA  HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5290', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5291', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5292', NULL, 'leidy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5293', NULL, 'ANDREINA SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5294', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5295', NULL, 'hilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5296', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5297', NULL, 'graciela chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5298', NULL, 'pelagio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5299', NULL, 'PELAGIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5300', NULL, 'HUMBERTO JANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5301', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5302', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5303', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5304', NULL, 'EFRAIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5305', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5306', NULL, 'nancy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5307', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5308', NULL, 'BRETT TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5309', NULL, 'ANGI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5310', NULL, 'CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5311', NULL, 'DARIO HUMBERTO FALCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5312', NULL, 'hermana micky rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5313', NULL, '4A SOLUCIONES INTEGRALES S.A.C', '', '20492325784', '', '', 'AV. TOMAS VALLE NRO. 2170 URB. ANTARES (ENTRE AV. UNIVERSITARIA Y TOMAS VALLE) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5314', NULL, 'LESLY', '00000000', '', '', '', 'AV. TOMAS VALLE NRO. 2170 URB. ANTARES (ENTRE AV. UNIVERSITARIA Y TOMAS VALLE) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5315', NULL, 'JULIO MONTOYA', '00000000', '', '', '', 'AV. TOMAS VALLE NRO. 2170 URB. ANTARES (ENTRE AV. UNIVERSITARIA Y TOMAS VALLE) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5316', NULL, 'MAGDA', '00000000', '', '', '', 'AV. TOMAS VALLE NRO. 2170 URB. ANTARES (ENTRE AV. UNIVERSITARIA Y TOMAS VALLE) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5317', NULL, 'PÍLAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5318', NULL, 'CLARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5319', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5320', NULL, 'JULIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5321', NULL, 'LISBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5322', NULL, 'DANITSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5323', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5324', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5325', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5326', NULL, 'NELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5327', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5328', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5329', NULL, 'SHAMIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5330', NULL, 'nelly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5331', NULL, 'elizabeth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5332', NULL, 'karina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5333', NULL, 'ELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5334', NULL, 'ELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5335', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5336', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5337', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5338', NULL, 'MARIA ALCANTARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5339', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5340', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5341', NULL, 'ALEJANDRO SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5342', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5343', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5344', NULL, 'SILVIA PARIACHI FLORES', '80622452', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5345', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5346', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5347', NULL, 'RONALD QUIROGA DOBLESILLA', '00000000', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5348', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5349', NULL, 'CARLOS PEREZ', '00000000', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5350', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5351', NULL, 'yolanda', '00000000', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5352', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5353', NULL, 'ELISABETH', '00000000', '', '', '', 'HUARAZ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5354', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5355', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5356', NULL, 'fanny rodrigues', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5357', NULL, 'erick', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5358', NULL, 'danitza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5359', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5360', NULL, 'mirian  EFFIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5361', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5362', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5363', NULL, 'ARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5364', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5365', NULL, 'MARIA JACOBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5366', NULL, 'ANDERSON HUAIIULLO', '71409326', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5367', NULL, 'ANDERSON HUAIIULLO', '71409326', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5368', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5369', NULL, 'alfredo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5370', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5371', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5372', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5373', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5374', NULL, 'MABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5375', NULL, 'ITALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5376', NULL, 'JUDITH QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5377', NULL, 'MARLENE GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5378', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5379', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5380', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5381', NULL, 'HIGINIO PACHECO CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5382', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5383', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5384', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5385', NULL, 'MARLON LOLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5386', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5387', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5388', NULL, 'lidia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5389', NULL, 'yacky', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5390', NULL, 'MECHE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5391', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5392', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5393', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5394', NULL, 'cristian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5395', NULL, 'YAQUELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5396', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5397', NULL, 'monica estrada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5398', NULL, 'raquel torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5399', NULL, 'yanire', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5400', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5401', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5402', NULL, 'PAOLA GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5403', NULL, 'MARIA MALDONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5404', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5405', NULL, 'RENATO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5406', NULL, 'ERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5407', NULL, 'JUAN CARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5408', NULL, 'CRISTIAN AYALA', '80447531', '', '', '', 'LA UNION 2 DE MAYO-HUANUCO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5409', NULL, 'JULIA', '00000000', '', '', '', 'LA UNION 2 DE MAYO-HUANUCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5410', NULL, 'GENRY VALENZUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5411', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5412', NULL, 'omar villa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5413', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5414', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5415', NULL, 'LILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5416', NULL, 'GIOVANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5417', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5418', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5419', NULL, 'JESSICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5420', NULL, 'julio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5421', NULL, 'jaleska', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5422', NULL, 'gianina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5423', NULL, 'lizbeth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5424', NULL, 'suriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5425', NULL, 'margarita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5426', NULL, 'CARLOS PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5427', NULL, 'jackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5428', NULL, 'ana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5429', NULL, 'maria carhuamaca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5430', NULL, 'carmelña campos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5431', NULL, 'estela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5432', NULL, 'milagros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5433', NULL, 'ivan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5434', NULL, 'maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5435', NULL, 'karina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5436', NULL, 'lourdes estela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5437', NULL, 'MIRIAN MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5438', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5439', NULL, 'AMELIA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5440', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5441', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5442', NULL, 'maleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5443', NULL, 'alicia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5444', NULL, 'maricela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5445', NULL, 'estela ramos', '21782291', '', '', '', 'chincha alta', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5446', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5447', NULL, 'JOSE MENDOZA', '07884296', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5448', NULL, 'JOSE MEDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5449', NULL, 'JOSE CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5450', NULL, 'melva carranza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5451', NULL, 'nelly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5452', NULL, 'mariluz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5453', NULL, 'amalia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5454', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5455', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5456', NULL, 'cristina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5457', NULL, 'magda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5458', NULL, 'santa rosales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5459', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5460', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5461', NULL, 'DINA LANDEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5462', NULL, 'melisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5463', NULL, 'esperanza marquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5464', NULL, 'anibal velasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5465', NULL, 'junior', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5466', NULL, 'maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5467', NULL, 'cesar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5468', NULL, 'valentina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5469', NULL, 'emperatriz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5470', NULL, 'marco yaya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5471', NULL, 'angel ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5472', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5473', NULL, 'ruth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5474', NULL, 'norma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5475', NULL, 'angela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5476', NULL, 'lorena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5477', NULL, 'rosa cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5478', NULL, 'victoria matos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5479', NULL, 'neidi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5480', NULL, 'Angel carrillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5481', NULL, 'PAULA GONZALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5482', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5483', NULL, 'PLASTICOS RIO SANTA S.A', '', '20101227082', '5333223', '', 'CALLE MARCO FARFAN #3205 INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5484', NULL, 'plasticos rio santa s.a', '', '20101227082', '5333223', '', 'calle marco farfan# 3205 independencia- lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5485', NULL, 'teodoro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5486', NULL, 'UNIVERSIDAD PERUANA UNION', '', '20138122256', '6186300', '', 'CARRETERA CENTRAL KM 19.5 ÑAÑA -LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5487', NULL, 'PATTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5488', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5489', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5490', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5491', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5492', NULL, 'VIRGINIA VELASQUE PALOMINO', '', '10310401507', '', '', 'JR. AREQUIIPA # 519 ABANCAY APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5493', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5494', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5495', NULL, 'FREDY ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5496', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5497', NULL, 'SEBASTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5498', NULL, 'COOPERATIVA DE SERVICIOS ESPECIALES MERCADO EL SOL', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5499', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5500', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5501', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5502', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5503', NULL, 'JULIO LLANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5504', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5505', NULL, 'GGGUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5506', NULL, 'MARCO ANTONIO MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5507', NULL, 'GISELA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5508', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5509', NULL, 'JORGE SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5510', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5511', NULL, 'kildare alegre', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5512', NULL, 'richard', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5513', NULL, 'gian carlo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5514', NULL, 'roberth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5515', NULL, 'yulisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5516', NULL, 'gladys', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5517', NULL, 'maribel machuca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5518', NULL, 'gladis medina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5519', NULL, 'belinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5520', NULL, 'guissel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5521', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5522', NULL, 'helen curo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5523', NULL, 'roxana yupanqui', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5524', NULL, 'alan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5525', NULL, 'nicol', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5526', NULL, 'julia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5527', NULL, 'gerardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5528', NULL, 'MARIA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5529', NULL, 'marlene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5530', NULL, 'flor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5531', NULL, 'ELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5532', NULL, 'MANUEL VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5533', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5534', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5535', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5536', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5537', NULL, 'MARIA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5538', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5539', NULL, 'ERINSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5540', NULL, 'ZULEMA MORAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5541', NULL, 'TATIANA MRGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5542', NULL, 'abigail', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5543', NULL, 'MARICRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5544', NULL, 'isabel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5545', NULL, 'teresa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5546', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5547', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5548', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5549', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5550', NULL, 'nancy ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5551', NULL, 'milagros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5552', NULL, 'FERNANDO GARAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5553', NULL, 'GUISELA PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5554', NULL, 'juleth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5555', NULL, 'yosi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5556', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5557', NULL, 'MICHAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5558', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5559', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5560', NULL, 'ARLET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5561', NULL, 'DOLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5562', NULL, 'RENAN CARRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5563', NULL, 'AMPARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5564', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5565', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5566', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5567', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5568', NULL, 'MILTON RUBEN  PACORA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5569', NULL, 'TEODOCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5570', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5571', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5572', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5573', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5574', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5575', NULL, 'NELLY SILVA ZUMAETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5576', NULL, 'FRANCISCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5577', NULL, 'ALEJANDRA', '10251452', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5578', NULL, 'jose', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5579', NULL, 'elis barture olivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5580', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5581', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5582', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5583', NULL, 'ALFONSO LAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5584', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5585', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5586', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5587', NULL, 'AMANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5588', NULL, 'CARMEN GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5589', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5590', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5591', NULL, 'REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5592', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5593', NULL, 'PARROQUIA LA VIRGEN DE NAZARET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5594', NULL, 'NELLY SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5595', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5596', NULL, 'JESUSA GUERRERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5597', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5598', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5599', NULL, 'ESTER MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5600', NULL, 'ESTER MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5601', NULL, 'ESTER MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5602', NULL, 'YUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5603', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5604', NULL, 'CLARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5605', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5606', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5607', NULL, 'MARIA TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5608', NULL, 'WANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5609', NULL, 'MANUEL HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5610', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5611', NULL, 'MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5612', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5613', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5614', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5615', NULL, 'ALICIA LOPÉZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5616', NULL, 'diana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5617', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5618', NULL, 'jose salcedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5619', NULL, 'FLOR GUERRERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5620', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5621', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5622', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5623', NULL, 'LUZ ESTRELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5624', NULL, 'MIGUEL LO0PEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5625', NULL, 'WILBER ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5626', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5627', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5628', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5629', NULL, 'REQUEZ VEGA MACEDONIO ANTONIO', '', '10327304467', '', '', 'JR. 6 DE JUNIO 226 SAN LUIS ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5630', NULL, 'CARMEN', '00000000', '', '', '', 'AYACUCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5631', NULL, 'LEDA', '00000000', '', '', '', 'AYACUCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5632', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5633', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5634', NULL, 'KARINA AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5635', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5636', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5637', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5638', NULL, 'JHONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5639', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5640', NULL, 'ERIKA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5641', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5642', NULL, 'angelica rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5643', NULL, 'ester', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5644', NULL, 'teresita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5645', NULL, 'celinda quiroz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5646', NULL, 'JAISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5647', NULL, 'WILLIANS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5648', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5649', NULL, 'MERCEDES MELENDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5650', NULL, 'JESUS GUERRERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5651', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5652', NULL, 'FRANCI SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5653', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5654', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5655', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5656', NULL, 'luis berona', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5657', NULL, 'ELIANA GALINDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5658', NULL, 'ANA VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5659', NULL, 'MIGUEL ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5660', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5661', NULL, 'ofelia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5662', NULL, 'pompeyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5663', NULL, 'mario carrion', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5664', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5665', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5666', NULL, 'CARMINA VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5667', NULL, 'CARLOS RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5668', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5669', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5670', NULL, 'YANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5671', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5672', NULL, 'DANTE MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5673', NULL, 'LUIS CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5674', NULL, 'DAMIANA CERVANTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5675', NULL, 'DAMIANA CERVANTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5676', NULL, 'ROY ESCATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5677', NULL, 'CYNTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5678', NULL, 'MARIA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5679', NULL, 'BEATRIZ CUARESMA MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5680', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5681', NULL, 'ROXANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5682', NULL, 'ELSA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5683', NULL, 'AURELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5684', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5685', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5686', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5687', NULL, 'VICTOR LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5688', NULL, 'TAMARA SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5689', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5690', NULL, 'SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5691', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5692', NULL, 'DIEGO ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5693', NULL, 'angelina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5694', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5695', NULL, 'RENATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5696', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5697', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5698', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5699', NULL, 'ROSA PASION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5700', NULL, 'AMANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5701', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5702', NULL, 'jonathan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5703', NULL, 'diana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5704', NULL, 'marcosa rosales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5705', NULL, 'angelica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5706', NULL, 'cesar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5707', NULL, 'manuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5708', NULL, 'lorensa yalico', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5709', NULL, 'veronica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5710', NULL, 'hugo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5711', NULL, 'beronica patricia tapullima tomailla', '', '10406608781', '', '', 'jr. cuzco #443 int 103 galeria la movida III cercado de lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5712', NULL, 'Norma Espinoza', '00000000', '', '', '', 'jr. cuzco #443 int 103 galeria la movida III cercado de lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5713', NULL, 'NESTOR VILCAYAURI', '00000000', '', '', '', 'jr. cuzco #443 int 103 galeria la movida III cercado de lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5714', NULL, 'MARGARITA GALARZA', '00000000', '', '', '', 'jr. cuzco #443 int 103 galeria la movida III cercado de lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5715', NULL, 'cristian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5716', NULL, 'huaranca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5717', NULL, 'rey', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5718', NULL, 'joel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5719', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5720', NULL, 'willians areas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5721', NULL, 'rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5722', NULL, 'sandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5723', NULL, 'raul', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5724', NULL, 'rocio gutierres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5725', NULL, 'carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5726', NULL, 'delia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5727', NULL, 'luz aliaga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5728', NULL, 'luordes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5729', NULL, 'florinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5730', NULL, 'elisa alcantara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5731', NULL, 'marlene bendezu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5732', NULL, 'rayda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5733', NULL, 'lidia gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5734', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5735', NULL, 'ROSA REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5736', NULL, 'MERCEDES BERROCAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5737', NULL, 'FERNANDO TINEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5738', NULL, 'CENTRO  ANN SULLIVAN DEL PERU', '', '20124476632', '', '', 'CALLE PETRONILA ALVARES #180 SAN MIGUEL  LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5739', NULL, 'ANAMALPARTIDA QUIRIKA', '00000000', '', '', '', 'CALLE PETRONILA ALVARES #180 SAN MIGUEL  LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5740', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5741', NULL, 'YORDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5742', NULL, 'SERVICIO PEDIATRIA', '42097030', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5743', NULL, 'SERVICIO PEDIATRIA', '42097030', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5744', NULL, 'SERVICIO PEDIATRIA', '42097030', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5745', NULL, 'ALEJANDRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5746', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5747', NULL, 'INVERSIONES PARIS LUNA SAC', '', '20565318315', '', '', 'AV. BENAVIDES #1566 MIRAFLORES LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5748', NULL, 'AMPARO', '00000000', '', '', '', 'AV. BENAVIDES #1566 MIRAFLORES LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5749', NULL, 'JOE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5750', NULL, 'MELITON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5751', NULL, 'olga velasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5752', NULL, 'CRISTIAN AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5753', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5754', NULL, 'olga velasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5755', NULL, 'roxana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5756', NULL, 'roxana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5757', NULL, 'roxana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5758', NULL, 'roxana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5759', NULL, 'roxana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5760', NULL, 'willians  cortes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5761', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5762', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5763', NULL, 'TEODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5764', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5765', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5766', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5767', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5768', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5769', NULL, 'HERMINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5770', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5771', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5772', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5773', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5774', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5775', NULL, 'ALEJANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5776', NULL, 'FELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5777', NULL, 'FELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5778', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5779', NULL, 'SILVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5780', NULL, 'angie', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5781', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5782', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5783', NULL, 'UNION ISRAELITA DEL PERU', '', '20127697508', '', '', 'CARLOS PORRAS OSORES # 210 SAN ISIDRO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5784', NULL, 'UNION ISRAELITA DEL PERU', '', '20127697508', '', '', 'CARLOS PORRAS OSORES # 210 SAN ISIDRO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5785', NULL, 'UNION ISRAELITA DEL PERU', '', '20127697508', '', '', 'CARLOS PORRAS OSORES # 210 SAN ISIDRO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5786', NULL, 'UNION ISRAELITA DEL PERU', '', '20127697508', '', '', 'CARLOS PORRAS OSORES # 210 SAN ISIDRO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5787', NULL, 'UNION ISRAELITA DEL PERU', '', '20127697508', '', '', 'CARLOS PORRAS OSORES # 210 SAN ISIDRO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5788', NULL, 'UNION ISRAELITA DEL PERU', '', '20127697508', '', '', 'CARLOS PORRAS OSORES # 210 SAN ISIDRO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5789', NULL, 'UNION ISRAELITA DEL PERU', '', '20127697508', '', '', 'CARLOS PORRAS OSORES # 210 SAN ISIDRO LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5790', NULL, 'ALEJANDRA MERINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5791', NULL, 'KENJI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5792', NULL, 'KENJI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5793', NULL, 'KENJI ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5794', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5795', NULL, 'MARGARITA POMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5796', NULL, 'MABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5797', NULL, 'CRISTIAN SALVADOR MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5798', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5799', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5800', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5801', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5802', NULL, 'elizabeth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5803', NULL, 'cabanillas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5804', NULL, 'enma nolasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5805', NULL, 'gelen huaranga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5806', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5807', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5808', NULL, 'sara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5809', NULL, 'sara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5810', NULL, 'sara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5811', NULL, 'NATALIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5812', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5813', NULL, 'VERONICA LEYVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5814', NULL, 'VERONICA LEYVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5815', NULL, 'VERONICA LEYVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5816', NULL, 'VERONICA LEYVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5817', NULL, 'VERONICA LEYVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5818', NULL, 'VERONICA LEYVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5819', NULL, 'VERONICA LEYVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5820', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5821', NULL, 'ADELAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5822', NULL, 'FELIX MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5823', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5824', NULL, 'EXILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5825', NULL, 'MARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5826', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5827', NULL, 'GUILLERMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5828', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5829', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5830', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5831', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5832', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5833', NULL, 'GUILLERMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5834', NULL, 'GUILLERMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5835', NULL, 'GULLERMA', '20040331', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5836', NULL, 'GULLERMA', '20040331', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5837', NULL, 'NORMA ANAHUA', '42333623', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5838', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5839', NULL, 'NOEMI OYOLA OLIVOS', '00364230', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5840', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5841', NULL, 'BRENDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5842', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5843', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5844', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5845', NULL, 'PEDRO COSME VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5846', NULL, 'PEDRO COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5847', NULL, 'YESI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5848', NULL, 'MIRIAN VALDEZ', '10510627', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5849', NULL, 'VICTOR MOLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5850', NULL, 'ALFREDO RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5851', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5852', NULL, 'MIRTA RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5853', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5854', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5855', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5856', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5857', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5858', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5859', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5860', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5861', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5862', NULL, 'VALENTINA BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5863', NULL, 'CLARISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5864', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5865', NULL, 'DANY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5866', NULL, 'DANY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5867', NULL, 'DANY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5868', NULL, 'DANY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5869', NULL, 'DANY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5870', NULL, 'DANY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5871', NULL, 'ELVA YANCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5872', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5873', NULL, 'aurea yauli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5874', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5875', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5876', NULL, 'JOBITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5877', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5878', NULL, 'vicente', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5879', NULL, 'HUGO SEGOVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5880', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5881', NULL, 'NORMA salas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5882', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5883', NULL, 'HECTOR PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5884', NULL, 'GEORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5885', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5886', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5887', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5888', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5889', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5890', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5891', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5892', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5893', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5894', NULL, 'NORMA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5895', NULL, 'MISTURA MARINA JJM SRL', '', '20601339791', '', '', 'MARIANO CARRANZA # 125 URB SANTA BEATRIZ LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5896', NULL, 'NORMA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5897', NULL, 'JULIA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5898', NULL, 'ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5899', NULL, 'MANUEL HUERTAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5900', NULL, 'JAVIER BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5901', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5902', NULL, 'MARICEL ALVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5903', NULL, 'RAUL RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5904', NULL, 'RAUL RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5905', NULL, 'RAUL RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5906', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5907', NULL, 'CATALINA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5908', NULL, 'MELBA ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5909', NULL, 'GIAN CARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5910', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5911', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5912', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5913', NULL, 'MAXIMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5914', NULL, 'CARMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5915', NULL, 'maricarmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5916', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5917', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5919', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5920', NULL, 'katerine FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5921', NULL, 'OLIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5922', NULL, 'OLIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5923', NULL, 'LUIS JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5924', NULL, 'MARIA ATENA', '00000000', '', '', '', 'MZA. B LOTE. 10 ASC. VIRGEN DEL ROSARIO LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5925', NULL, 'CECILIA ESTRADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5926', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5927', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5928', NULL, 'ELMER ROMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5929', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5930', NULL, 'NAHEZE S.A.C', '', '20544538251', '993310538', '', 'MZA. B LOTE. 10 ASC. VIRGEN DEL ROSARIO LIMA - LIMA - COMAS', '1', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5931', NULL, 'SAMY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5932', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5933', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5934', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5935', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5936', NULL, 'gladys', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5937', NULL, 'irma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5938', NULL, 'irma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5939', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5940', NULL, 'joselito', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5941', NULL, 'mirian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5942', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5943', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5944', NULL, 'MARTA CUELLAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5945', NULL, 'MARTA CUELLAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5946', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5947', NULL, 'ANDRES CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5948', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5949', NULL, 'NATIVIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5950', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5951', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5952', NULL, 'ANA POLINARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5953', NULL, 'DELICIAS REGIONALES DEL PERU S.A.C.', '', '20600667948', '', '', 'AV. SANTIAGO ANTUNEZ DE MAYOLO NRO. 835 URB. MERCURIO LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5954', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5955', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5956', NULL, 'BERISO E.I.R.L', '', '20602677622', '', '', 'AV. UNIVERSITARIA NRO. 47 INT. 100 (MERCADO PRODUCTORES MERPROLIMA) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5957', NULL, 'JOSEFA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5958', NULL, 'carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5959', NULL, 'sabina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5960', NULL, 'luiei', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5961', NULL, 'CARITAS & BACIGALUPO INGENIEROS Y ARQUITECTOS S.A.C. - ', '', '20525001092', '', '', 'AV. CAMINO REAL NRO. 340 COO. COOP 5 DE AGOSTO LIMA - LIMA - SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5962', NULL, 'CARITAS & BACIGALUPO INGENIEROS Y ARQUITECTOS S.A.C. - ', '', '20525001092', '', '', 'AV. CAMINO REAL NRO. 340 COO. COOP 5 DE AGOSTO LIMA - LIMA - SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5963', NULL, 'ana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5964', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5965', NULL, 'natividad capcha', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5966', NULL, 'teresita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5967', NULL, 'DOMITILA AMANQUI ARTEAGA', '', '10215084294', '925807440', '', 'PANAMERICANA SUR KM. 318 DISTRITO SANTIAGO- ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5968', NULL, 'LUIS BOJORQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5969', NULL, 'YACCHY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5970', NULL, 'YACCHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5971', NULL, 'INVERSIONES HOUSE CHICKEN S.A.C', '', '20432168213', '', '', 'JR. DOMINGO CUETO NRO. 444 URB. RISSO LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5972', NULL, 'INVERSIONES HOUSE CHICKEN S.A.C', '', '20432168213', '', '', 'AV ANTUNEZ DE MAYOLO 800 LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5973', NULL, 'INVERSIONES HOUSE CHICKEN S.A.C', '', '20432168213', '', '', 'AV ANTUNEZ DE MAYOLO 800 LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5974', NULL, 'INVERSIONES HOUSE CHICKEN S.A.C', '', '20432168213', '', '', 'AV ANTUNEZ DE MAYOLO 800 LOS OLIVOS LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5975', NULL, 'EUGENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5976', NULL, 'FRITCH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5977', NULL, 'FRITCH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5978', NULL, 'FRITCH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5979', NULL, 'DORIS GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5980', NULL, 'DK BEAL SOCIEDAD ANONIMA CERRADA', '', '20601059194', '', '', 'AV. GERONIMO DE ALIAGA SUR NRO. 202 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5981', NULL, 'MAYRA', '00000000', '', '', '', 'AV. GERONIMO DE ALIAGA SUR NRO. 202 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5982', NULL, 'MAYRA', '00000000', '', '', '', 'AV. GERONIMO DE ALIAGA SUR NRO. 202 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5983', NULL, 'ANIBAL', '00000000', '', '', '', 'AV. GERONIMO DE ALIAGA SUR NRO. 202 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5984', NULL, 'ANIBAL', '00000000', '', '', '', 'AV. GERONIMO DE ALIAGA SUR NRO. 202 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5985', NULL, 'ANIBAL', '00000000', '', '', '', 'AV. GERONIMO DE ALIAGA SUR NRO. 202 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5986', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5987', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5988', NULL, 'ISABEL IZAGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5989', NULL, 'ISABEL IZAGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5990', NULL, 'ISABEL IZAGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5991', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5992', NULL, 'ANTONIO PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5993', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5994', NULL, 'JC INVERSIONES Y SERVICIOS MULTIPLES E.I.R.L. - JC INV.', '', '20523218752', '', '', 'CAL.RIVAS NRO. 129 (A MEDIA CUADRA DE LA MUNICIPALIDAD) LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5995', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5996', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5997', NULL, 'JESUS MECHEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5998', NULL, 'JESUS MECHEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('5999', NULL, 'JESUS MECHEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6000', NULL, 'ANTONIO SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6001', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6002', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6003', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6004', NULL, 'angelo garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6005', NULL, 'livia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6006', NULL, 'DANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6007', NULL, 'DANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6008', NULL, 'angelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6009', NULL, 'JORGE CUBAS', '08527437', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6010', NULL, 'PROSPERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6011', NULL, 'KEYNER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6012', NULL, 'vanesa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6013', NULL, 'paula', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6014', NULL, 'mery', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6015', NULL, 'luz flores  trujillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6016', NULL, 'silvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6017', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6018', NULL, 'ALIPIO RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6019', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6020', NULL, 'ROSA SANTA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6021', NULL, 'SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6022', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6023', NULL, 'luz moran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6024', NULL, 'alexandra  huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6025', NULL, 'JOANA SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6026', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6027', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6028', NULL, 'JOANA SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6029', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6030', NULL, 'ELISA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6031', NULL, 'CAMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6032', NULL, 'ROSA  CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6033', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6034', NULL, 'JULIO RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6035', NULL, 'CARLOS SALVADOR VILLARBIN', '09433110', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6036', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6037', NULL, 'CARLOS VILLABIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6038', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6039', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6040', NULL, 'SENAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6041', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6042', NULL, 'MAYLIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6043', NULL, 'MARIA SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6044', NULL, 'MELISSA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6045', NULL, 'LUCERO MONTES ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6046', NULL, 'EDGARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6047', NULL, 'CARMEN TERE SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6048', NULL, 'eder ayala', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6049', NULL, 'eder ayala', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6050', NULL, 'EMILIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6051', NULL, 'ADA BARRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6052', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6053', NULL, 'ERLI RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6054', NULL, 'GIOVANA FIGUEROA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6055', NULL, 'secundina  abendaño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6056', NULL, 'JAZMIN SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6057', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6058', NULL, 'marisol', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6059', NULL, 'GONZALO ABRAHAN BERNAL SANTOLALLA', '', '10418870775', '', '', 'CALLE SAMOA  #310 LA MOLINA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6060', NULL, 'BERNAL SANTOLALLA GONZALO ABRAHAN', '', '10418870775', '', '', 'CALLE SAMOA 310- LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6061', NULL, 'BERNAL SANTOLALLA GONZALO ABRAHAN', '', '10418870775', '', '', 'CALLE SAMOA 310- LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6062', NULL, 'BERNAL SANTOLALLA GONZALO ABRAHAN', '', '10418870775', '', '', 'CALLE SAMOA 310- LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6063', NULL, 'alfredo pari quinto', '20995837', '', '', '', 'satipo-junin', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6064', NULL, 'rosa espinoza', '00000000', '', '', '', 'satipo-junin', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6065', NULL, 'BIANCA', '00000000', '', '', '', 'satipo-junin', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6066', NULL, 'FLOR PRINCIPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6067', NULL, 'CARLOS FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6068', NULL, 'RA MIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6069', NULL, 'MARIA CUTUPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6070', NULL, 'ISABEL CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6071', NULL, 'ISABEL CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6072', NULL, 'GILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6073', NULL, 'GILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6074', NULL, 'GILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6075', NULL, 'ELIAS SOLORZALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6076', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6077', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6078', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6079', NULL, 'JULIA BENITEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6080', NULL, 'JAVIER ARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6081', NULL, 'JAVIER ARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6082', NULL, 'MERCEDES PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6083', NULL, 'MERCEDES PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6084', NULL, 'HIDALGO PECHO FLOR DE ALBA', '', '10100355987', '', '', 'JR MENDOZA MERINO 190  CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6085', NULL, 'angela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6086', NULL, 'jose', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6087', NULL, 'LUIS', '42964369', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6088', NULL, 'rosario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6089', NULL, 'margarita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6090', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6091', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6092', NULL, 'ELMO CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6093', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6094', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6095', NULL, 'MIGUEL DONAYRE RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6096', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6097', NULL, 'OUTDOOR EXPLORER S.A.C.', '', '20602635041', '', '', 'AV. VICTOR SARRIA NRO. 1376 INT. 3DOP LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6098', NULL, 'OUTDOOR EXPLORER S.A.C.', '', '20602635041', '', '', 'AV. VICTOR SARRIA NRO. 1376 INT. 3DOP LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6099', NULL, 'JESSICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6100', NULL, 'JESSICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6101', NULL, 'LUENG', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6102', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6103', NULL, 'PJA RIO SUR E.I.R.L.', '', '20491409917', '', '', 'AV. SANTA ROSA NRO. SN INT. 42 MERCADO MODELO (FRENTE AL COLEGIO MEDALLA MILAGROSA) LIMA - CAÑETE - SAN VICENTE DE CAÑETE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6104', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6105', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6106', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6107', NULL, 'kenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6108', NULL, 'kenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6109', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6110', NULL, 'pilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6111', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6112', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6113', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6114', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6115', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6116', NULL, 'ANGELA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6117', NULL, 'ANGELA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6118', NULL, 'ANGELA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6119', NULL, 'ANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6120', NULL, 'PILAR  COTRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6121', NULL, 'PILAR  COTRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6122', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6123', NULL, 'SUELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6124', NULL, 'ALEJANDRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6125', NULL, 'GIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6126', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6127', NULL, 'ESTER VILLALVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6128', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6129', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6130', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6131', NULL, 'gloria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6132', NULL, 'LUCILA MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6133', NULL, 'GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6134', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6135', NULL, 'NANCY ESPINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6136', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6137', NULL, 'MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6138', NULL, 'SAMUEL GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6139', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6140', NULL, 'YENNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6141', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6142', NULL, 'PROJEKTAR SAC', '', '20510979550', '', '', 'AV JAIME HERRERA #178 PUEBLO LIBRE-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6143', NULL, 'VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6144', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6145', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6146', NULL, 'CIRILO LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6147', NULL, 'DEYANIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6148', NULL, 'DEYANIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6149', NULL, 'mery', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6150', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6151', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6152', NULL, 'EMPRESA COMERCIAL Y DE SERVICIOS GENERALES GENESIS S.A.', '', '20552097239', '', '', 'CAL.JACARANDAS MZA. K LOTE. 10B2 Z.I. HUACHIPA (0) LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6153', NULL, 'EMPRESA COMERCIAL Y DE SERVICIOS GENERALES GENESIS S.A.', '', '20552097239', '', '', 'CAL.JACARANDAS MZA. K LOTE. 10B2 Z.I. HUACHIPA (0) LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6154', NULL, 'EMPRESA COMERCIAL Y DE SERVICIOS GENERALES GENESIS S.A.', '', '20552097239', '', '', 'CAL.JACARANDAS MZA. K LOTE. 10B2 Z.I. HUACHIPA (0) LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6155', NULL, 'NUTRA S.A.', '', '20144215649', '', '', 'CAL.CAMINO REAL 1801 MZA. A LOTE. 4 Z.I. PARQUE INDUSTRIAL SAN PEDRITO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6156', NULL, 'deysi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6157', NULL, 'orlando garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6158', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6159', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6160', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6161', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6162', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6163', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6164', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6165', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6166', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6167', NULL, 'MARIA  ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6168', NULL, 'SALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6169', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6170', NULL, 'REBECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6171', NULL, 'REBECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6172', NULL, 'SILVANA  PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6173', NULL, 'MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6174', NULL, 'MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6175', NULL, 'MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6176', NULL, 'FERNANDO VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6177', NULL, 'MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6178', NULL, 'FERNANDO VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6179', NULL, 'FERNANDO VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6180', NULL, 'FERNANDO VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6181', NULL, 'FERNANDO VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6182', NULL, 'MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6183', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6184', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6185', NULL, 'ROBERT LENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6186', NULL, 'JUDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6187', NULL, 'DAYANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6188', NULL, 'DAYANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6189', NULL, 'GILDA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6190', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6191', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6192', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6193', NULL, 'karina salas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6194', NULL, 'cesar lizardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6195', NULL, 'flor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6196', NULL, 'wilfredo luyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6197', NULL, 'pool', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6198', NULL, 'pool', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6199', NULL, 'jarol', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6200', NULL, 'harol montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6201', NULL, 'ALICIA GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6202', NULL, 'ALICIA GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6203', NULL, 'armando bravo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6204', NULL, 'lucy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6205', NULL, 'KARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6206', NULL, 'JESUS CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6207', NULL, 'VICTOR TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6208', NULL, 'VICTOR TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6209', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6210', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6211', NULL, 'MARCO CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6212', NULL, 'MARCO CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6213', NULL, 'GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6214', NULL, 'GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6215', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6216', NULL, 'MARIA LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6217', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6218', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6219', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6220', NULL, 'JOSE TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6221', NULL, 'MACARENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6222', NULL, 'RONALDO ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6223', NULL, 'RONALDO ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6224', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6225', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6226', NULL, 'ASTRID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6227', NULL, 'ASTRID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6228', NULL, 'ASTRID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6229', NULL, 'EBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6230', NULL, 'ANA PACHECO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6231', NULL, 'SANDRA CABANILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6232', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6233', NULL, 'RODOLFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6234', NULL, 'ARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6235', NULL, 'YENY GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6236', NULL, 'LUIS MIGUEL ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6237', NULL, 'GUSTAVO  QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6238', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6239', NULL, 'ELMA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6240', NULL, 'AIDA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6241', NULL, 'AIDA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6242', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6243', NULL, 'GUSTAVO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6244', NULL, 'UMBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6245', NULL, 'HUMBERTO CHERRES', '25683601', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6246', NULL, 'JAQUELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6247', NULL, 'JAQUELINE MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6248', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6249', NULL, 'CAROLINA ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6250', NULL, 'LOY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6251', NULL, 'JORGE FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6252', NULL, 'JORGE FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6253', NULL, 'JORGE FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6254', NULL, 'JORGE FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6255', NULL, 'BLANCA PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6256', NULL, 'MANUEL ZAMORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6257', NULL, 'LUCIA GUERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6258', NULL, 'luis peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6259', NULL, 'NICOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6260', NULL, 'MARIA MACHADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6261', NULL, 'nelida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6262', NULL, 'mireya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6263', NULL, 'alicia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6264', NULL, 'mariela medrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6265', NULL, 'EVER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6266', NULL, 'VICTOR GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6267', NULL, 'JEINER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6268', NULL, 'JACKELINE PINARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6269', NULL, 'JORGE ELVIS CRISTOBAL DAVILA', '', '10003284561', '', '', 'FAUSTINO PIAGGIO #950 ZORRITOS CONTRA ALMIRANTE VILLAR', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6270', NULL, 'DIANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6271', NULL, 'DIANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6272', NULL, 'DIANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6273', NULL, 'DIANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6274', NULL, 'JUAN PINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6275', NULL, 'RENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6276', NULL, 'CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6277', NULL, 'REBECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6278', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6279', NULL, 'MIGUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6280', NULL, 'FRANCISCO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6281', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6282', NULL, 'DELCI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6283', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6284', NULL, 'CINTHYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6285', NULL, 'CINTHYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6286', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6287', NULL, 'MARCOS MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6288', NULL, 'CARLA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6289', NULL, 'LOPEZ RODRIGUEZ YAQUEÑLINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6290', NULL, 'MARIA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6291', NULL, 'MARIA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6292', NULL, 'MARIA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6293', NULL, 'MARIA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6294', NULL, 'MARIA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6295', NULL, 'MARIA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6296', NULL, 'MARIA NICOLICH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6297', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6298', NULL, 'MARGOTH SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6299', NULL, 'MARGOTH SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6300', NULL, 'SANTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6301', NULL, 'JULIANA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6302', NULL, 'JULIANA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6303', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6304', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6305', NULL, 'FLOR ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6306', NULL, 'JULIANA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6307', NULL, 'VALERIA DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6308', NULL, 'ADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6309', NULL, 'ADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6310', NULL, 'ADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6311', NULL, 'EVELYN CHIRINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6312', NULL, 'JULIANA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6313', NULL, 'JULIANA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6314', NULL, 'LIDIA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6315', NULL, 'ARACELY MALDONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6316', NULL, 'MELANIA REYMONDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6317', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6318', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6319', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6320', NULL, 'ALICIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6321', NULL, 'ALICIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6322', NULL, 'ALICIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6323', NULL, 'OSCAR RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6324', NULL, 'OSCAR RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6325', NULL, 'OSCAR RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6326', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6327', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6328', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6329', NULL, 'MARIA VILLAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6330', NULL, 'MARIA VILLAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6331', NULL, 'ZAYURI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6332', NULL, 'ZAYURI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6333', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6334', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6335', NULL, 'patricia zegarra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6336', NULL, 'patricia zegarra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6337', NULL, 'PATRICIA ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6338', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6339', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6340', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6341', NULL, 'ROSA SAMANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6342', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6343', NULL, 'MELAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6344', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6345', NULL, 'CLARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6346', NULL, 'TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6347', NULL, 'MARIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6348', NULL, 'STEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6349', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6350', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6351', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6352', NULL, 'FRANCO MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6353', NULL, 'CARLOS CORONEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6354', NULL, 'ENRIQUE LA TORRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6355', NULL, 'MARIA GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6356', NULL, 'FRANCISCA VALDERRAMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6357', NULL, 'DELIA PRIMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6358', NULL, 'YENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6359', NULL, 'NANCY UGARTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6360', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6361', NULL, 'RMEN PAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6362', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6363', NULL, 'JUAQUIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6364', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6365', NULL, 'ORDAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6366', NULL, 'ORDAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6367', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6368', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6369', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6370', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6371', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6372', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6373', NULL, 'YULIANA ARANCEL CARDENAS', '45680142', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6374', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6375', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6376', NULL, 'benito pari', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6377', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6378', NULL, 'celina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6379', NULL, 'pilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6380', NULL, 'susan alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6381', NULL, 'CEFERINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6382', NULL, 'CEFERINO MARQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6383', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6384', NULL, 'ANGEL BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6385', NULL, 'CELESTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6386', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6387', NULL, 'ISABEL SOLANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6388', NULL, 'RAUL ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6389', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6390', NULL, 'ALEJANDRINA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6391', NULL, 'DIANA ALIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6392', NULL, 'GABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6393', NULL, 'GABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6394', NULL, 'GUISELLA CAMONES', '40124579', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6395', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6396', NULL, 'fredy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6397', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6398', NULL, 'BARTRA MEJIA VANESSA JAHAIDA', '', '10107989311', '', '', 'jr cangallo 145 lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6399', NULL, 'VERONICA', '00000000', '', '', '', 'jr cangallo 145 lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6400', NULL, 'EDWIN ESCOBAR', '23274323', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6401', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6402', NULL, 'FLORA MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6403', NULL, 'LIDIA DOMINGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6404', NULL, 'PERCY PAREDES CORILLA', '21537508', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6405', NULL, 'cecilia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6406', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6407', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6408', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6409', NULL, 'daniel mendo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6410', NULL, 'gladys', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6411', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6412', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6413', NULL, 'ANIMALITA E.I.R.L.', '', '20563326779', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6414', NULL, 'ANIMALITA E.I.R.L.', '', '20563326779', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6415', NULL, 'ANIMALITA E.I.R.L.', '', '20563326779', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6416', NULL, 'ANIMALITA E.I.R.L.', '', '20563326779', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6417', NULL, 'vicenta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6418', NULL, 'vicenta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6419', NULL, 'SARA MATOS', '00000000', '', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6420', NULL, 'maribel mamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6421', NULL, 'JACINTA', '00000000', '', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6422', NULL, 'JACINTA', '00000000', '', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6423', NULL, 'benito choque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6424', NULL, 'ROXANA', '00000000', '', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6425', NULL, 'ROXANA', '00000000', '', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6426', NULL, 'JENY', '00000000', '', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6427', NULL, 'JENY', '00000000', '', '', '', 'AV. ALFREDO BENAVIDES NRO. 540 DPTO. 203 (ESQUINA CON JR. ALCANFORES) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6428', NULL, 'eugenia vilca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6429', NULL, 'eufracia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6430', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6431', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6432', NULL, 'JOSEP', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6433', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6434', NULL, 'MAX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6435', NULL, 'SEGUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6436', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6437', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6438', NULL, 'MARIBEL ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6439', NULL, 'MARIBEL ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6440', NULL, 'ANGEL MORAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6441', NULL, 'PATRICIA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6442', NULL, 'BENILDA IGILDIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6443', NULL, 'BENILDA IGILDIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6444', NULL, 'BENILDA IGILDIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6445', NULL, 'BENILDA IGILDIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6446', NULL, 'JHON VALDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6447', NULL, 'ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6448', NULL, 'ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6449', NULL, 'GERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6450', NULL, 'GERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6451', NULL, 'CERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6452', NULL, 'AIDE HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6453', NULL, 'GIOVANA CARPÍO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6454', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6455', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6456', NULL, 'HECTOR RAMIREZ  MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6457', NULL, 'HECTOR RAMIREZ  MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6458', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6459', NULL, 'JORJE LUIS CHERO CAMPOS', '', '10418680836', '', '', 'CALLE SANTOS ZAMUDIO #125 V.M.T LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6460', NULL, 'CHERO CAMPOS JORGE LUIS', '', '10418680836', '', '', 'CALLE SANTOS ZAMUDIO #125 V.M.T LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6461', NULL, 'MARITA TERRONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6462', NULL, 'VICTOR MERINO', '00000000', '', '', '', 'CALLE SANTOS ZAMUDIO #125 V.M.T LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6463', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6464', NULL, 'iris', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6465', NULL, 'YENNI', '00000000', '', '', '', 'CALLE SANTOS ZAMUDIO #125 V.M.T LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6466', NULL, 'YENNI', '00000000', '', '', '', 'CALLE SANTOS ZAMUDIO #125 V.M.T LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6467', NULL, 'WILIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6468', NULL, 'ERCK MEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6469', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6470', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6471', NULL, 'VICKY GONSALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6472', NULL, 'VICKY GONSALO SORIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6473', NULL, 'HAJIMARI E.I.R.L.', '', '20603172851', '', '', 'AV. DOMINGO ORUE NRO. 649 DPTO. A204 (EDIFI 13-CONDOMINIO JARDINES DE ARAMBURU) LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6474', NULL, 'MARIBEL', '00000000', '', '', '', 'AV. DOMINGO ORUE NRO. 649 DPTO. A204 (EDIFI 13-CONDOMINIO JARDINES DE ARAMBURU) LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6475', NULL, 'FRANK', '00000000', '', '', '', 'AV. DOMINGO ORUE NRO. 649 DPTO. A204 (EDIFI 13-CONDOMINIO JARDINES DE ARAMBURU) LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6476', NULL, 'JULIO VALDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6477', NULL, 'CLAUDIA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6478', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6479', NULL, 'PEDRO PUESCAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6480', NULL, 'JUAN CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6481', NULL, 'JUAN CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6482', NULL, 'JUAN CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6483', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6484', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6485', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6486', NULL, 'CAROLINA CORONEL ARCE', '02423877', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6487', NULL, 'OLGA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6488', NULL, 'susan diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6489', NULL, 'susan diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6490', NULL, 'reyna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6491', NULL, 'YALUD MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6492', NULL, 'MARCO YAPU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6493', NULL, 'ROSA GUTARRA ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6494', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6495', NULL, 'LUZ AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6496', NULL, 'vanasa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6497', NULL, 'MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6498', NULL, 'gloria rosales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6499', NULL, 'MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6500', NULL, 'MIRTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6501', NULL, 'QUISPE PEREZ JESSENA YANETT', '', '10401545625', '', '', 'C.C. LAS BRISAS DE ATE TDA. 45 -2do PISO- ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6502', NULL, 'mercedes apolo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6503', NULL, 'PEDRO HERNANDEZ', '09372969', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6504', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6505', NULL, 'noemi calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6506', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6507', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6508', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6509', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6510', NULL, 'HAMILTON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6511', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6512', NULL, 'GLORIA ALFARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6513', NULL, 'SUSY CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6514', NULL, 'LOURDES CHIPANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6515', NULL, 'MARISOL MATOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6516', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6517', NULL, 'ALCIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6518', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6519', NULL, 'GLADYS  MASGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6520', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6521', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6522', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6523', NULL, 'LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6524', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6525', NULL, 'JORGE CABALLERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6526', NULL, 'RAUL MARTEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6527', NULL, 'JOSE UGARTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6528', NULL, 'JOSE UGARTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6529', NULL, 'LILIANA PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6530', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6531', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6532', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6533', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6534', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6535', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6536', NULL, 'MIGUEL INGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6537', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6538', NULL, 'LISE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6539', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6540', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6541', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6542', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6543', NULL, 'angeñlina ochoa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6544', NULL, 'NATIVIDAD SULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6545', NULL, 'NATIVIDAD SULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6546', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6547', NULL, 'delia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6548', NULL, 'maqrgarita gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6549', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6550', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6551', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6552', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6553', NULL, 'sandra sifuentes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6554', NULL, 'GLORIA LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6555', NULL, 'korina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6556', NULL, 'enma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6557', NULL, 'MARINA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6558', NULL, 'MARINA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6559', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6560', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6561', NULL, 'LUCIA GAVILAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6562', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6563', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6564', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6565', NULL, 'LALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6566', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6567', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6568', NULL, 'CLARISA MANCO', '15434627', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6569', NULL, 'MANUEL CABRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6570', NULL, 'JULIO GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6571', NULL, 'AUGUSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6572', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6573', NULL, 'QALICIA URIBE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6574', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6575', NULL, 'JUAN CARLOS ADRIANO MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6576', NULL, 'VERONICA  ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6577', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6578', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6579', NULL, 'DALISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6580', NULL, 'DALISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6581', NULL, 'DALISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6582', NULL, 'DALISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6583', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6584', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6585', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6586', NULL, 'MARY LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6587', NULL, 'CORPORACION MULTISERVICIOS SANTI S.A.C.', '', '20603528639', '', '', 'JR. SANTIAGO ANTUNEZ DE MAYOLO NRO. 268 URB. PABLO BONER (CASA DE 3 PISOS) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6588', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6589', NULL, 'MELISA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6590', NULL, 'JIMENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6591', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6592', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6593', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6594', NULL, 'CORPORACION MULTISERVICIOS SANTI S.A.C.', '', '20603528639', '', '', 'JR. SANTIAGO ANTUNEZ DE MAYOLO NRO. 268 URB. PABLO BONER (CASA DE 3 PISOS) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6595', NULL, 'jorge sanchez gamarra', '00000000', '', '', '', 'JR. SANTIAGO ANTUNEZ DE MAYOLO NRO. 268 URB. PABLO BONER (CASA DE 3 PISOS) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6596', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6597', NULL, 'morayma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6598', NULL, 'gonzalez lopez alvaro javier', '08880950', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6599', NULL, 'norma luna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6600', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6601', NULL, 'marco antonio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6602', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6603', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6604', NULL, 'MICHEL MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6605', NULL, 'juan centeno', '00000000', '', '', '', 'JR. SANTIAGO ANTUNEZ DE MAYOLO NRO. 268 URB. PABLO BONER (CASA DE 3 PISOS) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6606', NULL, 'lidia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6607', NULL, 'ricardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6608', NULL, 'VICTOR CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6609', NULL, 'ROSARIO COLLAZOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6610', NULL, 'LUCILA PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6611', NULL, 'DANIXA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6612', NULL, 'DANIXA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6613', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6614', NULL, 'MARGORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6615', NULL, 'MARCELINO LOZANO VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6616', NULL, 'MARCELINO LOZANO VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6617', NULL, 'CRISTIAN MAESTRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6618', NULL, 'CRISTIAN MANRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6619', NULL, 'CRISTIAN MAESTRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6620', NULL, 'FLAVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6621', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6622', NULL, 'ERIC DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6623', NULL, 'MA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6624', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6625', NULL, 'JUDY AGUERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6626', NULL, 'JUDY AGUERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6627', NULL, 'jonet', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6628', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6629', NULL, 'CRISTOFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6630', NULL, 'ALEXIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6631', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6632', NULL, 'JUDITH CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6633', NULL, 'BILMA VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6634', NULL, 'VIOLETA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6635', NULL, 'VIOLETA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6636', NULL, 'FLOR HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6637', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6638', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6639', NULL, 'TANIA ARROYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6640', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6641', NULL, 'TANIA ARROYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6642', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6643', NULL, 'ROSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6644', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6645', NULL, 'ALAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6646', NULL, 'LOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6647', NULL, 'WILDER MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6648', NULL, 'WILDER MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6649', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6650', NULL, 'MIKUY MARKET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6651', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6652', NULL, 'RUBEN VALENZUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6653', NULL, 'RUBEN VALENZUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6654', NULL, 'TANO LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6655', NULL, 'TANO LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6656', NULL, 'LUIS CANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6657', NULL, 'CRISTIAN LEIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6658', NULL, 'josie', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6659', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6660', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6661', NULL, 'MARCO IGLESIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6662', NULL, 'MARCO IGLESIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6663', NULL, 'MARCO IGLESIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6664', NULL, 'MARCELINA MALPARTIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6665', NULL, 'MONICA RETAMOSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6666', NULL, 'PAULINA TTUPA  HUALLPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6667', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6668', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6669', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6670', NULL, 'LADY LUCHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6671', NULL, 'LADY LUCHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6672', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6673', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6674', NULL, 'WALVER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6675', NULL, 'MARIA FE BARRETT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6676', NULL, 'MARIA FE BARRETT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6677', NULL, 'JULIA MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6678', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6679', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6680', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6681', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6682', NULL, 'ALBERTO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6683', NULL, 'ALBERTO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6684', NULL, 'ALBERTO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6685', NULL, 'ALBERTO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6686', NULL, 'GENIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6687', NULL, 'GENIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6688', NULL, 'GUSTAVO MORAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6689', NULL, 'DELIA OCHOA', '25487888', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6690', NULL, 'WALTER HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6691', NULL, 'WALTER HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6692', NULL, 'BEATRIZ RAMOS', '07530261', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6693', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6694', NULL, 'ROSA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6695', NULL, 'MARGARITA GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6696', NULL, 'JOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6697', NULL, 'VANESA ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6698', NULL, 'JOSE LUIS NARVAES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6699', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6700', NULL, 'LIDIA PETRONILA CHAPPA CHUQUIZUTA', '', '10072217166', '', '', 'ARNANDO MARQUEZ #1279 JESUS MARIA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6701', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6702', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6703', NULL, 'ALVARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6704', NULL, 'FATIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6705', NULL, 'enrique castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6706', NULL, 'andrea savedra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6707', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6708', NULL, 'VERASTEGUI LOPEZ WILLIAM PEDRO', '', '10103963058', '', '', 'calle juan castro 298 santa lusmila -comas', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6709', NULL, 'ROSA ROQUE', '42082068', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6710', NULL, 'mirian mendoza', '00000000', '', '', '', 'calle juan castro 298 santa lusmila -comas', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6711', NULL, 'FANY', '00000000', '', '', '', 'calle juan castro 298 santa lusmila -comas', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6712', NULL, 'FANY', '00000000', '', '', '', 'calle juan castro 298 santa lusmila -comas', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6713', NULL, 'MARIA MOQUILLAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6714', NULL, 'MARIA ARROYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6715', NULL, 'jamil', '00000000', '', '', '', 'calle juan castro 298 santa lusmila -comas', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6716', NULL, 'jamil', '00000000', '', '', '', 'calle juan castro 298 santa lusmila -comas', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6717', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6718', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6719', NULL, 'ELADIO CUCVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6720', NULL, 'ELADIO CUCVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6721', NULL, 'ELADIO CUCVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6722', NULL, 'ELADIO CUCVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6723', NULL, 'ELADIO CUCVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6724', NULL, 'ELADIO CUCVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6725', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6726', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6727', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6728', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6729', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6730', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6731', NULL, 'FRANCISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6732', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6733', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6734', NULL, 'MARIA BONILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6735', NULL, 'ABEL YATACO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6736', NULL, 'OSCAR PARRAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6737', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6738', NULL, 'YESICA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6739', NULL, 'MARINA MANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6740', NULL, 'LENIN ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6741', NULL, 'GEIMI ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6742', NULL, 'WILIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6743', NULL, 'RUSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6744', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6745', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6746', NULL, 'NELY VIDELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6747', NULL, 'NELY VIDELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6748', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6749', NULL, 'SEGUNDINA CANALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6750', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6751', NULL, 'HUARHUA FERNANDEZ LUIS ALBERTO', '', '10418765220', '', '', 'CALLE SAN PEDRO 176 SEGUNDA ZONA URB TAHUANTINSUYO INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6752', NULL, 'PAOLA ROCANO CARO', '00000000', '', '', '', 'CALLE SAN PEDRO 176 SEGUNDA ZONA URB TAHUANTINSUYO INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6753', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6754', NULL, 'SEGUNDINA CANALES', '00000000', '', '', '', 'CALLE SAN PEDRO 176 SEGUNDA ZONA URB TAHUANTINSUYO INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6755', NULL, 'ANCA ANTAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6756', NULL, 'MELISA VARGAS', '00000000', '', '', '', 'CALLE SAN PEDRO 176 SEGUNDA ZONA URB TAHUANTINSUYO INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6757', NULL, 'LUIS ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6758', NULL, 'MILER FALCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6759', NULL, 'GLADIS PORTUGAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6760', NULL, 'ÑAHUI CASTILLO CARLOS DAVID', '', '10420098362', '', '', 'JR GARCIA NARANJO 060 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6761', NULL, 'ROSA VALENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6762', NULL, 'YENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6763', NULL, 'ALEXANDRA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6764', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6765', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6766', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6767', NULL, 'CARMELA CAMPPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6768', NULL, 'molina mak s.r.l', '', '20553480575', '', '', 'jr. cesar vgallejo # 398 universal santa anita-lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6769', NULL, 'cabañas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6770', NULL, 'LEYDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6771', NULL, 'daniel peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6772', NULL, 'PABLO CALIXTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6773', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6774', NULL, 'ROCIO MUNAYCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6775', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6776', NULL, 'CARLOS SANTILLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6777', NULL, 'ruth rodas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6778', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6779', NULL, 'sara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6780', NULL, 'SINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6781', NULL, 'SINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6782', NULL, 'armandina villanueva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6783', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6784', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6785', NULL, 'patricia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6786', NULL, 'soledad salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6787', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6788', NULL, 'CONEXIONES FAJAS Y MANGUERAS S.A.C', '', '20518059689', '', '', 'CALLE PEDRO VILLALOBOS 1168 SAN JUAN DE MIRAFLORES LIMA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6789', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6790', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6791', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6792', NULL, 'DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6793', NULL, 'PEDRO GUERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6794', NULL, 'AMPARO PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6795', NULL, 'KARINA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6796', NULL, 'KARINA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6797', NULL, 'EDIWN HURTADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6798', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6799', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6800', NULL, 'ESTHER QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6801', NULL, 'ESTHER QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6802', NULL, 'MARINA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6803', NULL, 'MARINA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6804', NULL, 'FELICIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6805', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6806', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6807', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6808', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6809', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6810', NULL, 'GUISELLA MANTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6811', NULL, 'DIANA LINARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6812', NULL, 'DIANA LINARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6813', NULL, 'EUGENIO PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6814', NULL, 'CARLOS GARAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6815', NULL, 'VICTOR GUTARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6816', NULL, 'FÉNIX DEL PERÚ SRL', '', '20515784811', '', '', 'CAL.1 ESTE MZA. C LOTE. 22 URB. LOS GIRASOLES (ALT CDRA 15 DE LA AV LOS FRESNOS) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6817', NULL, 'MARCELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6818', NULL, 'BEATRIZ QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6819', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6820', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6821', NULL, 'MOISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6822', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6823', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6824', NULL, 'JUANA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6825', NULL, 'TEOFILO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6826', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6827', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6828', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6829', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6830', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6831', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6832', NULL, 'MILAGROS ROSADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6833', NULL, 'DINA ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6834', NULL, 'DINA ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6835', NULL, 'DINA ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6836', NULL, 'YENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6837', NULL, 'wilian rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6838', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6839', NULL, 'PATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6840', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6841', NULL, 'MOISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6842', NULL, 'JORGE PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6843', NULL, '{CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6844', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6845', NULL, 'HONESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6846', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6847', NULL, 'THOMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6848', NULL, 'MARIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6849', NULL, 'LOURDES RIMAS', '40178378', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6850', NULL, 'ROSA  MEDINA SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6851', NULL, 'LILIAN GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6852', NULL, 'jose', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6853', NULL, 'SEGUNDO REGALADO OCHOA', '', '10273645883', '', '', 'JR. 30 DE AGOSTO #713 CHOTA CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6854', NULL, 'LYANA', '00000000', '', '', '', 'JR. 30 DE AGOSTO #713 CHOTA CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6855', NULL, 'jorge', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6856', NULL, 'DELIA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6857', NULL, 'elisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6858', NULL, 'alberto solorzano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6859', NULL, 'LILIANA ALIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6860', NULL, 'aleja', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6861', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6862', NULL, 'AYDE AGUILAR DE APESTILE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6863', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6864', NULL, 'maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6865', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6866', NULL, 'JACKELINEURIBE', '40021480', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6867', NULL, 'JOSE ROCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6868', NULL, 'DAVID ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6869', NULL, 'CESAR ELESCANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6870', NULL, 'KATTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6871', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6872', NULL, 'ELVIS AGUILAR', '10212491', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6873', NULL, 'YENI ALAMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6874', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6875', NULL, 'FRANCISCA CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6876', NULL, 'GRICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6877', NULL, 'CRISTINA YURI PALOMINO PIÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6878', NULL, 'LIDIA ALLCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6879', NULL, 'BIENES Y SERVICIOS CORPORATIVOS G & A SOCIEDAD ANONIMA ', '', '20601583977', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6880', NULL, 'MARIA ANGULO', '00000000', '', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6881', NULL, 'LLOVANA', '00000000', '', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6882', NULL, 'ODALIS GUERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6883', NULL, 'CESAR ARELLANO', '00000000', '', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6884', NULL, 'SIFUENTES', '00000000', '', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6885', NULL, 'NELY RODRIGUEZ', '00000000', '', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6886', NULL, 'EDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6887', NULL, 'MARIELENA MARQUEZ', '00000000', '', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6888', NULL, 'SONIA MORALES', '00000000', '', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6889', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6890', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6891', NULL, 'EBER ROMERO', '40958786', '', '', '', 'MZA. B LOTE. 21 URB. VIÑAS DE AMERICA-OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6892', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6893', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6894', NULL, 'JUAN TANTALEAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6895', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6896', NULL, 'ROSA SAMANIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6897', NULL, 'SAMUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6898', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6899', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6900', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6901', NULL, 'BRAULIO MADERA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6902', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6903', NULL, 'sarai', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6904', NULL, 'JEFERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6905', NULL, 'DORA GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6906', NULL, 'LINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6907', NULL, 'ROSA PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6908', NULL, 'DORA GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6909', NULL, 'jonathan OLIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6910', NULL, 'TEVES QUISPE JULIA', '', '10238657992', '', '', 'URB MANZANARES A5 CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6911', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6912', NULL, 'FRIDA', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6913', NULL, 'ALBERTINA DE LA CRUZ', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6914', NULL, 'CARMEN', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6915', NULL, 'CARMEN', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6916', NULL, 'JAVIER PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6917', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6918', NULL, 'SULI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6919', NULL, 'SULLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6920', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6921', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6922', NULL, 'MAGALY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6923', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6924', NULL, 'ISABEL PAJUELO VALASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6925', NULL, 'ISABEL PAJUELO VALASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6926', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6927', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6928', NULL, 'DINA DE LOS SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6929', NULL, 'ÑAHUI CASTILLO CARLOS DAVID', '', '10420098362', '', '', 'JR GARCIA NARANJO 060 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6930', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6931', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6932', NULL, 'MAXIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6933', NULL, 'ADRIANA', '00000000', '', '', '', 'JR GARCIA NARANJO 060 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6934', NULL, 'TICLLA', '27352045', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6935', NULL, 'EDELMIRA TICLLA DE CONDOR', '27372045', '', '', '', 'CHOTA-CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6936', NULL, 'NICOLAS BARRA  GARCIA', '09076846', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6937', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6938', NULL, 'LUIS RENDON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6939', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6940', NULL, 'PIER HINOSTROZA', '43204151', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6941', NULL, 'PIER HINOSTROZA', '43204151', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6942', NULL, 'PIER HINOSTROZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6943', NULL, 'ESTER APEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6944', NULL, 'MARILUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6945', NULL, 'OLEONICIA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6946', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6947', NULL, 'EUDALDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6948', NULL, 'ANDES SERRONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6949', NULL, 'FERNANDO NOLE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6950', NULL, 'FERNANDO NOLE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6951', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6952', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6953', NULL, 'PILAR LIMAS', '41845918', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6954', NULL, 'GUZMAN SUICA SHEENA LIANEN', '', '10427199873', '', '', 'CALLECERDEÑA- A.H. PROYECTOS ESPECIALES MZA. 60LOTE 24LIMA-LIMA-SJL', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6955', NULL, 'EDWIN MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6956', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6957', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6958', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6959', NULL, 'SEGUNDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6960', NULL, 'SEGUNDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6961', NULL, 'SEGUNDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6962', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6963', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6964', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6965', NULL, 'cristina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6966', NULL, 'cristina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6967', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6968', NULL, 'KARINA MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6969', NULL, 'KARINA MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6970', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6971', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6972', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6973', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6974', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6975', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6976', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6977', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6978', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6979', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6980', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6981', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6982', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6983', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6984', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6985', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6986', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6987', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6988', NULL, 'ANDERSON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6989', NULL, 'ROCIO MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6990', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6991', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6992', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6993', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6994', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6995', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6996', NULL, 'ASOCIACION DE PROPIETARIOS DE LA GALERIA MESA REDONDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6997', NULL, 'KEILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6998', NULL, 'KEILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('6999', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7000', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7001', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7002', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7003', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7004', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7005', NULL, 'JESICA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7006', NULL, 'FELIX DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7007', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7008', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7009', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7010', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7011', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7012', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7013', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7014', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7015', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7016', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7017', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7018', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7019', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7020', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7021', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7022', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7023', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7024', NULL, 'yackeline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7025', NULL, 'JOEL QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7026', NULL, 'SUSI SERNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7027', NULL, 'orlando COAQUIRA FLORES', '09948557', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7028', NULL, 'OLGA MARILU', '08870531', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7029', NULL, 'OLGA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7030', NULL, 'OLGA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7031', NULL, 'BERTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7032', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7033', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7034', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7035', NULL, 'EDGAR BARRON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7036', NULL, 'EDGAR BARRON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7037', NULL, 'BERTA PACCO TITO', '09152354', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7038', NULL, 'VERONICA CONTRERAS ISLA', '42997068', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7039', NULL, 'DARIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7040', NULL, 'DARIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7041', NULL, 'DARIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7042', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7043', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7044', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7045', NULL, 'JUAN GUZMAN', '40098943', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7046', NULL, 'FRANK  VASQUEZ', '41446945', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7047', NULL, 'TOMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7048', NULL, 'TOMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7049', NULL, 'TOMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7050', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7051', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7052', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7053', NULL, 'ELENA ALMEIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7054', NULL, 'ELENA ALMEIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7055', NULL, 'EDITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7056', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7057', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7058', NULL, 'ESTER GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7059', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7060', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7061', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7062', NULL, 'TITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7063', NULL, 'TITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7064', NULL, 'NORA GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7065', NULL, 'OSWALDO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7066', NULL, 'OSWALDO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7067', NULL, 'ESTEBAN ÑIQUEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7068', NULL, 'MERIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7069', NULL, 'ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7070', NULL, 'ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7071', NULL, 'ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7072', NULL, 'PEDRO VALQUI', '06855121', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7073', NULL, 'INES GIOVANA TRIBEÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7074', NULL, 'ROSA RIVAS AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7075', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7076', NULL, 'TEOFILA PARIAPASA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7077', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7078', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7079', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7080', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7081', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7082', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7083', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7084', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7085', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7086', NULL, 'ISABEL NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7087', NULL, 'ISABEL NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7088', NULL, 'BRISET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7089', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7090', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7091', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7092', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7093', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7094', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7095', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7096', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7097', NULL, 'MARCELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7098', NULL, 'nelida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7099', NULL, 'nelida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7100', NULL, 'CORTEZ RAMOS JUAN CARLOS', '', '10099343619', '', '', 'PASAJE OLAVIDE 248 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7101', NULL, 'SANDRA INCA', '00000000', '', '', '', 'PASAJE OLAVIDE 248 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7102', NULL, 'SANDRA INCA', '00000000', '', '', '', 'PASAJE OLAVIDE 248 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7103', NULL, 'VICTOR MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7104', NULL, 'VICTOR MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7105', NULL, 'VICTOR MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7106', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7107', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7108', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7109', NULL, 'JORGE HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7110', NULL, 'JORGE HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7111', NULL, 'OLVER OSORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7112', NULL, 'CEFERINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7113', NULL, 'CEFERINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7114', NULL, 'CARLOS FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7115', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7116', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7117', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7118', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7119', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7120', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7121', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7122', NULL, 'GROVER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7123', NULL, 'ANA TERRONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7124', NULL, 'PATRICIA CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7125', NULL, 'VICTOR VILCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7126', NULL, 'VICTOR VILCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7127', NULL, 'ELSA CULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7128', NULL, 'ELSA CULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7129', NULL, 'ELSA CULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7130', NULL, 'ALLEN ANTONY TRANSPORTES PERU E IMPORTACIONES E.I.R.L.', '', '20494419247', '', '', 'AV. BEATITA DE HUMAY NRO. 394 ICA - PISCO - PISCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7131', NULL, 'LUSMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7132', NULL, 'LUSMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7133', NULL, 'VIRGINIA LOAYZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7134', NULL, 'VIRGINIA LOAYZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7135', NULL, 'VIRGINIA LOAYZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7136', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7137', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7138', NULL, 'NEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7139', NULL, 'NEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7140', NULL, 'EDITH', '00000000', '', '', '', 'AV. BEATITA DE HUMAY NRO. 394 ICA - PISCO - PISCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7141', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7142', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7143', NULL, 'MARIA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7144', NULL, 'MARIA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7145', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7146', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7147', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7148', NULL, 'CECILIA RONCAL', '00000000', '', '', '', 'AV. BEATITA DE HUMAY NRO. 394 ICA - PISCO - PISCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7149', NULL, 'LUZMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7150', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7151', NULL, 'ERICA AREVALO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7152', NULL, 'STWARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7153', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7154', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7155', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7156', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7157', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7158', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7159', NULL, 'GINA NOLASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7160', NULL, 'LURDES REVILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7161', NULL, 'CLAUDIA VALLEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7162', NULL, 'LOUDRE REVILLA', '08395783', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7163', NULL, 'LOURDES REVILLA', '08395783', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7164', NULL, 'MIRIAN VALLEJOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7165', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7166', NULL, 'XIOMARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7167', NULL, 'SAMANTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7168', NULL, 'SAMANTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7169', NULL, 'PAULINO LLAMOCA YUCRA', '04630447', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7170', NULL, 'MILAGROS', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7171', NULL, 'MILAGROS', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7172', NULL, 'OSCAR', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7173', NULL, 'MILAGROS', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7174', NULL, 'NESTOR', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7175', NULL, 'NESTOR', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7176', NULL, 'BERTHA', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7177', NULL, 'BERTHA', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7178', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7179', NULL, 'MILAGROS', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7180', NULL, 'CARDENAS MUÑOZ GINA ELVIRA', '', '10316663309', '', '', 'JR LA REA Y LARREDO 713 HUARAZ', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7181', NULL, 'ESTELA', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7182', NULL, 'ANDRE', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7183', NULL, 'ANDRE', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7184', NULL, 'ANDRE', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7185', NULL, 'MARILU', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7186', NULL, 'SANDRA', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7187', NULL, 'SANDRA', '00000000', '', '', '', 'MOQUEGUA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7188', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7189', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7190', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7191', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7192', NULL, 'NORMA ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7193', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7194', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7195', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7196', NULL, 'SUSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7197', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7198', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7199', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7200', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7201', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7202', NULL, 'ROSA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7203', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7204', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7205', NULL, 'KATTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7206', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7207', NULL, 'sandra  licas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7208', NULL, 'sandra  licas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7209', NULL, 'ANGELA SEGURA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7210', NULL, 'JONY CARAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7211', NULL, 'JONY CARAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7212', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7213', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7214', NULL, 'JONEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7215', NULL, 'SADIT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7216', NULL, 'SADIT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7217', NULL, 'MANUEL ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7218', NULL, 'MANUEL ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7219', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7220', NULL, 'ROSA GAMARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7221', NULL, 'ROSA GAMARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7222', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7223', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7224', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7225', NULL, 'ARIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7226', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7227', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7228', NULL, 'DALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7229', NULL, 'DALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7230', NULL, 'esperanza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7231', NULL, 'esperanza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7232', NULL, 'CELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7233', NULL, 'CELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7234', NULL, 'PEDRO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7235', NULL, 'PEDRO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7236', NULL, 'PEDRO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7237', NULL, 'PEDRO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7238', NULL, 'PEDRO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7239', NULL, 'PEDRO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7240', NULL, 'I.E.P. MARIA MAGDALENA S.A.C.', '', '20602820743', '', '', 'JR. LORETO NRO. 3835 LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7241', NULL, 'SARA', '00000000', '', '', '', 'JR. LORETO NRO. 3835 LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7242', NULL, 'SARA', '00000000', '', '', '', 'JR. LORETO NRO. 3835 LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7243', NULL, 'GUISELA MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7244', NULL, 'MARIBEL LA TORRE', '00000000', '', '', '', 'JR. LORETO NRO. 3835 LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7245', NULL, 'MARIA MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7246', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7247', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7248', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7249', NULL, 'esteban', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7250', NULL, 'jorge david', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7251', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7252', NULL, 'YUDITH MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7253', NULL, 'MARIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7254', NULL, 'MARIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7255', NULL, 'MARIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7256', NULL, 'henry', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7257', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7258', NULL, 'HYR ENERGY E.I.R.L', '', '20393007614', '', '', 'PSJE LUIS MIROQUESADA #123 DPTO 401 SURQUILLO-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7259', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7260', NULL, 'LEOPOLDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7261', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7262', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7263', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7264', NULL, 'CARLA POLANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7265', NULL, 'KENYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7266', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7267', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7268', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7269', NULL, 'KATHERINE PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7270', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7271', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7272', NULL, 'OMAR SARMIENTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7273', NULL, 'OMAR SARMIENTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7274', NULL, 'OMAR SARMIENTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7275', NULL, 'ALCIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7276', NULL, 'RENATO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7277', NULL, 'SOERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7278', NULL, 'SOERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7279', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7280', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7281', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7282', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7283', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7284', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7285', NULL, 'MONICA AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7286', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7287', NULL, 'JESUS OSORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7288', NULL, 'MARINELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7289', NULL, 'JULIO VICENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7290', NULL, 'BILMA ARTIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7291', NULL, 'BILMA ARTIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7292', NULL, 'PEPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7293', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7294', NULL, 'CECILIA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7295', NULL, 'HIMER SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7296', NULL, 'MAROIA MUQUILLAZE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7297', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7298', NULL, 'BLADIMIR PERALTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7299', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7300', NULL, 'MARIA CISNEROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7301', NULL, 'JUAN AGREDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7302', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7303', NULL, 'KATYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7304', NULL, 'ROSALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7305', NULL, 'ROSALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7306', NULL, 'ROSALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7307', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7308', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7309', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7310', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7311', NULL, 'ana gallegos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7312', NULL, 'ana gallegos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7313', NULL, 'ana gallegos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7314', NULL, 'peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7315', NULL, 'peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7316', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7317', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7318', NULL, 'amador julca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7319', NULL, 'amador julca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7320', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7321', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7322', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7323', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7324', NULL, 'LIZARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7325', NULL, 'LIZARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7326', NULL, 'JOD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7327', NULL, 'JOD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7328', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7329', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7330', NULL, 'ADY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7331', NULL, 'ADY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7332', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7333', NULL, 'ANA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7334', NULL, 'OLGA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7335', NULL, 'OLGA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7336', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7337', NULL, 'MULTISERVICIOS D MIRSA E.I.R.L', '', '20601893178', '', '', 'AV. SANTA ELVIRA MZD LT 5 LOS OLIVOS- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7338', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7339', NULL, 'NATALY GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7340', NULL, 'NATALY GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7341', NULL, 'MULTISERVICIOS D MIRSA E.I.R.L', '', '20601893178', '', '', 'AV. SANTA ELVIRA MZD LT 5 LOS OLIVOS- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7342', NULL, 'MULTISERVICIOS D\'MIRSA E.I.R.L.', '', '20601893178', '', '', 'AV. SANTA ELVIRA MZA. D LOTE. 05 A.V. SANTA ELVIRA (ALT MCADO AGRARIO OVALO INFANTAS) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7343', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7344', NULL, 'LIBIA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7345', NULL, 'LIBIA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7346', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7347', NULL, 'ROCIO JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7348', NULL, 'ROCIO JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7349', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7350', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7351', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7352', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7353', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7354', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7355', NULL, 'COMPAÑIA MINERA ZELTA S.A.C', '', '20536561961', '', '', 'CALLE LOS NARANJOS #119 URB NUEVO VITARTE - ATE-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7356', NULL, 'MIRIAN TOLEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7357', NULL, 'FAUSTO SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7358', NULL, 'FAUSTO SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7359', NULL, 'IBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7360', NULL, 'IBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7361', NULL, 'luisa veliz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7362', NULL, 'luisa veliz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7363', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7364', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7365', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7366', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7367', NULL, 'SANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7368', NULL, 'juliana quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7369', NULL, 'PATRICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7370', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7371', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7372', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7373', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7374', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7375', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7376', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7377', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7378', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7379', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7380', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7381', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7382', NULL, 'GROVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7383', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7384', NULL, 'TEOLA JAUGUERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7385', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7386', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7387', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7388', NULL, 'RAYDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7389', NULL, 'OSCAR TAFUR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7390', NULL, 'OSCAR TAFUR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7391', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7392', NULL, 'FAMESA EXPLOSIVOS S.A.C.', '', '20100112214', '', '', 'CAR.AUTOPISTA ANCON KM. 28 (PANAMERICANA NORTE) LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7393', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7394', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7395', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7396', NULL, 'IDA JACINTO RAMOS', '00000000', '', '', '', 'CAR.AUTOPISTA ANCON KM. 28 (PANAMERICANA NORTE) LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7397', NULL, 'IDA JACINTO RAMOS', '00000000', '', '', '', 'CAR.AUTOPISTA ANCON KM. 28 (PANAMERICANA NORTE) LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7398', NULL, 'BRENDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7399', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7400', NULL, 'JENY ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7401', NULL, 'JENY ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7402', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7403', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7404', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7405', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7406', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7407', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7408', NULL, 'MARINA ODRIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7409', NULL, 'JENY ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7410', NULL, 'JENY ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7411', NULL, 'SILVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7412', NULL, 'MAGDA ROMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7413', NULL, 'MAGDA ROMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7414', NULL, 'FELICITA SAVEDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7415', NULL, 'FELICITA SAVEDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7416', NULL, 'MAYLI NICASIO OLIVERIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7417', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7418', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7419', NULL, 'elmer fernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7420', NULL, 'teresa correa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7421', NULL, 'VICTOR GUTARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7422', NULL, 'CARMEN APASA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7423', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7424', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7425', NULL, 'daniel polo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7426', NULL, 'daniel polo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7427', NULL, 'luis salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7428', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7429', NULL, 'MARIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7430', NULL, 'MARIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7431', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7432', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7433', NULL, 'CARLOS MENDOZILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7434', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7435', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7436', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7437', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7438', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7439', NULL, 'ELSA BARZOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7440', NULL, 'ELSA BARZOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7441', NULL, 'GINO BAZAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7442', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7443', NULL, 'SEGURO SOCIAL DE SALUD', '', '20131257750', '', '', 'AV. DOMINGO CUETO NRO. 120 LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7444', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7445', NULL, 'SEGUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7446', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7447', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7448', NULL, 'yesica cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7449', NULL, 'amelia davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7450', NULL, 'eugenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7451', NULL, 'amelia davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7452', NULL, 'timotea', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7453', NULL, 'evelin hidalgo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7454', NULL, 'yulisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7455', NULL, 'cinthia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7456', NULL, 'bruna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7457', NULL, 'bruna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7458', NULL, 'yesica cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7459', NULL, 'yerri', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7460', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7461', NULL, 'joel ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7462', NULL, 'katy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7463', NULL, 'javier', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7464', NULL, 'jose luis salcedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7465', NULL, 'maria luz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7466', NULL, 'leodan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7467', NULL, 'roma villega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7468', NULL, 'yaneth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7469', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7470', NULL, 'DELIA BARNECHEA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7471', NULL, 'SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7472', NULL, 'GREYSI LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7473', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7474', NULL, 'REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7475', NULL, 'ELVIA MARIN PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7476', NULL, 'JUAN ONTESINOSM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7477', NULL, 'JUAN MONTESINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7478', NULL, 'JUAN MONTESINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7479', NULL, 'MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7480', NULL, 'MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7481', NULL, 'elvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7482', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7483', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7484', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7485', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7486', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7487', NULL, 'ester anahis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7488', NULL, 'ester anahis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7489', NULL, 'SUSY GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7490', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7491', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7492', NULL, 'victor luyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7493', NULL, 'hilda ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7494', NULL, 'marcela lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7495', NULL, 'diana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7496', NULL, 'yadira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7497', NULL, 'hotelera costa del pacifico s.a', '', '20297885538', '', '', 'av. santo toribio #173 san isidro-lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7498', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7499', NULL, 'virginia veslazque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7500', NULL, 'CORPORACION MINERA VIRGEN DE LA MERCED S.A.C.', '', '20602061052', '', '', 'CAL.1 MZA. B LOTE. 2 URB. LAS VEGAS LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7501', NULL, 'guido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7502', NULL, 'liliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7503', NULL, 'WILBER BAZAN', '00000000', '', '', '', 'CAL.1 MZA. B LOTE. 2 URB. LAS VEGAS LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7504', NULL, 'WILBER BAZAN', '00000000', '', '', '', 'CAL.1 MZA. B LOTE. 2 URB. LAS VEGAS LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7505', NULL, 'NATALIA', '00000000', '', '', '', 'CAL.1 MZA. B LOTE. 2 URB. LAS VEGAS LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7506', NULL, 'MARTHA', '00000000', '', '', '', 'CAL.1 MZA. B LOTE. 2 URB. LAS VEGAS LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7507', NULL, 'MARIA', '00000000', '', '', '', 'CAL.1 MZA. B LOTE. 2 URB. LAS VEGAS LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7508', NULL, 'ines', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7509', NULL, 'ROBERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7510', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7511', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7512', NULL, 'sally salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7513', NULL, 'sally salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7514', NULL, 'LUZ', '00000000', '', '', '', 'CAL.1 MZA. B LOTE. 2 URB. LAS VEGAS LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7515', NULL, 'marcos paucar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7516', NULL, 'MILUSKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7517', NULL, 'ALEJO SANZ EMILIA MILUSKA', '', '10430347981', '', '', 'av elagustino 411 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7518', NULL, 'mercedes perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7519', NULL, 'alfrdo medoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7520', NULL, 'rosario saenz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7521', NULL, 'SILVIA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7522', NULL, 'liz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7523', NULL, 'ERNESTINA RIOFRIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7524', NULL, 'ERNESTINA RIOFRIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7525', NULL, 'sarita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7526', NULL, 'JOSE RIVERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7527', NULL, 'jorge panduro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7528', NULL, 'angela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7529', NULL, 'LADY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7530', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7531', NULL, 'roxana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7532', NULL, 'toni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7533', NULL, 'raquel chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7534', NULL, 'RAQUEL CHALCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7535', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7536', NULL, 'sonia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7537', NULL, 'ANICIA SEGURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7538', NULL, 'bilma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7539', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7540', NULL, 'IRENE MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7541', NULL, 'TRANSPORTES PERALTA PAREDES EMPRESA INDIVIDUAL DE RESPO', '', '20542308347', '', '', 'JR. FRANCISCO BOLOGNESI NRO. 229 (PUEBLO JOVE NUEVE DE ABRIL) SAN MARTIN - SAN MARTIN - TARAPOTO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7542', NULL, 'TRANSPORTES PERALTA PAREDES EMPRESA INDIVIDUAL DE RESPO', '', '20542308347', '', '', 'JR. FRANCISCO BOLOGNESI NRO. 229 (PUEBLO JOVE NUEVE DE ABRIL) SAN MARTIN - SAN MARTIN - TARAPOTO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7543', NULL, 'SERVICIOS EDUCATIVOS JEAN PIAGET S.R.L.', '', '20460005109', '', '', 'AV. ALAMEDA DE LA PAZ NRO. 451 URB. LA ENSENADA (COSTADO FACULTAD MEDICINA HUMANA S.M.P.) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7544', NULL, 'SERVICIOS EDUCATIVOS JEAN PIAGET S.R.L.', '', '20460005109', '', '', 'AV. ALAMEDA DE LA PAZ NRO. 451 URB. LA ENSENADA (COSTADO FACULTAD MEDICINA HUMANA S.M.P.) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7545', NULL, 'ANA VELASQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7546', NULL, 'JHONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7547', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7548', NULL, 'liz diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7549', NULL, 'MILTON BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7550', NULL, 'gonsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7551', NULL, 'jessica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7552', NULL, 'CARMEN VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7553', NULL, 'CARMEN VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7554', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7555', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7556', NULL, 'LIDIA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7557', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7558', NULL, 'MARCO URIBE', '07992864', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7559', NULL, 'victor pereira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7560', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7561', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7562', NULL, 'ESTELA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7563', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7564', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7565', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7566', NULL, 'CARLOS DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7567', NULL, 'MIGUEL SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7568', NULL, 'AGUSTINA MARCHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7569', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7570', NULL, 'ELIANE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7571', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7572', NULL, 'BUENO DELGADO MARIA ELENA', '', '10274149243', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7573', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7574', NULL, 'MARCO MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7575', NULL, 'roberto torres', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7576', NULL, 'roberto torres', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7577', NULL, 'JUANA', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7578', NULL, 'charo ruiz', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7579', NULL, 'charo ruiz', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7580', NULL, 'MARIEL TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7581', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7582', NULL, 'CINTHIA', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7583', NULL, 'JUAN RAMOS GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7584', NULL, 'CAMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7585', NULL, 'CAMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7586', NULL, 'ENRIQUETA PONCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7587', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7588', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7589', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7590', NULL, 'ZUELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7591', NULL, 'CARMEN', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7592', NULL, 'NELY ALVARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7593', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7594', NULL, 'CARLOS ESTRADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7595', NULL, 'LAURA', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7596', NULL, 'LAURA', '00000000', '', '', '', 'jr 30 de agosto 426 - chota', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7597', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7598', NULL, 'SANTIAGO CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7599', NULL, 'ALEX GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7600', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7601', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7602', NULL, 'MEDINA SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7603', NULL, 'INES CABRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7604', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7605', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7606', NULL, 'ROLANDO CORNEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7607', NULL, 'DEYNER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7608', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7609', NULL, 'angel diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7610', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7611', NULL, 'YENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7612', NULL, 'ESTER VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7613', NULL, 'CECILIA SALDAÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7614', NULL, 'MARIBEL SANTISTEBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7615', NULL, 'LAURA PRUDENCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7616', NULL, 'ORLANDO CCAHUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7617', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7618', NULL, 'ORLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7619', NULL, 'ORLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7620', NULL, 'HERMANAS FRANCISCANAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7621', NULL, 'WILFREDO MISARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7622', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7623', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7624', NULL, 'ARISTERES GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7625', NULL, 'ANA PLAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7626', NULL, 'ANA PLAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7627', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7628', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7629', NULL, 'karina moral', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7630', NULL, 'silvia calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7631', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7632', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7633', NULL, 'JENNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7634', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7635', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7636', NULL, 'kelly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7637', NULL, 'maria rivas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7638', NULL, 'erika', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7639', NULL, 'susy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7640', NULL, 'mirian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7641', NULL, 'yamile rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7642', NULL, 'DEYVIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7643', NULL, 'RAYSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7644', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7645', NULL, 'CHOCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7646', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7647', NULL, 'MEZA CASTRO MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7648', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7649', NULL, 'RITA HUAPALLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7650', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7651', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7652', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7653', NULL, 'HECTOR ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7654', NULL, 'MAXIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7655', NULL, 'MAXIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7656', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7657', NULL, 'HECTOR ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7658', NULL, 'OLGA RECALDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7659', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7660', NULL, 'MIRCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7661', NULL, 'MIRCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7662', NULL, 'MIRCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7663', NULL, 'MAGDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7664', NULL, 'MAGDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7665', NULL, 'NAVAJA SEPIA S.A.C', '', '20545057523', '', '', 'AV. VILLA DEL MAR MZA. I LOTE. 20 RES. SECTOR 2 GRUPO 11 LIMA - LIMA - VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7666', NULL, 'NAVAJA SEPIA S.A.C', '', '20545057523', '', '', 'AV. VILLA DEL MAR MZA. I LOTE. 20 RES. SECTOR 2 GRUPO 11 LIMA - LIMA - VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7667', NULL, 'DREIDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7668', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7669', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7670', NULL, 'NAVAJA SEPIA S.A.C', '', '20545057523', '', '', 'AV. VILLA DEL MAR MZA. I LOTE. 20 RES. SECTOR 2 GRUPO 11 LIMA - LIMA - VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7671', NULL, 'GIAN CARLO', '00000000', '', '', '', 'AV. VILLA DEL MAR MZA. I LOTE. 20 RES. SECTOR 2 GRUPO 11 LIMA - LIMA - VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7672', NULL, 'FABIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7673', NULL, 'SEGUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7674', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7675', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7676', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7677', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7678', NULL, 'JENNY QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7679', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7680', NULL, 'mercedes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7681', NULL, 'maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7682', NULL, 'estela castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7683', NULL, 'pedro ventura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7684', NULL, 'maryori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7685', NULL, 'yola', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7686', NULL, 'sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7687', NULL, 'edith', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7688', NULL, 'yesenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7689', NULL, 'gladis sulca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7690', NULL, 'ROMERO LEON RENE ANGELICA', '', '10085445371', '', '', 'jr aurelio miroquesada 580 ing. san martin de porres', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7691', NULL, 'rita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7692', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7693', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7694', NULL, 'eros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7695', NULL, 'giovana espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7696', NULL, 'armando pozo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7697', NULL, 'sherly carrillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7698', NULL, 'ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7699', NULL, 'ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7700', NULL, 'FRANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7701', NULL, 'ROCIO QUIÑONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7702', NULL, 'alicia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7703', NULL, 'SARA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7704', NULL, 'SARA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7705', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7706', NULL, 'HAYDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7707', NULL, 'juan berrocal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7708', NULL, 'luigi sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7709', NULL, 'luigi sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7710', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7711', NULL, 'oscar ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7712', NULL, 'oscar ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7713', NULL, 'FRANCISCO CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7714', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7715', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7716', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7717', NULL, 'ALEXIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7718', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7719', NULL, 'YARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7720', NULL, 'EULALIA PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7721', NULL, 'ALEXIS LAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7722', NULL, 'ROSARIO ALTAMIRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7723', NULL, 'JORGE BOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7724', NULL, 'FATIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7725', NULL, 'FATIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7726', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7727', NULL, 'milagros garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7728', NULL, 'milagros garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7729', NULL, 'NARDA  PUICAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7730', NULL, 'castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7731', NULL, 'MARIA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7732', NULL, 'sarela blanco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7733', NULL, 'YESENIA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7734', NULL, 'YOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7735', NULL, 'MARIA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7736', NULL, 'monica salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7737', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7738', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7739', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7740', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7741', NULL, 'JORGE URBANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7742', NULL, 'IRENE VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7743', NULL, 'FC SEGURIDAD Y LOGISTICA E.I.R.L.', '', '20563513706', '', '', '----CALLE 8 MZA. Q LOTE. 12 URB. CIUDAD MORALES (3RA ETAPA) LIMA - LIMA - LURIN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7744', NULL, 'AMPARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7745', NULL, 'ABEL', '00000000', '', '', '', '----CALLE 8 MZA. Q LOTE. 12 URB. CIUDAD MORALES (3RA ETAPA) LIMA - LIMA - LURIN', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7746', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7747', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7748', NULL, 'VICTOR', '00000000', '', '', '', '----CALLE 8 MZA. Q LOTE. 12 URB. CIUDAD MORALES (3RA ETAPA) LIMA - LIMA - LURIN', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7749', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7750', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7751', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7752', NULL, 'FIORELA  DERAMENDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7753', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7754', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7755', NULL, 'BERTHA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7756', NULL, 'isabela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7757', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7758', NULL, 'angela gimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7759', NULL, 'angela gimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7760', NULL, 'BETSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7761', NULL, 'BETSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7762', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7763', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7764', NULL, 'susy lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7765', NULL, 'susy lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7766', NULL, 'hertil', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7767', NULL, 'hertil', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7768', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7769', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7770', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7771', NULL, 'juaquin vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7772', NULL, 'jaime morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7773', NULL, 'clotilde torrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7774', NULL, 'HAIDA GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7775', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7776', NULL, 'nancy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7777', NULL, 'raul rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7778', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7779', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7780', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7781', NULL, 'yesica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7782', NULL, 'YESICA BRICEÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7783', NULL, 'noemi ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7784', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7785', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7786', NULL, 'evelyn', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7787', NULL, 'EDGARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7788', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7789', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7790', NULL, 'BRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7791', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7792', NULL, 'DUBERLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7793', NULL, 'JUANA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7794', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7795', NULL, 'MATEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7796', NULL, 'YULISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7797', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7798', NULL, 'ERNESTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7799', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7800', NULL, 'GIANCARLO TASAYCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7801', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7802', NULL, 'MARTIN COLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7803', NULL, 'ELIZABETH CONDOR CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7804', NULL, 'YARASCA BALDEON JORGE SERGIO', '', '10066694980', '', '', 'VIA MZA C DPTO 2 LOTE 12 A.H IGNACIO VDA DE CANEVARO S.J M. LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7805', NULL, 'YARASCA BALDEON JORGE SERGIO', '', '10066694980', '', '', 'VIA MZA. C DPTO 2 LOTE. 12 A.H IGNACIO VDA DE CANEVARO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7806', NULL, 'YESICA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7807', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7808', NULL, 'ELOY FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7809', NULL, 'NANCY ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7810', NULL, 'ERMES SOBERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7811', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7812', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7813', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7814', NULL, 'MARITZA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7815', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7816', NULL, 'SARITA CERRON SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7817', NULL, 'MARIO MANZANERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7818', NULL, 'MARIA HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7819', NULL, 'ISABEL CAMACHO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7820', NULL, 'PAMELA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7821', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7822', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7823', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7824', NULL, 'YASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7825', NULL, 'MARIBEL GIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7826', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7827', NULL, 'javier segura', '07281437', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7828', NULL, 'cristina vera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7829', NULL, 'WILFREDO SAENZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7830', NULL, 'MARISOL SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7831', NULL, 'MARISOL SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7832', NULL, 'CARLOS CARRONES', '17913652', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7833', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7834', NULL, 'KATTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7835', NULL, 'MARCELINO CALZADO VILLANUEVA', '', '10157569274', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7836', NULL, 'ESTEFANI DE LA CRUZ', '42646246', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7837', NULL, 'PATRICIA MERINO', '09453475', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7838', NULL, 'FREDY SAAVEDRA', '08460951', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7839', NULL, 'KATYA CRUZ', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7840', NULL, 'JUANA CHAMPASO SERRANO', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7841', NULL, 'LUIS', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7842', NULL, 'DORIS BALAREZO', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7843', NULL, 'ELENA  SENCA', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7844', NULL, 'KIO', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7845', NULL, 'MONICA', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7846', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7847', NULL, 'ELVIRA ROMERO', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7848', NULL, 'JESUS', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7849', NULL, 'CARMEN', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7850', NULL, 'CARMEN', '00000000', '', '', '', 'MERCADO CENTENARIO E 58-64 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7851', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7852', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7853', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7854', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7855', NULL, 'NORMA BARZOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7856', NULL, 'CONSUELO MELGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7857', NULL, 'GREGORIA BARZOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7858', NULL, 'PERCY SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7859', NULL, 'MIRTA LANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7860', NULL, 'MARIA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7861', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7862', NULL, 'MIREYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7863', NULL, 'reyna galvan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7864', NULL, 'maria tevez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7865', NULL, 'maria tevez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7866', NULL, 'J0HAN BARR8IENTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7867', NULL, 'carito', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7868', NULL, 'glena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7869', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7870', NULL, 'maria sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7871', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7872', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7873', NULL, 'teresita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7874', NULL, 'teresita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7875', NULL, 'wilfredo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7876', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7877', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7878', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7879', NULL, 'CHARMELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7880', NULL, 'CHARMELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7881', NULL, 'ITALI JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7882', NULL, 'LITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7883', NULL, 'LITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7884', NULL, 'AIDA ARANGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7885', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7886', NULL, 'MARIA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7887', NULL, 'MARIA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7888', NULL, 'JONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7889', NULL, 'JONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7890', NULL, 'CORPORACION FLOVASA S.A.C.', '', '20603308809', '', '', 'JR. PARURO NRO. 916 INT. 197M URB. BARRIOS ALTOS LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7891', NULL, 'LIBIA MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7892', NULL, 'JENY CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7893', NULL, 'JENY CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7894', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7895', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7896', NULL, 'TORRES CERRON VDA. DE ORDOÑEZ TEODOMIRA EDILBURGA', '', '10104180596', '', '', 'calle las avestrusez 214 santa anita', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7897', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7898', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7899', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7900', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7901', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7902', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7903', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7904', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7905', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7906', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7907', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7908', NULL, 'ANGELO', '42131984', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7909', NULL, 'ANGELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7910', NULL, 'ANGELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7911', NULL, 'MIRELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7912', NULL, 'MIRELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7913', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7914', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7915', NULL, 'KATERINE  GIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7916', NULL, 'CATALINA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7917', NULL, 'CATALINA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7918', NULL, 'CATALINA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7919', NULL, 'CATALINA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7920', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7921', NULL, 'KELVIN CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7922', NULL, 'KELVIN CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7923', NULL, 'KELVIN CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7924', NULL, 'YENNY BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7925', NULL, 'YENNY BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7926', NULL, 'YENNY BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7927', NULL, 'JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7928', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7929', NULL, 'LUIS VEGA BARROZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7930', NULL, 'CARMEN ZAMBRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7931', NULL, 'ADAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7932', NULL, 'ADAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7933', NULL, 'TEOFILO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7934', NULL, 'TEOFILO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7935', NULL, 'JANET CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7936', NULL, 'JANET CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7937', NULL, 'SOLUTIONS OPTIMUS S.A.C. - S. OPTIMUS S.A.C.', '', '20552138873', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7938', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7939', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7940', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7941', NULL, 'FELIX ROJAS', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7942', NULL, 'ALFREDO  SILES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7943', NULL, 'NICOLAS', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7944', NULL, 'NICOLAS', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7945', NULL, 'MARICEL ARMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7946', NULL, 'MARICEL ARMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7947', NULL, 'MARICEL ARMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7948', NULL, 'dora', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7949', NULL, 'dora', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7950', NULL, 'RAUL LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7951', NULL, 'RAUL LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7952', NULL, 'ELISABETH PALACIOS', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7953', NULL, 'ELISABETH PALACIOS', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7954', NULL, 'BILMA LOPEZ', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7955', NULL, 'SILVIA OJEDA', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7956', NULL, 'ALBERTO', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7957', NULL, 'ALBERTO', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7958', NULL, 'ALBERTO', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7959', NULL, 'VIOLETA', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7960', NULL, 'VIOLETA', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7961', NULL, 'VIOLETA', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7962', NULL, 'JOSE', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7963', NULL, 'JOSE', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7964', NULL, 'MIRTHA', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7965', NULL, 'MIRTHA', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7966', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7967', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7968', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7969', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7970', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7971', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7972', NULL, 'MARCO CHUMPITAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7973', NULL, 'MARCO CHUMPITAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7974', NULL, 'castillo aguilara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7975', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7976', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7977', NULL, 'CHIRSTIAN CALDERON VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7978', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7979', NULL, 'NANCY LEON', '10194350', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7980', NULL, 'CARLOS GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7981', NULL, 'SARA MENESES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7982', NULL, 'DENYS  CARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7983', NULL, 'ISABEL TARAZONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7984', NULL, 'LLOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7985', NULL, 'ana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7986', NULL, 'LLASSAJE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7987', NULL, 'HOTEL UNIVERSO S.R.L', '', '20452539293', '', '', 'JR. GRAU # 105 AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7988', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7989', NULL, 'ARTURO RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7990', NULL, 'ana paredes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7991', NULL, 'EMILIANA BENITES DE TREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7992', NULL, 'LUZMILA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7993', NULL, 'JULIAN VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7994', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7995', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7996', NULL, 'ESTELA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7997', NULL, 'LUIS DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7998', NULL, 'ESTHER GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('7999', NULL, 'FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8000', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8001', NULL, 'DAO MING HU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8002', NULL, 'C.D.S.P 352', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8003', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8004', NULL, 'COOPERATIVA DE AHORRO Y CREDITO SAN HILARION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8005', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8006', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8007', NULL, 'ALDO COCHACHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8008', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8009', NULL, 'YENNI MUJICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8010', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8011', NULL, 'BERISO E.I.R.L.', '', '20602677622', '', '', 'AV. UNIVERSITARIA NRO. 47 INT. 100 (MERCADO PRODUCTORES MERPROLIMA) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8012', NULL, 'cesar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8013', NULL, 'LUCI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8014', NULL, 'MARINA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8015', NULL, 'aurelio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8016', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8017', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8018', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8019', NULL, 'mariela godoy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8020', NULL, 'raul', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8021', NULL, 'indaura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8022', NULL, 'indaura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8023', NULL, 'julia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8024', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8025', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8026', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8027', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8028', NULL, 'susan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8029', NULL, 'susan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8030', NULL, 'susan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8031', NULL, 'MILUSKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8032', NULL, 'MILUSKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8033', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8034', NULL, 'PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8035', NULL, 'LUIS VELAZCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8036', NULL, 'jimy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8037', NULL, 'jimy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8038', NULL, 'MARIA MACHADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8039', NULL, 'MARIA MACHADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8040', NULL, 'CARMEN PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8041', NULL, 'CARMEN PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8042', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8043', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8044', NULL, 'ricardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8045', NULL, 'ricardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8046', NULL, 'ricardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8047', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8048', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8049', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8050', NULL, 'bil lazaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8051', NULL, 'bil lazaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8052', NULL, 'GIMY RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8053', NULL, 'KARINA ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8054', NULL, 'MIGUEL DE SANDOVAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8055', NULL, 'MIGUEL CASANOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8056', NULL, 'MGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8057', NULL, 'MGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8058', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8059', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8060', NULL, 'ROSA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8061', NULL, 'ROGER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8062', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8063', NULL, 'marlene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8064', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8065', NULL, 'KELLY GODOY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8066', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8067', NULL, 'jeny chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8068', NULL, 'jeny chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8069', NULL, 'MICHAEL rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8070', NULL, 'MICHAEL rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8071', NULL, 'JENY CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8072', NULL, 'JENY CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8073', NULL, 'JENY CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8074', NULL, 'CLORINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8075', NULL, 'esperanza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8076', NULL, 'ruth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8077', NULL, 'alejandro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8078', NULL, 'ARACELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8079', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8080', NULL, 'MARIA DEL CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8081', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8082', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8083', NULL, 'VIVIANA ASCENCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8084', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8085', NULL, 'GENARO VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8086', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8087', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8088', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8089', NULL, 'YUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8090', NULL, 'CESAR GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8091', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8092', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8093', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8094', NULL, 'ELIANA DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8095', NULL, 'ELIANA DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8096', NULL, 'ELIANA DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8097', NULL, 'LUIS HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8098', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8099', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8100', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8101', NULL, 'JESUS CASAS AQUINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8102', NULL, 'MOLINOS & CIA S.A.', '', '20257364357', '', '', 'AV. LOS INGENIEROS NRO. 154 URB. INDUSTRIAL SANTA RAQUEL II ETAPA LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8103', NULL, 'INES VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8104', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8105', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8106', NULL, 'FELIX MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8107', NULL, 'IBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8108', NULL, 'VICTOR RECUAY ORIHUELA', '04008058', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8109', NULL, 'FRANCISCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8110', NULL, 'CARLOS QUESQUEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8111', NULL, 'ruth meri paucar huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8112', NULL, 'ruth meri paucar huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8113', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8114', NULL, 'MARTHA VICHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8115', NULL, 'REPRESENTACIONES & SERVICIOS EL TUMBAO S.A.C.', '', '20569293473', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8116', NULL, 'VILMA VEGA TAFUR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8117', NULL, 'YANINA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8118', NULL, 'YANINA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8119', NULL, 'YANINA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8120', NULL, 'FRIDA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8121', NULL, 'FRIDA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8122', NULL, 'FRIDA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8123', NULL, 'NELLY', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8124', NULL, 'NELLY', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8125', NULL, 'mario', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8126', NULL, 'mario', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8127', NULL, 'ANGELA LANCI PANDURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8128', NULL, 'CARMEN', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8129', NULL, 'CARMEN', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8130', NULL, 'CLARA VENEGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8131', NULL, 'FIDEL FERNANDEZ', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8132', NULL, 'FIDEL FERNANDEZ', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8133', NULL, 'JUAN', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8134', NULL, 'JULIA RACHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8135', NULL, 'JULIA RACHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8136', NULL, 'GLADIS', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8137', NULL, 'GLADIS', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8138', NULL, 'JUAN CARLOS', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8139', NULL, 'JUAN CARLOS', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8140', NULL, 'FELICITAS CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8141', NULL, 'VICTOR', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8142', NULL, 'VICTOR', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8143', NULL, 'EMILIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8144', NULL, 'EMILIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8145', NULL, 'BENIT', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8146', NULL, 'DIEGO', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8147', NULL, 'DIEGO', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8148', NULL, 'WILMER MENDOZA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8149', NULL, 'WILMER MENDOZA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8150', NULL, 'CLAUDIA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8151', NULL, 'CLAUDIA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8152', NULL, 'CLAUDIA', '00000000', '', '', '', 'JR. CARLOS DE LOS HEROS NRO. 576 ANCASH - SANTA - CHIMBOTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8153', NULL, 'romen digital technologies sac', '', '20522898075', '', '', 'av. monte de los olivos # 197 int 301 surco lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8154', NULL, 'mirian rosas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8155', NULL, 'EDGAR  PARY ZAPATA', '46340620', '', '', '', 'av. monte de los olivos # 197 int 301 surco lima', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8156', NULL, 'CAMILA', '00000000', '', '', '', 'av. monte de los olivos # 197 int 301 surco lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8157', NULL, 'GLADYS  CHAMORRO', '06030081', '', '', '', 'av. monte de los olivos # 197 int 301 surco lima', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8158', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8159', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8160', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8161', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8162', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8163', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8164', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8165', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8166', NULL, 'juan aria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8167', NULL, 'juan aria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8168', NULL, 'juan arias', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8169', NULL, 'BREVETES VALE UN PERU S.A.C.', '', '20548086079', '', '', 'R. GRAN PAJATEN NRO. 352 URB. ZARATE (PISO 1) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8170', NULL, 'ester guevara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8171', NULL, 'BREVETES VALE UN PERU S.A.C', '', '20548086079', '', '', 'JR. GRAN PAJATEN NRO. 352 URB. ZARATE (PISO 1) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8172', NULL, 'ANA HURTADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8173', NULL, 'SONIA GIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8174', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8175', NULL, 'mirian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8176', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8177', NULL, 'sharon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8178', NULL, 'ADRIAN SALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8179', NULL, 'ADRIAN SALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8180', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8181', NULL, 'CLAUDIA MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8182', NULL, 'JUAN HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8183', NULL, 'angel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8184', NULL, 'WILIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8185', NULL, 'OSWALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8186', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8187', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8188', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8189', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8190', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8191', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8192', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8193', NULL, 'ANGELA COTRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8194', NULL, 'ANGELA COTRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8195', NULL, 'hermanos pecho vivan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8196', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8197', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8198', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8199', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8200', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8201', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8202', NULL, 'LISBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8203', NULL, 'LISBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8204', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8205', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8206', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8207', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8208', NULL, 'obregon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8209', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8210', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8211', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8212', NULL, 'desire', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8213', NULL, 'gabina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8214', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8215', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8216', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8217', NULL, 'laidy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8218', NULL, 'maria luisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8219', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8220', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8221', NULL, 'GUTIERRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8222', NULL, 'ANA VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8223', NULL, 'ANA VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8224', NULL, 'VICTORIA VIVANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8225', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8226', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8227', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8228', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8229', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8230', NULL, 'yeni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8231', NULL, 'cesar martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8232', NULL, 'JUDITH ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8233', NULL, 'JUDITH ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8234', NULL, 'isabel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8235', NULL, 'paucar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8236', NULL, 'jenifer', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8237', NULL, 'jenifer', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8238', NULL, 'palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8239', NULL, 'palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8240', NULL, 'neider', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8241', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8242', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8243', NULL, 'elsi astocondo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8244', NULL, 'elsi astocondo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8245', NULL, 'paty', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8246', NULL, 'luz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8247', NULL, 'magna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8248', NULL, 'estefany', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8249', NULL, 'paola remusco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8250', NULL, 'paola remusco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8251', NULL, 'any', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8252', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8253', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8254', NULL, 'pilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8255', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8256', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8257', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8258', NULL, 'fedor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8259', NULL, 'fedor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8260', NULL, 'maura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8261', NULL, 'maura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8262', NULL, 'maura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8263', NULL, 'adelaida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8264', NULL, 'KUSIKUY PERU SAC', '', '20519019168', '', '', 'AV. JOSE LARCO NRO. 337 (ALT. PARQUE KENEDY) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8265', NULL, 'godelia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8266', NULL, 'SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8267', NULL, 'SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8268', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8269', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8270', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8271', NULL, 'diana herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8272', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8273', NULL, 'isabel becerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8274', NULL, 'isabel becerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8275', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8276', NULL, 'MERIDA GARZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8277', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8278', NULL, 'BARRIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8279', NULL, 'BARRIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8280', NULL, 'BARRIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8281', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8282', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8283', NULL, 'SAMANTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8284', NULL, 'SAMANTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8285', NULL, 'cristian gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8286', NULL, 'cristian gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8287', NULL, 'MARIA CUSIHUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8288', NULL, 'MARIA CUSIHUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8289', NULL, 'MARIA CUSIHUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8290', NULL, 'luis gponsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8291', NULL, 'luis gponsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8292', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8293', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8294', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8295', NULL, 'sebastiana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8296', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8297', NULL, 'giovana quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8298', NULL, 'giovana quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8299', NULL, 'CINDY CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8300', NULL, 'CINDY CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8301', NULL, 'CINDY CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8302', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8303', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8304', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8305', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8306', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8307', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8308', NULL, 'JESICA anicama', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8309', NULL, 'JESICA anicama', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8310', NULL, 'JESICA anicama', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8311', NULL, 'JESICA anicama', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8312', NULL, 'JESICA anicama', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8313', NULL, 'JESICA anicama', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8314', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8315', NULL, 'ELSA RAMIRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8316', NULL, 'SILVA RODRIGUEZ BONAZZI CORINNA MARIA', '', '10066301112', '', '', 'av grau 810 -barranco', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8317', NULL, 'ROBERTO URIBE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8318', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8319', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8320', NULL, 'joel torrealva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8321', NULL, 'joel torrealva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8322', NULL, 'marco riva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8323', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8324', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8325', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8326', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8327', NULL, 'lenin gonsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8328', NULL, 'lenin gonsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8329', NULL, 'TIFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8330', NULL, 'TIFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8331', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8332', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8333', NULL, 'CALIDENT S.A.C.', '', '20523254040', '', '', 'AV. EMANCIPACION NRO. 466 INT. 2-3 (GALERIA LA MOVIDA II) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8334', NULL, 'CALIDENT S.A.C.', '', '20523254040', '', '', 'AV. EMANCIPACION NRO. 466 INT. 2-3 (GALERIA LA MOVIDA II) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8335', NULL, 'GIOVANA cervera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8336', NULL, 'GIOVANA cervera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8337', NULL, 'flor cruz espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8338', NULL, 'flor cruz espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8339', NULL, 'flor cruz espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8340', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8341', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8342', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8343', NULL, 'roxana mamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8344', NULL, 'roxana mamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8345', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8346', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8347', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8348', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8349', NULL, 'olinda espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8350', NULL, 'olinda espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8351', NULL, 'santiago muñoz', '00000000', '', '', '', 'AV. EMANCIPACION NRO. 466 INT. 2-3 (GALERIA LA MOVIDA II) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8352', NULL, 'santiago muñoz', '00000000', '', '', '', 'AV. EMANCIPACION NRO. 466 INT. 2-3 (GALERIA LA MOVIDA II) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8353', NULL, 'santiago muñoz', '00000000', '', '', '', 'AV. EMANCIPACION NRO. 466 INT. 2-3 (GALERIA LA MOVIDA II) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8354', NULL, 'mabel poma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8355', NULL, 'mabel poma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8356', NULL, 'ricardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8357', NULL, 'ricardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8358', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8359', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8360', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8361', NULL, 'nelly  gomero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8362', NULL, 'nelly  gomero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8363', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8364', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8365', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8366', NULL, 'balbin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8367', NULL, 'balbin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8368', NULL, 'balbin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8369', NULL, 'adelfa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8370', NULL, 'adelfa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8371', NULL, 'julian avelasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8372', NULL, 'julian avelasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8373', NULL, 'julian avelasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8374', NULL, 'ramos sulca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8375', NULL, 'ramos sulca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8376', NULL, 'constantino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8377', NULL, 'constantino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8378', NULL, 'constantino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8379', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8380', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8381', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8382', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8383', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8384', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8385', NULL, 'francisca granado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8386', NULL, 'AMERICA GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8387', NULL, 'AMERICA GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8388', NULL, 'AMERICA GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8389', NULL, 'AMERIC AGONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8390', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8391', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8392', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8393', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8394', NULL, 'MINA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8395', NULL, 'MARCOS SOTOMAYOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8396', NULL, 'GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8397', NULL, 'GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8398', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8399', NULL, 'HANSEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8400', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8401', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8402', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8403', NULL, 'ISABEL GAONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8404', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8405', NULL, 'GUILLERMINA MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8406', NULL, 'SARA MATOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8407', NULL, 'DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8408', NULL, 'DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8409', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8410', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8411', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8412', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8413', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8414', NULL, 'ROSA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8415', NULL, 'ROSA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8416', NULL, 'INKA CROPS S.A.', '', '20291939083', '', '', 'AV. EL SANTUARIO NRO. 1127 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8417', NULL, 'INKA CROPS S.A.', '', '20291939083', '', '', 'AV. EL SANTUARIO NRO. 1127 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8418', NULL, 'GLADIS', '00000000', '', '', '', 'AV. EL SANTUARIO NRO. 1127 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8419', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8420', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8421', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8422', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8423', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8424', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8425', NULL, 'MARI CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8426', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8427', NULL, 'SONIA SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8428', NULL, 'SONIA SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8429', NULL, 'EVELIN OLIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8430', NULL, 'ANA HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8431', NULL, 'ANA HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8432', NULL, 'ANA HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8433', NULL, 'ESTHER FIJINI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8434', NULL, 'ESTHER FIJINI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8435', NULL, 'ESTHER FIJINI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8436', NULL, 'AGRIPINA MAMANI', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8437', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8438', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8439', NULL, 'GRETA', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8440', NULL, 'GRETA', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8441', NULL, 'DORIS', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8442', NULL, 'DORIS', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8443', NULL, 'DORIS', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8444', NULL, 'madelein paitan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8445', NULL, 'madelein paitan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8446', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8447', NULL, 'MABEL', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8448', NULL, 'MABEL', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8449', NULL, 'MABEL', '00000000', '', '', '', 'VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8450', NULL, 'RODRIGUEZ CHAVESTA CARLOS WILLIAM', '', '10407143341', '', '', 'AV JOSE GALVEZ 395 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8451', NULL, 'JOSE PACHECO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8452', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8453', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8454', NULL, 'PRODUCTOS Y SERVICIOS PACHECO E.I.R.L', '', '20546501168', '', '', 'AV. PETIT THOUARS NRO. 1511 LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8455', NULL, 'AMELIA', '00000000', '', '', '', 'CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8456', NULL, 'JULIA BRINGAS', '00000000', '', '', '', 'CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8457', NULL, 'JULIA BRINGAS', '00000000', '', '', '', 'CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8458', NULL, 'NANCY', '00000000', '', '', '', 'CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8459', NULL, 'NANCY', '00000000', '', '', '', 'CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8460', NULL, 'NANCY', '00000000', '', '', '', 'CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8461', NULL, 'TINOCO ROBLES MERY TEODOSIA', '', '10103405675', '', '', 'JR SANTA ROSA 858 SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8462', NULL, 'TINOCO ROBLES MERY TEODOSIA', '', '10103405675', '', '', 'JR SANTA ROSA 858 SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8463', NULL, 'TINOCO ROBLES MERY TEODOSIA', '', '10103405675', '', '', 'jr santa rosa858 surquillo', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8464', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8465', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8466', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8467', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8468', NULL, 'cosme chipana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8469', NULL, 'ROSARIO ODRIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8470', NULL, 'YANIRA GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8471', NULL, 'YANIRA GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8472', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8473', NULL, 'JOSE PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8474', NULL, 'EDGAR DAVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8475', NULL, 'MINISTERIO PUBLICO-GERENCIA GENERAL', '', '20131370301', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8476', NULL, 'EDWIN', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8477', NULL, 'EDWIN', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8478', NULL, 'EDWIN', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8479', NULL, 'EDWIN', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8480', NULL, 'EDITA', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8481', NULL, 'EDITA', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8482', NULL, 'JESUS', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8483', NULL, 'JESUS', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8484', NULL, 'JESUS', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8485', NULL, 'PAMELA', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8486', NULL, 'jason luis noriega', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8487', NULL, 'jason luis noriega', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8488', NULL, 'CINTHYA', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8489', NULL, 'TEODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8490', NULL, 'JHON', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8491', NULL, 'TEODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8492', NULL, 'elvia', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8493', NULL, 'elvia', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8494', NULL, 'elvia', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8495', NULL, 'JUANA', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8496', NULL, 'JUANA', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8497', NULL, 'ELI', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8498', NULL, 'ELI', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8499', NULL, 'ELI', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8500', NULL, 'CARMEN', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8501', NULL, 'CARMEN', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8502', NULL, 'CARMEN', '00000000', '', '', '', 'AV. ABANCAY NRO. 491 (SEGUNDO PISO - GERENCIA DE TESORERIA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8503', NULL, 'KATANE SOCIEDAD ANONIMA CERRADA', '', '20503496322', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8504', NULL, 'JORGE', '00000000', '', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8505', NULL, 'JORGE', '00000000', '', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8506', NULL, 'LILY', '00000000', '', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8507', NULL, 'LILY', '00000000', '', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8508', NULL, 'TERESA ROJAS', '00000000', '', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8509', NULL, 'TERESA ROJAS', '00000000', '', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8510', NULL, 'TERESA ROJAS', '00000000', '', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8511', NULL, 'MIRIAN POMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8512', NULL, 'ROBERT IZAGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8513', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8514', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8515', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8516', NULL, 'MEDINA SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8517', NULL, 'henry cubas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8518', NULL, 'henry cubas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8519', NULL, 'florencia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8520', NULL, 'florencia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8521', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8522', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8523', NULL, 'demetrio vilca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8524', NULL, 'PEPITA RENGIFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8525', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8526', NULL, 'agustina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8527', NULL, 'DELIA HUARINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8528', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8529', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8530', NULL, 'martha ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8531', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8532', NULL, 'alexis laguna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8533', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8534', NULL, 'RAMIRO VELAZQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8535', NULL, 'PEDRO LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8536', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8537', NULL, 'PEDRO COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8538', NULL, 'MARIA TRUJILLO', '10034955', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8539', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8540', NULL, 'NANCY CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8541', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8542', NULL, 'MARIA ELENA VALENZUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8543', NULL, 'MARIA ELENA VALENZUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8544', NULL, 'RUIFINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8545', NULL, 'NOEMI LOZADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8546', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8547', NULL, 'MIREYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8548', NULL, 'PEDRO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8549', NULL, 'RAFAEL ORIHUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8550', NULL, 'sayda lavado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8551', NULL, 'ROSINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8552', NULL, 'cenaida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8553', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8554', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8555', NULL, 'juana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8556', NULL, 'erika lazo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8557', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8558', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8559', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8560', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8561', NULL, 'L´ECOLE PRODUITS S.A.C.', '', '20511035059', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8562', NULL, 'CATALINA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8563', NULL, 'LILIANA', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8564', NULL, 'LILIANA', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8565', NULL, 'cesar manti', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8566', NULL, 'cesar manti', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8567', NULL, 'adan vega', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8568', NULL, 'adan vega', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8569', NULL, 'FELICITA', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8570', NULL, 'FELICITA', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8571', NULL, 'FELICITA', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8572', NULL, 'vitalia', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8573', NULL, 'vitalia', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8574', NULL, 'vitalia', '00000000', '', '', '', 'AV. VASCO NUÑEZ DE BALBOA NRO. 530 URB. MIRAFLORES (AV LA PAZ) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8575', NULL, 'JACKELINE robles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8576', NULL, 'JACKELINE robles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8577', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8578', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8579', NULL, 'MARICRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8580', NULL, 'MARICRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8581', NULL, 'MARICRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8582', NULL, 'miguel diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8583', NULL, 'miguel diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8584', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8585', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8586', NULL, 'GIOVANA VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8587', NULL, 'hector bravo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8588', NULL, 'samy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8589', NULL, 'HERMELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8590', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8591', NULL, 'EDUARDO DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8592', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8593', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8594', NULL, 'ELENA PACHECO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8595', NULL, 'NELLY NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8596', NULL, 'NELLY NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8597', NULL, 'NELLY NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8598', NULL, 'MEDALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8599', NULL, 'MEDALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8600', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8601', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8602', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8603', NULL, 'nataly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8604', NULL, 'nataly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8605', NULL, 'SAMUEL PEDRO ACUÑA ENCISO', '', '10067656461', '', '', 'JR. HUANTA 1104 LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8606', NULL, 'SAMUEL PEDRO ACUÑA ENCISO', '', '10067656461', '', '', 'JR. HUANTA 1104 LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8607', NULL, 'ALAN PAICO', '00000000', '', '', '', 'JR. HUANTA 1104 LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8608', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8609', NULL, 'PATRICIA AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8610', NULL, 'CLAUDIA', '00000000', '', '', '', 'JR HUANTA 1104 LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8611', NULL, 'yolanda', '00000000', '', '', '', 'JR HUANTA 1104 LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8612', NULL, 'yolanda', '00000000', '', '', '', 'JR HUANTA 1104 LIMA LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8613', NULL, 'LILIANA MATALLANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8614', NULL, 'PABLO CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8615', NULL, 'LICHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8616', NULL, 'LICHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8617', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8618', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8619', NULL, 'VILMA PIMENTEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8620', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8621', NULL, 'DINA RIONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8622', NULL, 'DINA RIONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8623', NULL, 'DINA RIONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8624', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8625', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8626', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8627', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8628', NULL, 'MALLARLI AMFEES GUZMAN CONTRERAS', '', '10740419116', '', '', 'JR. JORGE EZETA # 496 SAN BORJA LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8629', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8630', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8631', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8632', NULL, 'TEODORO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8633', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8634', NULL, 'TEODORO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8635', NULL, 'PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8636', NULL, 'MERCEDES VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8637', NULL, 'JESUS AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8638', NULL, 'OLGA NARASAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8639', NULL, 'LUZ DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8640', NULL, 'SEBASTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8641', NULL, 'YULISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8642', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8643', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8644', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8645', NULL, 'JACINTO MAQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8646', NULL, 'IVONE QUISPE ATUNCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8647', NULL, 'JUANA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8648', NULL, 'MARGARITA ALMEIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8649', NULL, 'MARGARITA ALMEIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8650', NULL, 'MARGARITA ALMEIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8651', NULL, 'DEIONISIA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8652', NULL, 'DEIONISIA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8653', NULL, 'VASQUEZ SUARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8654', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8655', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8656', NULL, 'PRODUCTOS QUIMICOS DIAMANTI SOCIEDAD COMERCIAL DE RESPO', '', '20102239203', '', '', 'JR. CAJAMARQUILLA NRO. 1184 URB. ZARATE (ALT CUADRA 10 AV GRAN CHIMU) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8657', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8658', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8659', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8660', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8661', NULL, 'CLARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8662', NULL, 'LUCY ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8663', NULL, 'LUCY ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8664', NULL, 'LUIS CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8665', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8666', NULL, 'IRMA RIMAC', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8667', NULL, 'IRMA RIMAC APELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8668', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8669', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8670', NULL, 'ROGER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8671', NULL, 'MAXIMO FERNANDEZ FLORES', '08116120', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8672', NULL, 'ROSA SAMAME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8673', NULL, 'karina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8674', NULL, 'LLOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8675', NULL, 'irma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8676', NULL, 'LUIS VERASTEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8677', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8678', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8679', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8680', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8681', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8682', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8683', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8684', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8685', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8686', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8687', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8688', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8689', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8690', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8691', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8692', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8693', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8694', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8695', NULL, 'LIZ SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8696', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8697', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8698', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8699', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8700', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8701', NULL, 'SEBASTOIAN VICTORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8702', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8703', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8704', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8705', NULL, 'susana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8706', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8707', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8708', NULL, 'MARIELA PINTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8709', NULL, 'MARIELA PINTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8710', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8711', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8712', NULL, 'AARBEL EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITADA', '', '20494951968', '', '', 'AV. MIGUEL GRAU NRO. 470 ICA - ICA - PARCONA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8713', NULL, 'dorelli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8714', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8715', NULL, 'EUDALDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8716', NULL, 'DAVID BERROCAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8717', NULL, 'ALICIA QUESADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8718', NULL, 'ALICIA QUESADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8719', NULL, 'ALICIA QUESADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8720', NULL, 'ROSALIA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8721', NULL, 'ROSALIA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8722', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8723', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8724', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8725', NULL, 'ANTONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8726', NULL, 'ANTONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8727', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8728', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8729', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8730', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8731', NULL, 'lupe durand', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8732', NULL, 'lupe durand', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8733', NULL, 'tito melgarejo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8734', NULL, 'FERNANDO rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8735', NULL, 'FERNANDO rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8736', NULL, 'JANET FARFAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8737', NULL, 'JANET FARFAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8738', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8739', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8740', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8741', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8742', NULL, 'ZENAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8743', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8744', NULL, 'MIRIAN MONTALVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8745', NULL, 'MANUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8746', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8747', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8748', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8749', NULL, 'MIRIAN CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8750', NULL, 'ROSA FRANCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8751', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8752', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8753', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8754', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8755', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8756', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8757', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8758', NULL, 'JUAN CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8759', NULL, 'JUAN CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8760', NULL, 'JUAN CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8761', NULL, 'ORLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8762', NULL, 'ORLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8763', NULL, 'EDWIN LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8764', NULL, 'EDWIN LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8765', NULL, 'EDWIN LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8766', NULL, 'JHONY RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8767', NULL, 'JHONY RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8768', NULL, 'JHONY RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8769', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8770', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8771', NULL, 'CANANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8772', NULL, 'JULIO IPARRAGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8773', NULL, 'NANCY MATOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8774', NULL, 'VENANCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8775', NULL, 'LEONCIO HUAYCOCHEA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8776', NULL, 'CINTHYA SAN MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8777', NULL, 'CINTHYA SAN MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8778', NULL, 'YELITZAADANAQUE', '45286798', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8779', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8780', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8781', NULL, 'HECTOR VILLARAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8782', NULL, 'HECTOR VILLARAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8783', NULL, 'HECTOR VILLARAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8784', NULL, 'angel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8785', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8786', NULL, 'JOSE FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8787', NULL, 'LUCCIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8788', NULL, 'ANGELICA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8789', NULL, 'llovana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8790', NULL, 'FORTUNATO ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8791', NULL, 'FORTUNATO ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8792', NULL, 'ANA VALVERDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8793', NULL, 'ANA VALVERDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8794', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8795', NULL, 'VICTOR GUTARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8796', NULL, 'ALEJANDRO LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8797', NULL, 'ALEJANDRO LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8798', NULL, 'ELOISA PARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8799', NULL, 'ROSA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8800', NULL, 'MAGALI FLORIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8801', NULL, 'ELSA BURGOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8802', NULL, 'MARCO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8803', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8804', NULL, 'SUSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8805', NULL, 'NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8806', NULL, 'FAVIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8807', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8808', NULL, 'OLGA BELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8809', NULL, 'ISABEL ZHUNGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8810', NULL, 'GUSTAVO CHAUCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8811', NULL, 'PAOLA GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8812', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8813', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8814', NULL, 'DARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8815', NULL, 'CRUZ MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8816', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8817', NULL, 'EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8818', NULL, 'ALEJANDRO BERNARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8819', NULL, 'MARICRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8820', NULL, 'nataly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8821', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8822', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8823', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8824', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8825', NULL, 'MAGALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8826', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8827', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8828', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8829', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8830', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8831', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8832', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8833', NULL, 'PONCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8834', NULL, 'PONCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8835', NULL, 'jhon ventura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8836', NULL, 'jhon ventura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8837', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8838', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8839', NULL, 'ruiz odar charito', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8840', NULL, 'ruiz odar charito', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8841', NULL, 'ruiz odar charito', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8842', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8843', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8844', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8845', NULL, 'DARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8846', NULL, 'SANDRA PÁCHAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8847', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8848', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8849', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8850', NULL, 'ANTONIA ESCOBAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8851', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8852', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8853', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8854', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8855', NULL, 'MARIA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8856', NULL, 'BLANCA GALLARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8857', NULL, 'CARLOS MARQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8858', NULL, 'CARLOS MARQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8859', NULL, 'GLADYS  ZAMUDIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8860', NULL, 'OLGA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8861', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8862', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8863', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8864', NULL, 'IRMA BONILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8865', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8866', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8867', NULL, 'FANY CARRASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8868', NULL, 'FANY CARRASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8869', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8870', NULL, 'YAMALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8871', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8872', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8873', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8874', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8875', NULL, 'JHON FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8876', NULL, 'JHON FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8877', NULL, 'JHON FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8878', NULL, 'DEYSI TERRONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8879', NULL, 'YAMILE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8880', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8881', NULL, 'EDITORIAL ANGLO DEL PERU SA', '', '20511717991', '', '', 'AV. PETIT THOUARS NRO. 3860 (ESPALDA BRITANICO-AV.AREQUIPA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8882', NULL, 'GONZALO TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8883', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8884', NULL, 'julissa', '00000000', '', '', '', 'AV. PETIT THOUARS NRO. 3860 (ESPALDA BRITANICO-AV.AREQUIPA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8885', NULL, 'julissa', '00000000', '', '', '', 'AV. PETIT THOUARS NRO. 3860 (ESPALDA BRITANICO-AV.AREQUIPA) LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8886', NULL, 'RICARDO RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8887', NULL, 'LILIAN TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8888', NULL, 'IVAN DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8889', NULL, 'OSCAR MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8890', NULL, 'OSCAR MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8891', NULL, 'marilin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8892', NULL, 'marilin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8893', NULL, 'MIGUEL CASAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8894', NULL, 'MIGUEL CASAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8895', NULL, 'SPONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8896', NULL, 'SPONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8897', NULL, 'jhonatan hurtado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8898', NULL, 'carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8899', NULL, 'juan lozano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8900', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8901', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8902', NULL, 'OSAMBELA PASTOR ENRIQUE', '', '10402821898', '', '', 'AV. LA PAZ 1025 SAN MIGUEL-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8903', NULL, 'EUSEBIO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8904', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8905', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8906', NULL, 'flor ayala', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8907', NULL, 'flor ayala', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8908', NULL, 'MIRIAN PILLPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8909', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8910', NULL, 'MERY ARQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8911', NULL, 'SIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8912', NULL, 'CARMEN MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8913', NULL, 'CARMEN MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8914', NULL, 'CARMEN MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8915', NULL, 'MARY ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8916', NULL, 'LEONIDAS DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8917', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8918', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8919', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8920', NULL, 'AREAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8921', NULL, 'LUIS LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8922', NULL, 'LUIS LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8923', NULL, 'LUIS LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8924', NULL, 'LASINO S.A.', '', '20388829452', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8925', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8926', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8927', NULL, 'MARITZA VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8928', NULL, 'MARITZA VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8929', NULL, 'ERIKA MEJIA', '00000000', '', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8930', NULL, 'ERIKA MEJIA', '00000000', '', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8931', NULL, 'ERIKA MEJIA', '00000000', '', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8932', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8933', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8934', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8935', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8936', NULL, 'JUQANA ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8937', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8938', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8939', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8940', NULL, 'MIGUEL BAYLON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8941', NULL, 'FREDY ASTETE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8942', NULL, 'NANCY JARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8943', NULL, 'PAULA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8944', NULL, 'MAYRA ALEJANDRA ARANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8945', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8946', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8947', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8948', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8949', NULL, 'YESICA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8950', NULL, 'MARCILLA FELIX AQUILINA', '', '10091130501', '', '', 'ASOC DE VIVIENDA PARAISO FLORIDA MZ G LOTE 3 SMP', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8951', NULL, 'YESICA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8952', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8953', NULL, 'ROMERO FLORES JORGE LUIS', '', '10036664016', '', '', 'JR MONTEVIDEO MZ E - 39 ASOC OLIVOS SECTOR ED SMP', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8954', NULL, 'ABEL', '00000000', '', '', '', 'JR MONTEVIDEO MZ E - 39 ASOC OLIVOS SECTOR ED SMP', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8955', NULL, 'ABEL', '00000000', '', '', '', 'JR MONTEVIDEO MZ E - 39 ASOC OLIVOS SECTOR ED SMP', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8956', NULL, 'ABEL', '00000000', '', '', '', 'JR MONTEVIDEO MZ E - 39 ASOC OLIVOS SECTOR ED SMP', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8957', NULL, 'MONDRAGON', '00000000', '', '', '', 'JR MONTEVIDEO MZ E - 39 ASOC OLIVOS SECTOR ED SMP', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8958', NULL, 'MONDRAGON', '00000000', '', '', '', 'JR MONTEVIDEO MZ E - 39 ASOC OLIVOS SECTOR ED SMP', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8959', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8960', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8961', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8962', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8963', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8964', NULL, 'flor torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8965', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8966', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8967', NULL, 'MARTHA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8968', NULL, 'MARTHA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8969', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8970', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8971', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8972', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8973', NULL, 'RICHARD gonsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8974', NULL, 'MARIA ARRUNATEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8975', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8976', NULL, 'liz ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8977', NULL, 'liz ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8978', NULL, 'EDUARD QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8979', NULL, 'EDUARD QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8980', NULL, 'manuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8981', NULL, 'VANESA RAMODS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8982', NULL, 'JERSON RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8983', NULL, 'MARCELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8984', NULL, 'LEO LISANO SEDANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8985', NULL, 'MARINA DE GUERRA', '', '20153408191', '', '', 'AV. LA MARINA CDRA 36 S/N LAPERLA CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8986', NULL, 'LIZANO SEDANO LEO', '00000000', '', '', '', 'AV. LA MARINA CDRA 36 S/N LAPERLA CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8987', NULL, 'JANET', '00000000', '', '', '', 'AV. LA MARINA CDRA 36 S/N LAPERLA CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8988', NULL, 'VICTOR', '00000000', '', '', '', 'AV. LA MARINA CDRA 36 S/N LAPERLA CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8989', NULL, 'DIONISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8990', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8991', NULL, 'DIONICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8992', NULL, 'LILIANA BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8993', NULL, 'GRUPO CORPORATIVO G.S S.A.C', '', '20602238823', '', '', 'AV. ANDRES ARAMBURU #920 DPTO 201 URB. LIMATAMBO-SURQUILLO-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8994', NULL, 'JORGE RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8995', NULL, 'MARTHA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8996', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8997', NULL, 'DIANA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8998', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('8999', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9000', NULL, 'hernan leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9001', NULL, 'hernan leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9002', NULL, 'ANGEL GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9003', NULL, 'ANGEL GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9004', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9005', NULL, 'BETY REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9006', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9007', NULL, 'JHON MARGEL SANDOVAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9008', NULL, 'DELIA FLORES ARROYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9009', NULL, 'DELIA FLORES ARROYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9010', NULL, 'emilio bonilla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9011', NULL, 'emilio bonilla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9012', NULL, 'ORLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9013', NULL, 'ORLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9014', NULL, 'jean', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9015', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9016', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9017', NULL, 'AUGUSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9018', NULL, 'AUGUSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9019', NULL, 'AUGUSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9020', NULL, 'santos garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9021', NULL, 'santos garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9022', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9023', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9024', NULL, 'lidia perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9025', NULL, 'lidia perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9026', NULL, 'maricielo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9027', NULL, 'maricielo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9028', NULL, 'MAXIMILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9029', NULL, 'MAXIMILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9030', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9031', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9032', NULL, 'ROSA ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9033', NULL, 'ROXANA PINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9034', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9035', NULL, 'MONICA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9036', NULL, 'JAZMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9037', NULL, 'MIGUEL INCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9038', NULL, 'ORIANA SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9039', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9040', NULL, 'JULIO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9041', NULL, 'LAZO TORRES CARLOS ALBERTO', '', '10062449514', '', '', 'JIRON PARINACOCHAS #273 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9042', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9043', NULL, 'SOFIA GALVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9044', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9045', NULL, 'nancy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9046', NULL, 'isabel flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9047', NULL, 'TEOFILO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9048', NULL, 'MNDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9049', NULL, 'belen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9050', NULL, 'DANI MED IMPORT  S. A. C.', '', '20503747341', '', '', 'JR. CHANCAY 680 - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9051', NULL, 'diana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9052', NULL, 'FERNANDO QUISPE VENTURA', '00000000', '', '', '', 'JR. CHANCAY 680 - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9053', NULL, 'paola yola', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9054', NULL, 'FERNANDO QUISPE VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9055', NULL, 'LUZ OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9056', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9057', NULL, 'mery garay', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9058', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9059', NULL, 'SEBASTEANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9060', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9061', NULL, 'EVARISTO IRRIBARREN CARHUACHIN', '', '10802909557', '', '', 'ASOC. LOS SAUCES MZ D LT 21 PUENTE PIEDRA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9062', NULL, 'TERESA NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9063', NULL, 'MAGDALENA ANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9064', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9065', NULL, 'ASUNCIOOON SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9066', NULL, 'JERTRUDIS GALVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9067', NULL, 'MIRTA JACINTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9068', NULL, 'FELICITA RAMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9069', NULL, 'REBECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9070', NULL, 'REBECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9071', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9072', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9073', NULL, 'RUDY MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9074', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9075', NULL, 'GUADALUPE NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9076', NULL, 'soledad', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9077', NULL, 'ROSENDA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9078', NULL, 'JESSUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9079', NULL, 'JESSUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9080', NULL, 'karina meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9081', NULL, 'karina meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9082', NULL, 'karina meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9083', NULL, 'BRENDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9084', NULL, 'LUIS NONALAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9085', NULL, 'julia medrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9086', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9087', NULL, 'LISET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9088', NULL, 'donatila cano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9089', NULL, 'MARIA LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9090', NULL, 'SOILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9091', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9092', NULL, 'DEYSI  MORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9093', NULL, 'candelaria quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9094', NULL, 'candelaria quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9095', NULL, 'NARCISO ZUMARAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9096', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9097', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9098', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9099', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9100', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9101', NULL, 'RASABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9102', NULL, 'JONATAN oliva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9103', NULL, 'JONATAN oliva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9104', NULL, 'ROSABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9105', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9106', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9107', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9108', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9109', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9110', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9111', NULL, 'BETY GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9112', NULL, 'BETY GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9113', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9114', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9115', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9116', NULL, 'BRIAYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9117', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9118', NULL, 'FR SYSTEM S.A.C', '', '20601579317', '', '', 'AV. GARCILASO DE LA VEGA #1260 OF. 6 CERCADO DE LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9119', NULL, 'FR SYSTEM S.A.C.', '', '20601579317', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1260 INT. 6 URB. LIMA CERCADO LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9120', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9121', NULL, 'MANUEL DAMIAN', '00000000', '', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1260 INT. 6 URB. LIMA CERCADO LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9122', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9123', NULL, 'MARLENE INOCENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9124', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9125', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9126', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9127', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9128', NULL, 'ÑAHUI CASTILLO CARLOS DAVID', '', '10420098362', '', '', 'JR GARCIA NARANJO 060 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9129', NULL, 'zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9130', NULL, 'WILLIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9131', NULL, 'MARIA', '00000000', '', '', '', 'JR GARCIA NARANJO 060 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9132', NULL, 'MARIA', '00000000', '', '', '', 'JR GARCIA NARANJO 060 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9133', NULL, 'MARIA', '00000000', '', '', '', 'JR GARCIA NARANJO 060 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9134', NULL, 'WALTER HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9135', NULL, 'gloria huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9136', NULL, 'olga huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9137', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9138', NULL, 'olga huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9139', NULL, 'BRENDA JARAMILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9140', NULL, 'LIZETH LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9141', NULL, 'erika salvatirra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9142', NULL, 'ERIKA SALVATIERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9143', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9144', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9145', NULL, 'guillermo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9146', NULL, 'ROSA GALLEGOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9147', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9148', NULL, 'ANA VILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9149', NULL, 'TATIANA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9150', NULL, 'YOLANDA RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9151', NULL, 'CLOTILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9152', NULL, 'LUANA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9153', NULL, 'YUBEL RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9154', NULL, 'MARGOTH RAYMUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9155', NULL, 'MARGOTH RAYMUNDO', '04049315', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9156', NULL, 'MELANI ARAUJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9157', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9158', NULL, 'IVAN ROMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9159', NULL, 'IVAN ROMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9160', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9161', NULL, 'NANCY YAÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9162', NULL, 'EDUARDO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9163', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9164', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9165', NULL, 'VALOIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9166', NULL, 'JOEL MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9167', NULL, 'COOPERATIVA DE AHORRO Y CRÉDITO \"SANTA MARÍA MAGDALENA\"', '', '20129258323', '', '', 'JR. SAN MARTIN NRO. 558 CERCADO AYACUCHO - HUAMANGA - AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9168', NULL, 'COOPERATIVA DE AHORRO Y CRÉDITO \"SANTA MARÍA MAGDALENA\"', '', '20129258323', '', '', 'JR. SAN MARTIN NRO. 558 CERCADO AYACUCHO - HUAMANGA - AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9169', NULL, 'WILDER PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9170', NULL, 'GUTIERRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9171', NULL, 'MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9172', NULL, 'MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9173', NULL, 'SANDRA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9174', NULL, 'VILLA FRANCA LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9175', NULL, 'KETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9176', NULL, 'YUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9177', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9178', NULL, 'BETY ECHEVARRIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9179', NULL, 'EBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9180', NULL, 'MADELEIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9181', NULL, 'MADELEIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9182', NULL, 'ISABEL AQUINO SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9183', NULL, 'ISABEL AQUINO SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9184', NULL, 'CARMEN ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9185', NULL, 'ANTONIO LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9186', NULL, 'ARACELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9187', NULL, 'MERY LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9188', NULL, 'MERY LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9189', NULL, 'nelson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9190', NULL, 'nelson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9191', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9192', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9193', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9194', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9195', NULL, 'GUSTAVO MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9196', NULL, 'GUSTAVO MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9197', NULL, 'KARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9198', NULL, 'KARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9199', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9200', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9201', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9202', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9203', NULL, 'alicia gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9204', NULL, 'ISABEL ILLESCAS BARZOLA', '', '10076488580', '', '', 'A.H- LOS GERANIOS MZ C LT 9 PUENTE PIEDRA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9205', NULL, 'JENY MELENDEZ', '00000000', '', '', '', 'A.H- LOS GERANIOS MZ C LT 9 PUENTE PIEDRA-LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9206', NULL, 'JENY MELENDEZ', '00000000', '', '', '', 'A.H- LOS GERANIOS MZ C LT 9 PUENTE PIEDRA-LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9207', NULL, 'ESTEFANIA ANCHANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9208', NULL, 'NOELIA ROJAS BACILIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9209', NULL, 'HUGO SULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9210', NULL, 'EDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9211', NULL, 'lola espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9212', NULL, 'GALINDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9213', NULL, 'ESTEFANO REATEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9214', NULL, 'HI TECH TEAM E.I.R.L.', '', '20534564644', '', '', 'MZA. C LOTE. 92 OTR. C.C ICA SUR ICA - ICA - ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9215', NULL, 'madelein', '00000000', '', '', '', 'MZA. C LOTE. 92 OTR. C.C ICA SUR ICA - ICA - ICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9216', NULL, 'TOMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9217', NULL, 'TOMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9218', NULL, 'virginia carmen', '44877646', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9219', NULL, 'willians ochoa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9220', NULL, 'carmen sueldo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9221', NULL, 'JUAN GRADOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9222', NULL, 'MANUEL HUAYLANI ENRIQUE', '', '10412982580', '', '', 'JR. CANTO RODADO #420 LA HUAYRONA S.J.L-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9223', NULL, 'RABINO FELIX', '07432789', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9224', NULL, 'ELMA CARRASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9225', NULL, 'IVONE ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9226', NULL, 'IVONE ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9227', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9228', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9229', NULL, 'DORA ROMERO RODRIGUEZ', '07213000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9230', NULL, 'victor solis zeballos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9231', NULL, 'victor solis zeballos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9232', NULL, 'victor solis zeballos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9233', NULL, 'IRIS ALANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9234', NULL, 'VILMA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9235', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9236', NULL, 'NAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9237', NULL, 'JULIA GARAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9238', NULL, 'TERESA JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9239', NULL, 'aurelia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9240', NULL, 'JULIA PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9241', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9242', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9243', NULL, 'LUIS HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9244', NULL, 'LUIS HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9245', NULL, 'ROSA HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9246', NULL, 'JUAN GRADOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9247', NULL, 'MIRLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9248', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9249', NULL, 'COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9250', NULL, 'MARIA MUQUILLASO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9251', NULL, 'COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9252', NULL, 'ERNESTO SAAVEDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9253', NULL, 'ALSELU FAST SOLUTION SYSTEMS S.A.C.', '', '20600473272', '', '', 'JR. PUNO NRO. 1310 INT. 2 URB. CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9254', NULL, 'SILVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9255', NULL, 'rita', '00000000', '', '', '', 'JR. PUNO NRO. 1310 INT. 2 URB. CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9256', NULL, 'MARIA ZAMORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9257', NULL, 'MARIA', '00000000', '', '', '', 'JR. PUNO NRO. 1310 INT. 2 URB. CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9258', NULL, 'MARIA', '00000000', '', '', '', 'JR. PUNO NRO. 1310 INT. 2 URB. CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9259', NULL, 'DIANA TASAICO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9260', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9261', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9262', NULL, 'MIRIAN VALDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9263', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9264', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9265', NULL, 'jhony', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9266', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9267', NULL, 'VANESA PORTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9268', NULL, 'VANESA CORTIJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9269', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9270', NULL, 'INVERSIONES Y PROMOCIONES TURISTICAS INCA SOCIEDAD ANON', '', '20100468159', '', '', 'JR. AZANGARO NRO. 754 INT. A LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9271', NULL, 'WENDOLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9272', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9273', NULL, 'MARCO MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9274', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9275', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9276', NULL, 'EDITA GARCIA PINTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9277', NULL, 'EDITA GARCIA PINTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9278', NULL, 'MARILU RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9279', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9280', NULL, 'MADELEINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9281', NULL, 'IRMA PADILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9282', NULL, 'GLADIS VILLAALSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9283', NULL, 'GLADIS VILLAALSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9284', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9285', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9286', NULL, 'RICARDO UBILLUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9287', NULL, 'GLADIS VILLALZAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9288', NULL, 'AMALIA ZELA RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9289', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9290', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9291', NULL, 'VICTOR RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9292', NULL, 'JUAN GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9293', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9294', NULL, 'LIZBETH RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9295', NULL, 'ROBERTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9296', NULL, 'CARLOS POLANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9297', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9298', NULL, 'LUIS RENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9299', NULL, 'LUIS RENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9300', NULL, 'ORTENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9301', NULL, 'ORTENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9302', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9303', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9304', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9305', NULL, 'GUERRERO QUISPE SIMEON', '', '10273874289', '', '', 'JR LETICIA 663-STAND 137-138 -LIMA-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9306', NULL, 'JULIA INOCENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9307', NULL, 'CONY ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9308', NULL, 'MARIA SINCHE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9309', NULL, 'elias caballero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9310', NULL, 'elias caballero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9311', NULL, 'karina fuentes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9312', NULL, 'karina fuentes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9313', NULL, 'karina fuentes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9314', NULL, 'ANGELA SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9315', NULL, 'SANDRA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9316', NULL, 'CLARISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9317', NULL, 'LUIS LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9318', NULL, 'LUIS LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9319', NULL, 'MELISA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9320', NULL, 'NAOMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9321', NULL, 'NAOMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9322', NULL, 'NAOMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9323', NULL, 'NAOMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9324', NULL, 'NAOMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9325', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9326', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9327', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9328', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9329', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9330', NULL, 'LUPERCIO MARCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9331', NULL, 'LUPERCIO MARCA FERNANDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9332', NULL, 'LUPERCIO MARCA FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9333', NULL, 'LIPERCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9334', NULL, 'LIPERCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9335', NULL, 'LIPERCIO MARCA FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9336', NULL, 'LIPERCIO MARCA FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9337', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9338', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9339', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9340', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9341', NULL, 'SHARON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9342', NULL, 'SHARON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9343', NULL, 'SHARON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9344', NULL, 'CATALINA LAZARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9345', NULL, 'GUSTAVO SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9346', NULL, 'LIZ PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9347', NULL, 'LIZ PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9348', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9349', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9350', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9351', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9352', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9353', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9354', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9355', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9356', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9357', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9358', NULL, 'ANALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9359', NULL, 'ANALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9360', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9361', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9362', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9363', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9364', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9365', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9366', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9367', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9368', NULL, 'anali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9369', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9370', NULL, 'irma castañeda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9371', NULL, 'irma castañeda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9372', NULL, 'irma castañeda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9373', NULL, 'irma castañeda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9374', NULL, 'cindia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9375', NULL, 'NELY LEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9376', NULL, 'NELY LEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9377', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9378', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9379', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9380', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9381', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9382', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9383', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9384', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9385', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9386', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9387', NULL, 'jorge encarnacion', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9388', NULL, 'jorge encarnacion', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9389', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9390', NULL, 'ELISABETH cespedes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9391', NULL, 'VILLAMONTE CANALES DE FLORES ELVIRA', '', '10067958107', '', '', 'AV ARICA 276 INT111 - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9392', NULL, 'maycol galvez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9393', NULL, 'GIULIANA ALIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9394', NULL, 'REYNOSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9395', NULL, 'CESAR LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9396', NULL, 'CESAR LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9397', NULL, 'melisa mango martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9398', NULL, 'hugo aparco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9399', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9400', NULL, 'doris', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9401', NULL, 'marco peralta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9402', NULL, 'marco peralta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9403', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9404', NULL, 'sonia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9405', NULL, 'yulexi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9406', NULL, 'renato alves', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9407', NULL, 'FRANCISCO PIELAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9408', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9409', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9410', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9411', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9412', NULL, 'CIPRIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9413', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9414', NULL, 'PEDRO AREAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9415', NULL, 'CRISTHIAN CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9416', NULL, 'BRYAN', '00000000', '', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9417', NULL, 'JENY FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9418', NULL, 'JENY FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9419', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9420', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9421', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9422', NULL, 'RUBI HIDALGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9423', NULL, 'MENDOZA CHUQUILIN ALEXANDRA CAROLINA', '', '10448009985', '', '', 'TORRE C DEPT 202 CONDOMINIO CIUDAD NUEVA - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9424', NULL, 'ERLINDA ATACHAO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9425', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9426', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9427', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9428', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9429', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9430', NULL, 'hemry', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9431', NULL, 'MIRTHA CHUQUITAYPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9432', NULL, 'PERUANA DE ENERGIA S.A.A', '', '20338352728', '', '', 'JR. ARNALDO ALVARADO D. NRO. 392 URB. PAMPAS DE SANTA TERESA (EX CALLE C- PROLONGAC.AV.PRIMAVERA) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9433', NULL, 'PERUANA DE ENERGIA S.A.A', '', '20338352728', '', '', 'JR. ARNALDO ALVARADO D. NRO. 392 URB. PAMPAS DE SANTA TERESA (EX CALLE C- PROLONGAC.AV.PRIMAVERA) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9434', NULL, 'CAMILA ORELLANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9435', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9436', NULL, 'OLENKA DIAZ', '00000000', '', '', '', 'JR. ARNALDO ALVARADO D. NRO. 392 URB. PAMPAS DE SANTA TERESA (EX CALLE C- PROLONGAC.AV.PRIMAVERA) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9437', NULL, 'OLENKA DIAZ', '00000000', '', '', '', 'JR. ARNALDO ALVARADO D. NRO. 392 URB. PAMPAS DE SANTA TERESA (EX CALLE C- PROLONGAC.AV.PRIMAVERA) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9438', NULL, 'OLENKA DIAZ', '00000000', '', '', '', 'JR. ARNALDO ALVARADO D. NRO. 392 URB. PAMPAS DE SANTA TERESA (EX CALLE C- PROLONGAC.AV.PRIMAVERA) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9439', NULL, 'ANGELA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9440', NULL, 'PAULINA', '00000000', '', '', '', 'JR. ARNALDO ALVARADO D. NRO. 392 URB. PAMPAS DE SANTA TERESA (EX CALLE C- PROLONGAC.AV.PRIMAVERA) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9441', NULL, 'PAULINA', '00000000', '', '', '', 'JR. ARNALDO ALVARADO D. NRO. 392 URB. PAMPAS DE SANTA TERESA (EX CALLE C- PROLONGAC.AV.PRIMAVERA) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9442', NULL, 'KEVIN VALDIVIEZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9443', NULL, 'ALICIA BORNAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9444', NULL, 'valdiviezo orosco kevin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9445', NULL, 'samanta pasache', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9446', NULL, 'samanta pasache', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9447', NULL, 'silvia martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9448', NULL, 'silvia martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9449', NULL, 'silvia martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9450', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9451', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9452', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9453', NULL, 'segundo bazan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9454', NULL, 'JULISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9455', NULL, 'jesus hualpa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9456', NULL, 'GIANNINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9457', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9458', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9459', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9460', NULL, 'KAREN GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9461', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9462', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9463', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9464', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9465', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9466', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9467', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9468', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9469', NULL, 'OLLACHICA TACO DIONICIO', '', '10065685561', '', '', 'asoc santa cruz calle lima mz b lote 29 ate vitarte', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9470', NULL, 'AURORA VERGARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9471', NULL, 'OLLACHICA TACO DIONICIO', '', '10065685561', '', '', 'CALLE LIMA MZ B LOTE 29 ASOC SANTA CRUZ ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9472', NULL, 'OLLACHICA TACO DIONICIO', '', '10065685561', '', '', 'CALLE LIMA MZ B LOTE 29 ASOC SANTA CRUZ ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9473', NULL, 'FELICIA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9474', NULL, 'ILLARI PSICOLOGOS ASOCIADOS SOCIEDAD ANONIMA CERRADA', '', '20478035439', '', '', 'CAL.MANUEL ARRISUEÑO NRO. 498 URB. SANTA CATALINA (ESPALDA DEL COLEGIO VICTOR ANDRES BELAUN) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9475', NULL, 'FRANCISCA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9476', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9477', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9478', NULL, 'SILVIA PARIAMACHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9479', NULL, 'CRISTINA BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9480', NULL, 'CRISTINA BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9481', NULL, 'CRISTINA BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9482', NULL, 'nora avila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9483', NULL, 'PRICILA ROBLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9484', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9485', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9486', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9487', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9488', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9489', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9490', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9491', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9492', NULL, 'ALISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9493', NULL, 'ALISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9494', NULL, 'FIORELLA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9495', NULL, 'FIORELLA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9496', NULL, 'EDWIN SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9497', NULL, 'EDWIN SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9498', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9499', NULL, 'gerardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9500', NULL, 'gerardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9501', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9502', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9503', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9504', NULL, 'estela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9505', NULL, 'rudy ponce', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9506', NULL, 'DUNIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9507', NULL, 'mayer', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9508', NULL, 'ANGELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9509', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9510', NULL, 'ana liz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9511', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9512', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9513', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9514', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9515', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9516', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9517', NULL, 'RAYMUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9518', NULL, 'ENMA SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9519', NULL, 'FLOR VARGAS CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9520', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9521', NULL, 'ANGELA MOLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9522', NULL, 'MARCO CHUNGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9523', NULL, 'EVER VALERIO CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9524', NULL, 'CIELO PEÑA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9525', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9526', NULL, 'MANUEL CUSICHI NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9527', NULL, 'CECILIA PINEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9528', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9529', NULL, 'BETTY QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9530', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9531', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9532', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9533', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9534', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9535', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9536', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9537', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9538', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9539', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9540', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9541', NULL, 'CHINTIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9542', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9543', NULL, 'JHONY PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9544', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9545', NULL, 'CIRA MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9546', NULL, 'VARGAS SAMBRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9547', NULL, 'VARGAS SAMBRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9548', NULL, 'ANA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9549', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9550', NULL, 'ANA BERMUDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9551', NULL, 'WILFREDO TENORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9552', NULL, 'VARGAS SAMBRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9553', NULL, 'NINI MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9554', NULL, 'SAMUEL ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9555', NULL, 'SAMUEL ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9556', NULL, 'SAMUEL ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9557', NULL, 'SAMUEL ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9558', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9559', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9560', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9561', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9562', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9563', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9564', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9565', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9566', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9567', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9568', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9569', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9570', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9571', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9572', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9573', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9574', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9575', NULL, 'AGUSTO DUEÑAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9576', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9577', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9578', NULL, 'VASO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9579', NULL, 'ELMER TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9580', NULL, 'ELUCARIA CHANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9581', NULL, 'JOSE GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9582', NULL, 'ELUCARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9583', NULL, 'MAXIMINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9584', NULL, 'MAXIMINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9585', NULL, 'EDUARDO ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9586', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9587', NULL, 'LUZ PAREDES SANTIBAÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9588', NULL, 'LUIS TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9589', NULL, 'PILAR EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9590', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9591', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9592', NULL, 'estrella', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9593', NULL, 'GUADALUPE ORRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9594', NULL, 'GUADALUPE ORRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9595', NULL, 'lorena oceda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9596', NULL, 'dudelia castro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9597', NULL, 'dudelia castro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9598', NULL, 'victor urbay', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9599', NULL, 'victor urbay', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9600', NULL, 'elagio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9601', NULL, 'elagio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9602', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9603', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9604', NULL, 'paula', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9605', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9606', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9607', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9608', NULL, 'lidia mendoza campos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9609', NULL, 'lidia mendoza campos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9610', NULL, 'melisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9611', NULL, 'carlos alfaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9612', NULL, 'carlos alfaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9613', NULL, 'CENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9614', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9615', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9616', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9617', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9618', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9619', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9620', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9621', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9622', NULL, 'LEONEL AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9623', NULL, 'LEONEL AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9624', NULL, 'GIOVANA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9625', NULL, 'GIONANA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9626', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9627', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9628', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9629', NULL, 'NOELIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9630', NULL, 'NOEMI BERROCAL', '45490379', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9631', NULL, 'maricela anampa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9632', NULL, 'WILSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9633', NULL, 'GRACIELA MAYHUA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9634', NULL, 'JANETT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9635', NULL, 'MARINIA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9636', NULL, 'JUAN ZACARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9637', NULL, 'ELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9638', NULL, 'PABLO BLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9639', NULL, 'KARINA QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9640', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9641', NULL, 'DEPILZONE S.A.C', '', '20547566239', '', '', 'AV. PRIMAVERA #517 S.S 102 SAN BORJA -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9642', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9643', NULL, 'BERTHA CAMPO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9644', NULL, 'ROSA PILCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9645', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9646', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9647', NULL, 'ROMEL TICLLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9648', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9649', NULL, 'JUANA TACSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9650', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9651', NULL, 'PITER COLCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9652', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9653', NULL, 'LEIDY HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9654', NULL, 'NAIDA CHAYCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9655', NULL, 'CORPORACION TURISTICA PERUANA S.A.C', '', '20265815830', '', '', 'AV. BENAVIDES #430 RES. MIRAFLORES INTERSECCION DE LA AV. BENAVIDES Y LARCO -LIMA-LIMA-MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9656', NULL, 'ELIZABETH GALLEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9657', NULL, 'CONSUELO ESTRADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9658', NULL, 'erika caballero', '09906135', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9659', NULL, 'ERICA MANRRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9660', NULL, 'ANA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9661', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9662', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9663', NULL, 'MARIA ROSA AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9664', NULL, 'SEGUNDO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9665', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9666', NULL, 'FERNANDO GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9667', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9668', NULL, 'ZIMONA TRUJILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9669', NULL, 'NIVIA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9670', NULL, 'LURI CHUMPITAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9671', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9672', NULL, 'FOOD SOLUTIONS TRADE EIRL', '', '20601099706', '', '', 'JR. BELISARIO FLORES #203 LINCE-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9673', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9674', NULL, 'DORA CASTAÑEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9675', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9676', NULL, 'AUGUSTO MILLONES VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9677', NULL, 'JACKELINE MANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9678', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9679', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9680', NULL, 'DAVID YANAVILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9681', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9682', NULL, 'RAFAEL LAUREANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9683', NULL, 'carla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9684', NULL, 'doris martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9685', NULL, 'teresa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9686', NULL, 'ester cherres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9687', NULL, 'isabel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9688', NULL, 'rosa cahuana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9689', NULL, 'ingsecon s.a.c', '', '20600408098', '', '', 'calle manuel ubalde y zevallos # 2661 dpto 406 cercado de lima-lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9690', NULL, 'henry cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9691', NULL, 'ana chiara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9692', NULL, 'ISABEL PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9693', NULL, 'PAOLA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9694', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9695', NULL, 'PATRICIA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9696', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9697', NULL, 'KAREN', '41633172', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9698', NULL, 'maria rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9699', NULL, 'GLADYS RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9700', NULL, 'ODILIA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9701', NULL, 'NANCY PAZ NIÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9702', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9703', NULL, 'NANCY PAZ NIÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9704', NULL, 'YANINA AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9705', NULL, 'NADIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9706', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9707', NULL, 'ARCENIA GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9708', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9709', NULL, 'NANCY MULIVE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9710', NULL, 'MIRTHA CLAROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9711', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9712', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9713', NULL, 'FELIPE SECAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9714', NULL, 'LUIS ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9715', NULL, 'LILIA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9716', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9717', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9718', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9719', NULL, 'ZENOBIA AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9720', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9721', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9722', NULL, 'SOLANGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9723', NULL, 'KAREN MATHEWS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9724', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9725', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9726', NULL, 'GRACIELA ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9727', NULL, 'SOCORRO ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9728', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9729', NULL, 'korina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9730', NULL, 'korina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9731', NULL, 'AIDE ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9732', NULL, 'AIDE ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9733', NULL, 'ELEMA IBAÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9734', NULL, 'ELEMA IBAÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9735', NULL, 'KIARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9736', NULL, 'COLEGIO SAN RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9737', NULL, 'ISABEL GALLEGOS LUQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9738', NULL, 'PATRICIA NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9739', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9740', NULL, 'JEFERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9741', NULL, 'JEFERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9742', NULL, 'LUCY DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9743', NULL, 'LUCY DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9744', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9745', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9746', NULL, 'ESTRELLA RA,MOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9747', NULL, 'ESTRELLA RA,MOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9748', NULL, 'CARMEN ASTORAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9749', NULL, 'YENNI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9750', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9751', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9752', NULL, 'CONSORCIO LEMIVIL SOCIEDAD ANONIMA CERRADA - CONSORCIO ', '', '20513825529', '', '', 'JR. LAS GROSELLAS NRO. 924 URB. LAS VIOLETAS (ALT PRDRO 7 DE LAS FLORES) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9753', NULL, 'LUIS VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9754', NULL, 'LUIS VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9755', NULL, 'fredy llamoca', '00000000', '', '', '', 'JR. LAS GROSELLAS NRO. 924 URB. LAS VIOLETAS (ALT PRDRO 7 DE LAS FLORES) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9756', NULL, 'fredy llamoca', '00000000', '', '', '', 'JR. LAS GROSELLAS NRO. 924 URB. LAS VIOLETAS (ALT PRDRO 7 DE LAS FLORES) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9757', NULL, 'carlos quiroz', '00000000', '', '', '', 'JR. LAS GROSELLAS NRO. 924 URB. LAS VIOLETAS (ALT PRDRO 7 DE LAS FLORES) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9758', NULL, 'MIRIAN ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9759', NULL, 'TELMA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9760', NULL, 'TELMA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9761', NULL, 'AMERICAN SOFT SOCIEDAD ANONIMA CERRADA', '', '20507411500', '', '', 'JR. LA LIBERTAD NRO. 949 DPTO. A (ALT CDRA 9 AV SUCRE) LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9762', NULL, 'OLINDA', '00000000', '', '', '', 'JR. LA LIBERTAD NRO. 949 DPTO. A (ALT CDRA 9 AV SUCRE) LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9763', NULL, 'KARINA CHUMPITAZ', '00000000', '', '', '', 'JR. LA LIBERTAD NRO. 949 DPTO. A (ALT CDRA 9 AV SUCRE) LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9764', NULL, 'KARINA CHUMPITAZ', '40388996', '', '', '', 'JR. LA LIBERTAD NRO. 949 DPTO. A (ALT CDRA 9 AV SUCRE) LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9765', NULL, 'ROCIO', '00000000', '', '', '', 'JR. LA LIBERTAD NRO. 949 DPTO. A (ALT CDRA 9 AV SUCRE) LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9766', NULL, 'LILIA', '00000000', '', '', '', 'JR. LAS GROSELLAS NRO. 924 URB. LAS VIOLETAS (ALT PRDRO 7 DE LAS FLORES) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9767', NULL, 'ALINA CUEVA', '00000000', '', '', '', 'JR. LA LIBERTAD NRO. 949 DPTO. A (ALT CDRA 9 AV SUCRE) LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9768', NULL, 'ALINA CUEVA', '00000000', '', '', '', 'JR. LA LIBERTAD NRO. 949 DPTO. A (ALT CDRA 9 AV SUCRE) LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9769', NULL, 'ALCANCE MUNDIAL PERU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9770', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9771', NULL, 'carolina la barrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9772', NULL, 'ESPERANZA FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9773', NULL, 'ESPERANZA FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9774', NULL, 'HAIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9775', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9776', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9777', NULL, 'PABLO DE DIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9778', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9779', NULL, 'FERNANDO SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9780', NULL, 'MAURICIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9781', NULL, 'MNDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9782', NULL, 'MNDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9783', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9784', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9785', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9786', NULL, 'MARITZA vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9787', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9788', NULL, 'LILIANA LUZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9789', NULL, 'LILIANA LUZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9790', NULL, 'ESPINOZA JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9791', NULL, 'GRACIELA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9792', NULL, 'GRACIELA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9793', NULL, 'GAUDECIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9794', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9795', NULL, 'MIRIAN HUAYNATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9796', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9797', NULL, 'JOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9798', NULL, 'MARCELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9799', NULL, 'MARCELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9800', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9801', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9802', NULL, 'MANUEL NOYA DE LA PIEDRA', '00000000', '', '', '', 'JR OCOÑA 180 2DO PISO LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9803', NULL, 'MARLENE ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9804', NULL, 'MARIA CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9805', NULL, 'ISAIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9806', NULL, 'CHAMBI CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9807', NULL, 'FRANCISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9808', NULL, 'GLADYS CAMACHO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9809', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9810', NULL, 'MARGARITA DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9811', NULL, 'JUAN GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9812', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9813', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9814', NULL, 'FELIX GARCIA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9815', NULL, 'VIVIANA SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9816', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9817', NULL, 'LIDIA MALDONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9818', NULL, 'LUIGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9819', NULL, 'LUIS ROCHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9820', NULL, 'LUZ MILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9821', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9822', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9823', NULL, 'BEDON GLICERIO MENDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9824', NULL, 'LILIANA LENGUA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9825', NULL, 'LILIANA LENGUA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9826', NULL, 'CHARLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9827', NULL, 'CHARLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9828', NULL, 'ESTER ROSA NAPAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9829', NULL, 'ESTER ROSA NAPAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9830', NULL, 'MARCIAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9831', NULL, 'MARCIAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9832', NULL, 'MARCIAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9833', NULL, 'GENESIS COMUNICACIONES SOCIEDAD ANONIMA CERRADA', '', '20523759834', '', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9834', NULL, 'TERESA', '00000000', '', '', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9835', NULL, 'TERESA', '00000000', '', '', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9836', NULL, 'UMBELINDA', '00000000', '', '', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9837', NULL, 'UMBELINDA', '00000000', '', '', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9838', NULL, 'UMBELINDA', '00000000', '', '', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9839', NULL, 'RAQUEL PEREZ', '00000000', '', '', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9840', NULL, 'RAQUEL PEREZ', '00000000', '', '', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9841', NULL, 'REYNA', '00000000', '', '991983828', '', 'CAL.LOS MOGABUROS NRO. 215 (OFC 305 INT 3 ALT. GRAL GARZON CDRA 6) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9842', NULL, 'denise CASTIÑLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9843', NULL, 'denise CASTIÑLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9844', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9845', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9846', NULL, 'JUANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9847', NULL, 'JUANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9848', NULL, 'esmeralda ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9849', NULL, 'esmeralda ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9850', NULL, 'CAMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9851', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9852', NULL, 'NORMA MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9853', NULL, 'GIAN CARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9854', NULL, 'CARMEN ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9855', NULL, 'CARMEN ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9856', NULL, 'JUAN RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9857', NULL, 'MIRIAN CORREA ESCALANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9858', NULL, 'MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9859', NULL, 'MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9860', NULL, 'CH CONSULTORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9861', NULL, 'ALCIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9862', NULL, 'LEONOR ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9863', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9864', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9865', NULL, 'FABIAN CERRON AGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9866', NULL, 'FABIAN CERRON AGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9867', NULL, 'ELIZABETH VILLANUEVA VILLARAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9868', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9869', NULL, 'RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9870', NULL, 'RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9871', NULL, 'RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9872', NULL, 'ROSANA LEIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9873', NULL, 'ROSANA LEIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9874', NULL, 'ROSANA LEIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9875', NULL, 'CARMEN CUENCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9876', NULL, 'CARMEN CUENCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9877', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9878', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9879', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9880', NULL, 'RONALD CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9881', NULL, 'LEONEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9882', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9883', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9884', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9885', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9886', NULL, 'JORGE LEON CALERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9887', NULL, 'GILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9888', NULL, 'PEDRO BECERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9889', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9890', NULL, 'VIANCA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9891', NULL, 'julio chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9892', NULL, 'TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9893', NULL, 'OSWALDO TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9894', NULL, 'NESTOR CHAMBI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9895', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9896', NULL, 'MONICA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9897', NULL, 'ELVA RODRIGUEZ MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9898', NULL, 'JOSE AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9899', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9900', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9901', NULL, 'ALFARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9902', NULL, 'MARGARITA NORIEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9903', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9904', NULL, 'SILVIA TRAVESAÑO', '43969468', '', '', '', 'CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9905', NULL, 'GREY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9906', NULL, 'juan centeno', '00000000', '', '', '', 'ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9907', NULL, 'juan centeno', '00000000', '', '', '', 'ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9908', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9909', NULL, 'JIMENEZ', '00000000', '', '', '', 'ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9910', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9911', NULL, 'LINDIRA VILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9912', NULL, 'RICARDO AREVALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9913', NULL, 'CARHUAYO LOBATON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9914', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9915', NULL, 'MARIA PAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9916', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9917', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9918', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9919', NULL, 'YERRI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9920', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9921', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9922', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9923', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9924', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9925', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9926', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9927', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9928', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9929', NULL, 'SAMDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9930', NULL, 'SAMDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9931', NULL, 'ERIKA MANCHELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9932', NULL, 'ERIKA MANCHELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9933', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9934', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9935', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9936', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9937', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9938', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9939', NULL, 'SEGUNDO BAZAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9940', NULL, 'IRMA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9941', NULL, 'JULEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9942', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9943', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9944', NULL, 'carmen gabino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9945', NULL, 'MARIA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9946', NULL, 'FANNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9947', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9948', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9949', NULL, 'MARIELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9950', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9951', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9952', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9953', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9954', NULL, 'MERCEDES GUERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9955', NULL, 'JOSUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9956', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9957', NULL, 'DIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9958', NULL, 'DIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9959', NULL, 'BERTHA HURTADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9960', NULL, 'rosa cerron', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9961', NULL, 'rosa cerron', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9962', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9963', NULL, 'MARINA APAZA', '07111185', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9964', NULL, 'PETER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9965', NULL, 'IBETH DOMINGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9966', NULL, 'IBETH DOMINGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9967', NULL, 'jose serrato', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9968', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9969', NULL, 'SOFIA GALVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9970', NULL, 'LUSMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9971', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9972', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9973', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9974', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9975', NULL, 'JEYSSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9976', NULL, 'JEYSSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9977', NULL, 'HERNAN CANOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9978', NULL, 'HERNAN CANOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9979', NULL, 'FELIPE BURNEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9980', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9981', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9982', NULL, 'PERCY RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9983', NULL, 'PERCY RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9984', NULL, 'JULISA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9985', NULL, 'RUBEN RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9986', NULL, 'RUBEN RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9987', NULL, 'HECTOR MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9988', NULL, 'HECTOR MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9989', NULL, 'MAYRA TOLEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9990', NULL, 'ADELA  HUAYTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9991', NULL, 'CARLOS NAMUCHE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9992', NULL, 'ALEJANDRO NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9993', NULL, 'maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9994', NULL, 'MILAGROS MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9995', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9996', NULL, 'CARLOS GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9997', NULL, 'CARLOS GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9998', NULL, 'MARIA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('9999', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10000', NULL, 'MARGARITA PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10001', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10002', NULL, 'WALTER HUALLPAYUNCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10003', NULL, 'GIOVANA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10004', NULL, 'ROSA HIDALGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10005', NULL, 'ROMERO PAUCAR PABLO', '', '10090856605', '', '', 'URB MARISCAL LUZURIAGA MZ M LOTE 11 SJL', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10006', NULL, 'MARIA LANQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10007', NULL, 'MARIA LLANQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10008', NULL, 'DINA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10009', NULL, 'DINA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10010', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10011', NULL, 'AVELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10012', NULL, 'MICHELLE VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10013', NULL, 'MICHELLE VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10014', NULL, 'MICHELLE VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10015', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10016', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10017', NULL, 'evelin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10018', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10019', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10020', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10021', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10022', NULL, 'THOMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10023', NULL, 'BERTHA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10024', NULL, 'LUISA ACOSTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10025', NULL, 'JULIAN QUILLASH VALDEZ', '15689892', '', '', '', 'HUACHO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10026', NULL, 'DIANA RODRIGUEZ', '00000000', '', '', '', 'HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10027', NULL, 'LEONICIO ALFONSO TORRES', '15685935', '', '', '', 'HUACHO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10028', NULL, 'MIGUEL ROJAS', '44241487', '', '', '', 'CORACORA -AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10029', NULL, 'PATRICIA BECERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10030', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10031', NULL, 'MARICELA VERDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10032', NULL, 'SABINA BENITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10033', NULL, 'NELLY GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10034', NULL, 'CAMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10035', NULL, 'ESTRELLA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10036', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10037', NULL, 'IMPORTACIONES FREITAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10038', NULL, 'ELENA FALCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10039', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10040', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10041', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10042', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10043', NULL, 'VILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10044', NULL, 'geraldine', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10045', NULL, 'PAULINA DE SEGOVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10046', NULL, 'alicia rospigliosi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10047', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10048', NULL, 'palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10049', NULL, 'NORMA ALIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10050', NULL, 'FERNANDO PAITAN', '04078807', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10051', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10052', NULL, 'OLGA ROSALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10053', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10054', NULL, 'luciana aguilar cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10055', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10056', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10057', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10058', NULL, 'edumila de lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10059', NULL, 'edumila de lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10060', NULL, 'ANTONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10061', NULL, 'magnolia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10062', NULL, 'magnolia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10063', NULL, 'villanueva juana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10064', NULL, 'villanueva juana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10065', NULL, 'HORNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10066', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10067', NULL, 'JASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10068', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10069', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10070', NULL, 'ELYUD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10071', NULL, 'ELYUD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10072', NULL, 'ELYUD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10073', NULL, 'COTI GRACIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10074', NULL, 'COTI GRACIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10075', NULL, 'COTI GRACIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10076', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10077', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10078', NULL, 'YOANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10079', NULL, 'YOANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10080', NULL, 'YOANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10081', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10082', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10083', NULL, 'sally', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10084', NULL, 'sally', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10085', NULL, 'sally', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10086', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10087', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10088', NULL, 'RUQH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10089', NULL, 'JUAN DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10090', NULL, 'JUAN DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10091', NULL, 'RAFAEL VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10092', NULL, 'RAFAEL VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10093', NULL, 'RAFAEL VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10094', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10095', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10096', NULL, 'ELBA MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10097', NULL, 'hugo vidal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10098', NULL, 'JULIA ALBORNOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10099', NULL, 'SONIA MENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10100', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10101', NULL, 'ELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10102', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10103', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10104', NULL, 'KATERINE BLANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10105', NULL, 'PATRICIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10106', NULL, 'PATRICIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10107', NULL, 'JORGE DE LOS SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10108', NULL, 'ESTELA RAMOS ARANA', '00000000', '', '', '', 'CHINCHA-ALTA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10109', NULL, 'BERTA AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10110', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10111', NULL, 'INOCENTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10112', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10113', NULL, 'MARIA ELIZABETH GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10114', NULL, 'LOMA SOUND PERU SAC', '', '20601930171', '', '', 'AV. LAS CAMELIAS #877 int 302 SAN ISIDRO-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10115', NULL, 'LOMA SOUND PERU SAC', '', '20601930171', '', '', 'AV. LAS CAMELIAS #877 INT 302 SAN ISIDRO-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10116', NULL, 'YESICA VALDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10117', NULL, 'ERNESTINA CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10118', NULL, 'URBANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10119', NULL, 'JORGE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10120', NULL, 'GAUDENCIO', '08916291', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10121', NULL, 'MALUMI S.R.L', '', '20603803192', '', '', 'URB. VALENCIA E 17 YANAHUARA AREQUIPA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10122', NULL, 'LUIS HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10123', NULL, 'ELMER HUAMANJ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10124', NULL, 'ELMER HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10125', NULL, 'LUIS CHINCHAYANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10126', NULL, 'LUIS CHINCHAYANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10127', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10128', NULL, 'CARMEN RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10129', NULL, 'HEIDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10130', NULL, 'CASA DEL CLERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10131', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10132', NULL, 'MIGUELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10133', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10134', NULL, 'LUZ VILCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10135', NULL, 'TAIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10136', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10137', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10138', NULL, 'vanesa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10139', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10140', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10141', NULL, 'JAIME GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10142', NULL, 'GUIMY  ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10143', NULL, 'MELANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10144', NULL, 'GIAN PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10145', NULL, 'YAMIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10146', NULL, 'MILEYDI ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10147', NULL, 'DANIPSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10148', NULL, 'ROSAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10149', NULL, 'EVELIN GORDILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10150', NULL, 'MANUEL VICTOR OLORTIGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10151', NULL, 'DORIS HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10152', NULL, 'ANTONY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10153', NULL, 'CORINA TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10154', NULL, 'SEGUNDO REGALADO OCHOA', '', '10273645883', '', '', 'JR. 30 DE AGOSTO #713 CHOTA CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10155', NULL, 'YANELA CABELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10156', NULL, 'carmen paitan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10157', NULL, 'GREYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10158', NULL, 'MAYIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10159', NULL, 'DIGNA EMERITA LAUREANO LAVADO', '', '10179817123', '', '', 'AV. ESPAÑA 201 SEGUNDO PISO C78 TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10160', NULL, 'OMAR ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10161', NULL, 'GLADIS  RABINES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10162', NULL, 'NELIDA CERVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10163', NULL, 'LIZBETH LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10164', NULL, 'DORA OLIVARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10165', NULL, 'JULIO PINEDA FARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10166', NULL, 'LUZ BREÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10167', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10168', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10169', NULL, 'JONATHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10170', NULL, 'CARMELA LLEGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10171', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10172', NULL, 'PATRICIA BENAVIDES', '09314029', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10173', NULL, 'DANILO SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10174', NULL, 'ROSENDO  APONTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10175', NULL, 'wilian alata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10176', NULL, 'diana matias', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10177', NULL, 'miguel guillen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10178', NULL, 'betty jara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10179', NULL, 'JORGE GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10180', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10181', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10182', NULL, 'KARIN ARAMBURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10183', NULL, 'LORENA ORELLANA AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10184', NULL, 'soila morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10185', NULL, 'soila morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10186', NULL, 'JERUSALEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10187', NULL, 'FABIAN MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10188', NULL, 'jjaide', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10189', NULL, 'obando', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10190', NULL, 'YAIR LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10191', NULL, 'LUZMILA CHAHUIN HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10192', NULL, 'ISMAEL VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10193', NULL, 'ADELA AVILEA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10194', NULL, 'ADELA AVILEA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10195', NULL, 'ADELA AVILEA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10196', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10197', NULL, 'CONGREGACION DE RELIGIOSAS DE MARIA INMACULADA', '', '20160045532', '', '', 'AV.POLO 375 SANTIAGO DE SURCO -LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10198', NULL, 'CONGREGACION DE RELIGIOSAS DE MARIA INMACULADA', '', '20160045532', '', '', 'AV. EL POLO 375 SANTIAGO DE SURCO -LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10199', NULL, 'jorge medina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10200', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10201', NULL, 'ELVA MOSCOSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10202', NULL, 'ALEXIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10203', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10204', NULL, 'GERARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10205', NULL, 'YAIR CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10206', NULL, 'EMILIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10207', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10208', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10209', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10210', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10211', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10212', NULL, 'CHILEY REATEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10213', NULL, 'CHIRLEY REATEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10214', NULL, 'MARIA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10215', NULL, 'FERNANDO VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10216', NULL, 'TEOFILA MEJIA VALDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10217', NULL, 'ELENA QUISPE SAUCEDO', '40456494', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10218', NULL, 'ANA SIHUA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10219', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10220', NULL, 'tintayo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10221', NULL, 'ELIZABETH ASCONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10222', NULL, 'WALTER MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10223', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10224', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10225', NULL, 'CINTIA HUAMANI PANTALEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10226', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10227', NULL, 'lilia rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10228', NULL, 'lilia rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10229', NULL, 'ANN ELIZABETH CHAVEZ VALDIVIEZO', '', '10460073532', '', '', 'AV. CENTRAL # 85 PARAMONGA -BARRANCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10230', NULL, 'YANETH SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10231', NULL, 'RUBEN CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10232', NULL, 'LIZ ORDINOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10233', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10234', NULL, 'MILAGROS SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10235', NULL, 'YANINA HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10236', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10237', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10238', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10239', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10240', NULL, 'IVON REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10241', NULL, 'IVON REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10242', NULL, 'MICHAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10243', NULL, 'ROSA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10244', NULL, 'LIDIA', '78104070', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10245', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10246', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10247', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10248', NULL, 'JAIR LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10249', NULL, 'JAIR LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10250', NULL, 'rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10251', NULL, 'ROSA LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10252', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10253', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10254', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10255', NULL, 'eladio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10256', NULL, 'JULIA CABANILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10257', NULL, 'JULIA CABANILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10258', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10259', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10260', NULL, 'DEYSI SANTILLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10261', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10262', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10263', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10264', NULL, 'LIBIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10265', NULL, 'LIBIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10266', NULL, 'LIBIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10267', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10268', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10269', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10270', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10271', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10272', NULL, 'ISABEL BECERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10273', NULL, 'ESTELA SOLANO ALEJOS', '10463218', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10274', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10275', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10276', NULL, 'SALINAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10277', NULL, 'carlos cabanillas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10278', NULL, 'MARITZA GRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10279', NULL, 'SARELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10280', NULL, 'JHONI URTEAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10281', NULL, 'MIRTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10282', NULL, 'BARBARA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10283', NULL, 'ERIKA LOAYSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10284', NULL, 'YURICO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10285', NULL, 'OLIVER ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10286', NULL, 'JOSE LUIS ARI PARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10287', NULL, 'JOSE LUIS ARI PARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10288', NULL, 'ALEXANDER AGUILAR MELGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10289', NULL, 'ALEXANDER AGUILAR MELGAR', '09997002', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10290', NULL, 'RICHARD  RENGIFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10291', NULL, 'FERNANDINA CAMASCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10292', NULL, 'FERNANDINA CAMASCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10293', NULL, 'CENAIDA CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10294', NULL, 'NOLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10295', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10296', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10297', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10298', NULL, 'enrique rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10299', NULL, 'enrique rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10300', NULL, 'VICENTE AVALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10301', NULL, 'VICENTE AVALO PORTILLA', '', '10218090341', '', '', 'AV. AMERICA # 629 CHINCHA ALTA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10302', NULL, 'ANA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10303', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10304', NULL, 'LEONARDO HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10305', NULL, 'EMA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10306', NULL, 'EMA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10307', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10308', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10309', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10310', NULL, 'LISET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10311', NULL, 'LISET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10312', NULL, 'CINTHIA SAN MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10313', NULL, 'SILVIA YEPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10314', NULL, 'PEÑALOZA SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10315', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10316', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10317', NULL, 'ERIKA MANRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10318', NULL, 'ERIKA MANRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10319', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10320', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10321', NULL, 'WILMER MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10322', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10323', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10324', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10325', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10326', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10327', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10328', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10329', NULL, 'SMITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10330', NULL, 'SMITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10331', NULL, 'gino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10332', NULL, 'gino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10333', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10334', NULL, 'mirtha', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10335', NULL, 'MARIA SANTISTEBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10336', NULL, 'SERTRUP E.I.R.L.', '', '20603912633', '', '', 'CAL.VILLA LIBERTAD MZA. A-2 LOTE. 11 (ESPALDA DE PLAZA VEA) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10337', NULL, 'paucar', '00000000', '', '', '', 'CAL.VILLA LIBERTAD MZA. A-2 LOTE. 11 (ESPALDA DE PLAZA VEA) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10338', NULL, 'CARLOS SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10339', NULL, 'GABI LAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10340', NULL, 'DREYLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10341', NULL, 'CARLOS SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10342', NULL, 'CARLOS SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10343', NULL, 'PAOLA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10344', NULL, 'CARLOS SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10345', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10346', NULL, 'ALEJANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10347', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10348', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10349', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10350', NULL, 'CHISTRIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10351', NULL, 'jerry acosta', '10779762', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10352', NULL, 'AIDE MURIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10353', NULL, 'YEFNER RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10354', NULL, 'PATRICIA DE LA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10355', NULL, 'NANCY AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10356', NULL, 'MARLENE QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10357', NULL, 'PILAR GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10358', NULL, 'JUANA CANCHURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10359', NULL, 'WILLIANS ARELLANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10360', NULL, 'ARTICULOS METALICOS Y PUBLICITARIOS E.I.R.L', '', '20260983351', '', '', 'JR LAMPA 764 INT 165 LIMA CERCADO-LIMA -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10361', NULL, 'ARTICULOS METALICOS Y PUBLICITARIOS E.I.R.L', '', '20260983351', '', '', 'JR LAMPA 764 INT 165 LIMA CERCADO-LIMA -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10362', NULL, 'ANA MORANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10363', NULL, 'LIDIA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10364', NULL, 'victoria velarde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10365', NULL, 'victoria velarde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10366', NULL, 'GLORIA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10367', NULL, 'GLORIA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10368', NULL, 'LILIA LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10369', NULL, 'SUSAN GALINDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10370', NULL, 'PATRIC', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10371', NULL, 'DOROTEA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10372', NULL, 'JERRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10373', NULL, 'PILAR ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10374', NULL, 'MARIA ELENA FARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10375', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10376', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10377', NULL, 'OFELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10378', NULL, 'OFELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10379', NULL, 'VIRGINIA DURAND', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10380', NULL, 'IVAN QUINTANA OLIVOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10381', NULL, 'ENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10382', NULL, 'ENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10383', NULL, 'LUIS MARIA CASAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10384', NULL, 'CARMEN MESTANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10385', NULL, 'julissa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10386', NULL, 'LORENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10387', NULL, 'JUANA GODOY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10388', NULL, 'FREDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10389', NULL, 'FREDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10390', NULL, 'JOSEP HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10391', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10392', NULL, 'marleni MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10393', NULL, 'marleni MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10394', NULL, 'marleni MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10395', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10396', NULL, 'LIDIA ORBEGOSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10397', NULL, 'ROCIO ARAUJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10398', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10399', NULL, 'PERCY GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10400', NULL, 'ALDO CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10401', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10402', NULL, 'GISELA HUAYTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10403', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10404', NULL, 'YENIFER MONTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10405', NULL, 'VICTORIA MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10406', NULL, 'MONICA TEVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10407', NULL, 'VALENTIN NIETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10408', NULL, 'elva nacarino', '07415037', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10409', NULL, 'DIANA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10410', NULL, 'walter camacho rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10411', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10412', NULL, 'ISABEL LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10413', NULL, 'mauro medina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10414', NULL, 'ALICIA PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10415', NULL, 'CREMPET S.A.C.', '', '20392542397', '', '', 'AV. MRCAL ANDRES SANTA CRUZ NRO. 1457 DPTO. 101 URB. MIRAFLORES LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10416', NULL, 'ROSA SOLANO JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10417', NULL, 'CREMPET S.A.C.', '', '20392542397', '', '', 'AV. MRCAL ANDRES SANTA CRUZ NRO. 1457 DPTO. 101 URB. MIRAFLORES LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10418', NULL, 'IBETH DOMINGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10419', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10420', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10421', NULL, 'ROSA TOLENTINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10422', NULL, 'NESTOR TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10423', NULL, 'MARIA  POLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10424', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10425', NULL, 'RAUL AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10426', NULL, 'COMERCIAL ELECTROFER PERU S.R.L.', '', '20306631790', '', '', 'JR. PARURO NRO. 1322 INT. 224 (ASOC. COMERC. SANTA ROSA DE LIMA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10427', NULL, 'andre quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10428', NULL, 'nancy lozano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10429', NULL, 'jorge zevallos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10430', NULL, 'MIRTA HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10431', NULL, 'JOSEFA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10432', NULL, 'CRISTIAN YAURI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10433', NULL, 'VIDAL GEBOL GOMEZ', '', '10098310008', '', '', 'JR. WASHINGTON 1775 LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10434', NULL, 'MARY ACOSTA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10435', NULL, 'MAXIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10436', NULL, 'BENITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10437', NULL, 'FIDEL ANDRADE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10438', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10439', NULL, 'ZURLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10440', NULL, 'FLORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10441', NULL, 'ALDO VILLAFUERTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10442', NULL, 'SARITA MOLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10443', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10444', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10445', NULL, 'CARMEN RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10446', NULL, 'LUIS ROMERO ROLDAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10447', NULL, 'CARLOS CAMPO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10448', NULL, 'SASHIRA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10449', NULL, 'XIMENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10450', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10451', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10452', NULL, 'JESUS ENRIQUE TITO CORONEL', '', '10710373987', '', '', 'PSJE. LA ESPERANZA #135 YANAHUANCA DANIEL ALCIDES CARRION-PASCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10453', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10454', NULL, 'MARIELA MOLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10455', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10456', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10457', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10458', NULL, 'ANA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10459', NULL, 'MARTA MORAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10460', NULL, 'MARTA MORAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10461', NULL, 'MARTA MORAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10462', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10463', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10464', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10465', NULL, 'filomena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10466', NULL, 'amelia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10467', NULL, 'OMARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10468', NULL, 'CIRILO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10469', NULL, 'IRIS SALVATIERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10470', NULL, 'jhony ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10471', NULL, 'VICTORIA VALARDE ROQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10472', NULL, 'VICTORIA VALARDE ROQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10473', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10474', NULL, 'RITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10475', NULL, 'lizbeth peralta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10476', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10477', NULL, 'susana dieguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10478', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10479', NULL, 'ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10480', NULL, 'ISIDORA HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10481', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10482', NULL, 'jorge osorio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10483', NULL, 'CELIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10484', NULL, 'CELIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10485', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10486', NULL, 'CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10487', NULL, 'HAYDI CODOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10488', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10489', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10490', NULL, 'ERRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10491', NULL, 'FIDEL CARRASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10492', NULL, 'DOMINGO TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10493', NULL, 'JACOB', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10494', NULL, 'SAMUEL FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10495', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10496', NULL, 'DAVIDB LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10497', NULL, 'raquel rios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10498', NULL, 'richard', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10499', NULL, 'CLEBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10500', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10501', NULL, 'MAXIMO RAIMUNDO PADILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10502', NULL, 'MILAGROS AMPUERO ZANABRIA', '10508581', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10503', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10504', NULL, 'NELLY  MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10505', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10506', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10507', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10508', NULL, 'NELLY MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10509', NULL, 'AROMAS GOURMET PERU S.A.C.', '', '20601514941', '', '', 'MZA. 76 LOTE. 12 A.H. E. MILLA OCHOAL OLIVOS (ALT AV HUANDOY CON AV SAN MARTIN) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10510', NULL, 'AROMAS GOURMET PERU S.A.C.', '', '20601514941', '', '', 'MZA. 76 LOTE. 12 A.H. E. MILLA OCHOAL OLIVOS (ALT AV HUANDOY CON AV SAN MARTIN) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10511', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10512', NULL, 'CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10513', NULL, 'MERCEDES MONJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10514', NULL, 'MERCEDES MONJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10515', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10516', NULL, 'ALROSA S.A.C', '', '20603249136', '', '', 'JR. AMATISTA MZA. F LOTE. 19 COO. HUAYTAPALLANA (ALT. CDRA 40 DE UNIVERSITARIA LOS OLIVOS) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10517', NULL, 'ALROSA S.A.C', '', '20603249136', '', '', 'JR. AMATISTA MZA. F LOTE. 19 COO. HUAYTAPALLANA (ALT. CDRA 40 DE UNIVERSITARIA LOS OLIVOS) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10518', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10519', NULL, 'TEVES QUISPE JULIA', '', '10238657992', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10520', NULL, 'LUCHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10521', NULL, 'JULIO SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10522', NULL, 'JULIO SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10523', NULL, 'BERNAVITA FELICITA SALVADOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10524', NULL, 'HORNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10525', NULL, 'ANA LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10526', NULL, 'braulio pilco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10527', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10528', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10529', NULL, 'edson flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10530', NULL, 'edson flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10531', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10532', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10533', NULL, 'YANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10534', NULL, 'EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10535', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10536', NULL, 'ROSARIO PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10537', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10538', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10539', NULL, 'ana magallanes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10540', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10541', NULL, 'CORONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10542', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10543', NULL, 'gregoria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10544', NULL, 'MARIA LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10545', NULL, 'GIOVANA  ZABALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10546', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10547', NULL, 'ROSA gonsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10548', NULL, 'gilbert meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10549', NULL, 'RUTH vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10550', NULL, 'RUTH vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10551', NULL, 'susana torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10552', NULL, 'gaby', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10553', NULL, 'CLARISA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10554', NULL, 'SOLEDAD PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10555', NULL, 'COMO JUGANDO EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMI', '', '20450752062', '', '', 'CAL.LA UNION MZA. A LOTE. 16 URB. TTIO (COSTADO DE TIENDAS EFE POR CC MOLINO) CUSCO - CUSCO - WANCHAQ', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10556', NULL, 'LIDIA DE LA CRUZ HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10557', NULL, 'SARA ECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10558', NULL, 'MANUEL ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10559', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10560', NULL, 'IVAN CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10561', NULL, 'AMBROCIO APAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10562', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10563', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10564', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10565', NULL, 'CRISTIAN GABRIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10566', NULL, 'MIGUEL  GARCES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10567', NULL, 'danitza', '00000000', '', '', '', 'CAL.LA UNION MZA. A LOTE. 16 URB. TTIO (COSTADO DE TIENDAS EFE POR CC MOLINO) CUSCO - CUSCO - WANCHAQ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10568', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10569', NULL, 'LUCY HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10570', NULL, 'LIZ', '00000000', '', '', '', 'CAL.LA UNION MZA. A LOTE. 16 URB. TTIO (COSTADO DE TIENDAS EFE POR CC MOLINO) CUSCO - CUSCO - WANCHAQ', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10571', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10572', NULL, 'REGINA ESPEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10573', NULL, 'ANDERSON MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10574', NULL, 'ROXANA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10575', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10576', NULL, 'CARLOS ROQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10577', NULL, 'ANA CARREÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10578', NULL, 'HILDA CARHUANCHO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10579', NULL, 'ROSA EUCEVIA CORNEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10580', NULL, 'cindy castillon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10581', NULL, 'bertila cueva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10582', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10583', NULL, 'valeria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10584', NULL, 'CARLOS SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10585', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10586', NULL, 'JORGE BARBOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10587', NULL, 'MAXIMO LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10588', NULL, 'CARMEN APARCANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10589', NULL, 'MAXIMO LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10590', NULL, 'cristina artiaga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10591', NULL, 'BARTRA MEJIA VANESSA JAHAIDA', '', '10107989311', '', '', 'prolongacion cangallo 145 - la victoria', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10592', NULL, 'MARTHA rubio', '00000000', '', '', '', 'prolongacion cangallo 145 - la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10593', NULL, 'yolana mondragon', '00000000', '', '', '', 'prolongacion cangallo 145 - la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10594', NULL, 'DELIA', '00000000', '', '', '', 'prolongacion cangallo 145 - la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10595', NULL, 'DELIA', '00000000', '', '', '', 'prolongacion cangallo 145 - la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10596', NULL, 'raul quiñones', '00000000', '', '', '', 'prolongacion cangallo 145 - la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10597', NULL, 'NEGOCIACION PECUARIA SANTA PATRICIA S.A.', '', '20109753018', '', '', 'AV. LOS FAISANES NRO. 148 URB. LA CAMPIÑA (2DA CUADRA AV. GUARDIA CIVIL) LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10598', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10599', NULL, 'ROSA AMPUERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10600', NULL, 'ENMA AMPUERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10601', NULL, 'ZOILA MARINA MORENO ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10602', NULL, 'nancy reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10603', NULL, 'juan zeballo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10604', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10605', NULL, 'ALICIA MARQUINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10606', NULL, 'JEAN PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10607', NULL, 'EDUARDO PUENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10608', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10609', NULL, 'CHAVEZ DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10610', NULL, 'VICTOR PEÑALOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10611', NULL, 'ZAMBRANO COCHACHIN ISAIAS ORLANDO', '', '10451871621', '', '', 'mz j lote16 jesus oropeza chonta - san juan de lurigancho', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10612', NULL, 'LUCY GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10613', NULL, 'PAULINA', '00000000', '', '', '', 'mz j lote16 jesus oropeza chonta - san juan de lurigancho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10614', NULL, 'DOANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10615', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10616', NULL, 'GIMY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10617', NULL, 'lizbeth', '00000000', '', '', '', 'lizbeth', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10618', NULL, 'PERUANA DE ESTACIONES DE SERVICIOS S.A.C', '', '20330033313', '', '', 'AV. CIRCUNVALACIÓN DEL CLUB G NRO. 134 DPTO. 205 INT. 1801 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 1, PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10619', NULL, 'LISBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10620', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10621', NULL, 'JUANA HONOSTROZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10622', NULL, 'NANCY', '00000000', '', '', '', 'AV. CIRCUNVALACIÓN DEL CLUB G NRO. 134 DPTO. 205 INT. 1801 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 1, PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10623', NULL, 'NANCY', '00000000', '', '', '', 'AV. CIRCUNVALACIÓN DEL CLUB G NRO. 134 DPTO. 205 INT. 1801 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 1, PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10624', NULL, 'MATY MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10625', NULL, 'MATY MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10626', NULL, 'KIARA RETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10627', NULL, 'KIARA RETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10628', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10629', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10630', NULL, 'LF REFRIGERACION S.A.C.', '', '20550249791', '', '', 'JR. SAN AMADEO NRO. 1339 URB. TOMAS VALLE (ALT CDRA 13 AV TOMAS VALLE) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10631', NULL, 'LF REFRIGERACION S.A.C.', '', '20550249791', '', '', 'JR. SAN AMADEO NRO. 1339 URB. TOMAS VALLE (ALT CDRA 13 AV TOMAS VALLE) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10632', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10633', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10634', NULL, 'liliana gonsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10635', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10636', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10637', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10638', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10639', NULL, 'FRANCO', '00000000', '', '', '', 'JR. SAN AMADEO NRO. 1339 URB. TOMAS VALLE (ALT CDRA 13 AV TOMAS VALLE) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10640', NULL, 'EDGAR ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10641', NULL, 'EDGAR ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10642', NULL, 'HERBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10643', NULL, 'JRESICA VILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10644', NULL, 'JESICA VILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10645', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10646', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10647', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10648', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10649', NULL, 'ELMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10650', NULL, 'KARIM RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10651', NULL, 'NOVENA CUADRILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10652', NULL, 'DINA BARZOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10653', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10654', NULL, 'JUAN LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10655', NULL, 'MARTA MARTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10656', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10657', NULL, 'PATRICIA MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10658', NULL, 'PATRICIA MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10659', NULL, 'ESMERALDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10660', NULL, 'JORGE NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10661', NULL, 'jorge luis diaz ubaldo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10662', NULL, 'BETSABET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10663', NULL, 'erwin morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10664', NULL, 'EDWIN AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10665', NULL, 'ivone quido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10666', NULL, 'PLUMAS CIELO E.I.R.L', '', '20514674699', '', '', 'AV. JOSE DE SAN MARTIN NRO. 1243 A.H. SAN GABRIEL ALTO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10667', NULL, 'milagros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10668', NULL, 'CINTHYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10669', NULL, 'CINTHYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10670', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10671', NULL, 'portilla alcantara ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10672', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10673', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10674', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10675', NULL, 'fermin de la fuente', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10676', NULL, 'benigna umbe  muchuy suyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10677', NULL, 'benigna umbe  muchuy suyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10678', NULL, 'JACINTO JERONIMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10679', NULL, '´PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10680', NULL, 'wilma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10681', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10682', NULL, 'GUSTAVO ONSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10683', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10684', NULL, 'ELISA  PPONTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10685', NULL, 'GUISELA DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10686', NULL, 'ISAIAS HINOSTROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10687', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10688', NULL, 'KATY ZARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10689', NULL, 'FELICITA RAMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10690', NULL, 'alina goñi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10691', NULL, 'magdalena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10692', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10693', NULL, 'HERRERA MULATILLO MARIA ESMERALDA', '', '10028449378', '', '', 'UNIDAD 01 MZ 25 MERCADO CENTRAL DE PIURA  -PIURA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10694', NULL, 'GLADIS', '00000000', '', '', '', 'UNIDAD 01 MZ 25 MERCADO CENTRAL DE PIURA  -PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10695', NULL, 'PERCY', '00000000', '', '', '', 'UNIDAD 01 MZ 25 MERCADO CENTRAL DE PIURA  -PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10696', NULL, 'PERCY', '00000000', '', '', '', 'UNIDAD 01 MZ 25 MERCADO CENTRAL DE PIURA  -PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10697', NULL, 'DELIA', '00000000', '', '', '', 'UNIDAD 01 MZ 25 MERCADO CENTRAL DE PIURA  -PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10698', NULL, 'ESMERALDA HERRERA', '00000000', '', '', '', 'UNIDAD 01 MZ 25 MERCADO CENTRAL DE PIURA  -PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10699', NULL, 'jaime alvarado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10700', NULL, 'elva aranda', '00000000', '', '', '', 'UNIDAD 01 MZ 25 MERCADO CENTRAL DE PIURA  -PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10701', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10702', NULL, 'HERLINDA', '00000000', '', '', '', 'UNIDAD 01 MZ 25 MERCADO CENTRAL DE PIURA  -PIURA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10703', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10704', NULL, 'maria ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10705', NULL, 'maria ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10706', NULL, 'TEOFILA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10707', NULL, 'DYXMAR E.I.R.L.', '', '20601388082', '', '', 'COMITE 7 MZA. R LOTE. 11 P.J. TUPAC AMARU ICA - NASCA - MARCONA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10708', NULL, 'ROSANA TRINIDAD', '00000000', '', '', '', 'COMITE 7 MZA. R LOTE. 11 P.J. TUPAC AMARU ICA - NASCA - MARCONA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10709', NULL, 'PICHIHUA QUISPE EFRAIN', '', '10311849471', '', '', 'AV. ANDAHUAYLAS 459 - ANDAHUAYLAS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10710', NULL, 'YANETH OLIVA', '00000000', '', '', '', 'AV. ANDAHUAYLAS 459 - ANDAHUAYLAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10711', NULL, 'YANETH OLIVA', '00000000', '', '', '', 'AV. ANDAHUAYLAS 459 - ANDAHUAYLAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10712', NULL, 'NERY ALEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10713', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10714', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10715', NULL, 'noel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10716', NULL, 'JUANA SANDOVAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10717', NULL, 'CONCEPCION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10718', NULL, 'FLAVIA  YURIVILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10719', NULL, 'agustin rufino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10720', NULL, 'yeni galvez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10721', NULL, 'omar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10722', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10723', NULL, 'rosmeri', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10724', NULL, 'linda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10725', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10726', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10727', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10728', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10729', NULL, 'LUIS ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10730', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10731', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10732', NULL, 'jeim manrique', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10733', NULL, 'ADRIAN GRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10734', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10735', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10736', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10737', NULL, 'ANALI SALVATIERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10738', NULL, 'PILAR MONDRAGON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10739', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10740', NULL, 'ester', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10741', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10742', NULL, 'RAUL ZAVALETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10743', NULL, 'YANETH GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10744', NULL, 'P\'RADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10745', NULL, 'GUILLERMO CAMPEAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10746', NULL, 'JUAN GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10747', NULL, 'YESICA YAGUNO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10748', NULL, 'ANA CERVANTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10749', NULL, 'MARCO LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10750', NULL, 'GIOVANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10751', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10752', NULL, 'oscar chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10753', NULL, 'oscar chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10754', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10755', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10756', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10757', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10758', NULL, 'katia obando', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10759', NULL, 'marleny rios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10760', NULL, 'marleny rios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10761', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10762', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10763', NULL, 'manuel rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10764', NULL, 'manuel rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10765', NULL, 'tania', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10766', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10767', NULL, 'DENIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10768', NULL, 'jacinto silva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10769', NULL, 'luz costa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10770', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10771', NULL, 'vicky', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10772', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10773', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10774', NULL, 'jose montero', '09796942', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10775', NULL, 'jose montero', '09796942', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10776', NULL, 'jose montero', '09796942', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10777', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10778', NULL, 'rosa cornejo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10779', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10780', NULL, 'MANUELA PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10781', NULL, 'LEIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10782', NULL, 'julio chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10783', NULL, 'MYKO TECHNOLOGIES S.A.C.', '', '20601736251', '', '', 'JR. LAMBAYEQUE NRO. 3882 URB. PERU LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10784', NULL, 'norma luna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10785', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10786', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10787', NULL, 'ELENA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10788', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10789', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10790', NULL, 'KENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10791', NULL, 'nely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10792', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10793', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10794', NULL, 'MAGDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10795', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10796', NULL, 'MAGDA ÑATO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10797', NULL, 'MILAGROS SOLANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10798', NULL, 'YOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10799', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10800', NULL, 'ALEX TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10801', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10802', NULL, 'ANA PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10803', NULL, 'YENY CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10804', NULL, 'FELIPE ALVA', '40488378', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10805', NULL, 'JOSE MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10806', NULL, 'WILLIAN PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10807', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10808', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10809', NULL, 'VIRGINIA LEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10810', NULL, 'NERIO MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10811', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10812', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10813', NULL, 'COCHACHIN ESPINOZA ROBERT DAMIAN', '', '10407407178', '', '', 'jr. juan de la cruz romero mrcdo. central de huaraz tda 13e  huaraz', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10814', NULL, 'margaret', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10815', NULL, 'benjamin ancajima', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10816', NULL, 'rosa villafuerte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10817', NULL, 'sorayda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10818', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10819', NULL, 'liz mejia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10820', NULL, 'GRIO S.A', '', '20602769136', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS #134 INT 1301 URB. CLUB GOLF LOS INCAS J. PRADO ESTE LIMA-LIMA-STGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10821', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10822', NULL, 'TORRES GUZMAN WILMER', '', '10166792946', '', '', 'CALLE 8 MZ O LT 47 URB. ALAMEDA DEL PINAR COMAS- LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10823', NULL, 'LUCY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10824', NULL, 'LUCY RODRIGUEZ', '46887809', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10825', NULL, 'MARCO PARIAMACHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10826', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10827', NULL, 'CLAUDIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10828', NULL, 'NORMA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10829', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10830', NULL, 'NEYSER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10831', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10832', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10833', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10834', NULL, 'jose nuñez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10835', NULL, 'añlan jiraldo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10836', NULL, 'AILEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10837', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10838', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10839', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10840', NULL, 'ANA SILVESTRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10841', NULL, 'AULA 4 AÑOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10842', NULL, 'MILAGROS OSORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10843', NULL, 'YENI LINA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10844', NULL, 'RENATO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10845', NULL, 'MARIELA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10846', NULL, 'EBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10847', NULL, 'JESUS RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10848', NULL, 'CARMEN DIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10849', NULL, 'EDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10850', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10851', NULL, 'MARCELINO RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10852', NULL, 'CIRILA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10853', NULL, 'salvatierra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10854', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10855', NULL, 'jaen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10856', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10857', NULL, 'EZEQUIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10858', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10859', NULL, 'JORGE SIFUENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10860', NULL, 'KATY VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10861', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10862', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10863', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10864', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10865', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10866', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10867', NULL, 'marino torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10868', NULL, 'teofilo benites segura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10869', NULL, 'MIRTA SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10870', NULL, 'MARIA YOVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10871', NULL, 'PUMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10872', NULL, 'roberto quintana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10873', NULL, 'roberto quintana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10874', NULL, 'pedro gusman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10875', NULL, 'pedro gusman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10876', NULL, 'esteban', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10877', NULL, 'MONICA CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10878', NULL, 'MONICA CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10879', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10880', NULL, 'SORAYA CARHUAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10881', NULL, 'ARMANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10882', NULL, 'WILDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10883', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10884', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10885', NULL, 'tonY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10886', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10887', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10888', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10889', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10890', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10891', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10892', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10893', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10894', NULL, 'cintia cruzado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10895', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10896', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10897', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10898', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10899', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10900', NULL, 'jimy fernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10901', NULL, 'jimy fernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10902', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10903', NULL, 'luis infante', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10904', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10905', NULL, 'jaime rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10906', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10907', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10908', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10909', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10910', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10911', NULL, 'marco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10912', NULL, 'mily calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10913', NULL, 'SUSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10914', NULL, 'juan montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10915', NULL, 'MELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10916', NULL, 'MELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10917', NULL, 'paulo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10918', NULL, 'juan ageobaldo balbin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10919', NULL, 'juan geobaldo balbin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10920', NULL, 'juan geobaldo balbin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10921', NULL, 'irina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10922', NULL, 'LORENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10923', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10924', NULL, 'charito cabanillas malca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10925', NULL, 'SANDRO  DIEGUEZ', '10497466', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10926', NULL, 'NAVI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10927', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10928', NULL, 'BALLADARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10929', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10930', NULL, 'norma rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10931', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10932', NULL, 'lopez maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10933', NULL, 'VANESA COHEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10934', NULL, 'MARIA SALDAÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10935', NULL, 'BERTA PINCHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10936', NULL, 'ABIGAIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10937', NULL, 'CECILIA DE LA BORDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10938', NULL, 'CAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10939', NULL, 'ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10940', NULL, 'celia vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10941', NULL, 'AMANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10942', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10943', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10944', NULL, 'JARUMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10945', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10946', NULL, 'juan villanueva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10947', NULL, 'juan villanueva torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10948', NULL, 'mirna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10949', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10950', NULL, 'MESTANZA PALOMINO RICARDO KOSHIRO', '', '10412847470', '', '', 'p.j santa rosita  mz b lote 25  san juan de lurigancho -lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10951', NULL, 'ricardo santos', '00000000', '', '', '', 'p.j santa rosita  mz b lote 25  san juan de lurigancho -lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10952', NULL, 'ricardo santos', '00000000', '', '', '', 'p.j santa rosita  mz b lote 25  san juan de lurigancho -lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10953', NULL, 'milena', '00000000', '', '', '', 'p.j santa rosita  mz b lote 25  san juan de lurigancho -lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10954', NULL, 'milena', '00000000', '', '', '', 'p.j santa rosita  mz b lote 25  san juan de lurigancho -lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10955', NULL, 'liliana zambrano', '00000000', '', '', '', 'p.j santa rosita  mz b lote 25  san juan de lurigancho -lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10956', NULL, 'victoria gamboa', '00000000', '', '', '', 'p.j santa rosita  mz b lote 25  san juan de lurigancho -lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10957', NULL, 'violeta casquero', '00000000', '', '', '', 'p.j santa rosita  mz b lote 25  san juan de lurigancho -lima', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10958', NULL, 'SIN CULPA S.A.C.', '', '20602661891', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10959', NULL, 'ana aqui', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10960', NULL, 'percy morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10961', NULL, 'percy morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10962', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10963', NULL, 'augusto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10964', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10965', NULL, 'NANCY misari', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10966', NULL, 'carmen romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10967', NULL, 'ana chavez ventocilla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10968', NULL, 'KARINA barboza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10969', NULL, 'JHONNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10970', NULL, 'JHONNY BERNAOLA', '10874633', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10971', NULL, 'CARLOS RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10972', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10973', NULL, 'PATTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10974', NULL, 'ROBERTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10975', NULL, 'NORMA VACA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10976', NULL, 'ROBERTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10977', NULL, 'SAIDA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10978', NULL, 'SAIDA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10979', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10980', NULL, 'KADISI INVERSIONES S.A.C.', '', '20603470622', '', '', 'MZA. B LOTE. 6 ASC. SOL DEL PINAR LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10981', NULL, 'LURDES QUESADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10982', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10983', NULL, 'YORDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10984', NULL, 'YUV', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10985', NULL, 'EZEQUIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10986', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10987', NULL, 'RENE GUTIERRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10988', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10989', NULL, 'roberto castro huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10990', NULL, 'manuel inga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10991', NULL, 'VARMEN TENORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10992', NULL, 'MICAELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10993', NULL, 'JULIAN QUILLAS VALDEZ', '15689892', '', '', '', 'MCDO SUR  #156 HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10994', NULL, 'CARMEN SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10995', NULL, 'AIDE MENACHO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10996', NULL, 'JUAN OSORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10997', NULL, 'WILIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10998', NULL, 'elmer', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('10999', NULL, 'elmer', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11000', NULL, 'gloria herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11001', NULL, 'renato', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11002', NULL, 'edgar rincon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11003', NULL, 'MIRIAN sforiano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11004', NULL, 'FLOR MONTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11005', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11006', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11007', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11008', NULL, 'ESEQUIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11009', NULL, 'anabel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11010', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11011', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11012', NULL, 'clotilde ruiz', '07471344', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11013', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11014', NULL, 'carlos vega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11015', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11016', NULL, 'eduardo guzman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11017', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11018', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11019', NULL, 'esperanza recuay', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11020', NULL, 'rolly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11021', NULL, 'bill puelles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11022', NULL, 'sulma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11023', NULL, 'simone', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11024', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11025', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11026', NULL, 'gloria diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11027', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11028', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11029', NULL, 'adrian cervante', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11030', NULL, 'mildret gordillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11031', NULL, 'mildret gordillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11032', NULL, 'filomena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11033', NULL, 'wilberto quispe', '09128395', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11034', NULL, 'jorge  cotera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11035', NULL, 'teodora alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11036', NULL, 'teodora alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11037', NULL, 'teodora alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11038', NULL, 'margot camacho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11039', NULL, 'XERTEK PERU S.A.C.', '', '20536705393', '', '', 'AV. MANUEL OLGUIN NRO. 335 DPTO. 1007 URB. MONTERRICO CHICO (EDIFICIO LINK TOWER) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11040', NULL, 'YANETH', '78104070', '', '', '', 'AV. MANUEL OLGUIN NRO. 335 DPTO. 1007 URB. MONTERRICO CHICO (EDIFICIO LINK TOWER) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11041', NULL, 'JACKELINE', '00000000', '', '', '', 'AV. MANUEL OLGUIN NRO. 335 DPTO. 1007 URB. MONTERRICO CHICO (EDIFICIO LINK TOWER) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11042', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11043', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11044', NULL, 'OSCAR MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11045', NULL, 'roger bernal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11046', NULL, 'CORINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11047', NULL, 'frani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11048', NULL, 'YAMIR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11049', NULL, 'SERGIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11050', NULL, 'NELLY DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11051', NULL, 'MARCELINO CALZADO VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11052', NULL, 'URINPACHA S.A.C.', '', '20537082349', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11053', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11054', NULL, 'CABRERA PEREZ DE CAMONES MARIA ELENA', '', '10082987229', '', '', 'jr los esmeriles mz s1 lote 3 san carlos - san juan de lurigancho', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11055', NULL, 'CELESTINA', '00000000', '', '', '', 'jr los esmeriles mz s1 lote 3 san carlos - san juan de lurigancho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11056', NULL, 'ROSA', '00000000', '', '', '', 'jr los esmeriles mz s1 lote 3 san carlos - san juan de lurigancho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11057', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11058', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11059', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11060', NULL, 'JOSE CHEGNI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11061', NULL, 'SILVIA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11062', NULL, 'TERESA DEL CARPI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11063', NULL, 'TERESA DEL CARPI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11064', NULL, 'JUANA DE CABALLERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11065', NULL, 'JUANA DE CABALLERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11066', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11067', NULL, 'RUBEN FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11068', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11069', NULL, 'AQUILINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11070', NULL, 'AQUILINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11071', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11072', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11073', NULL, 'BONILLA PURIHUAMAN ANDRES', '', '10101404639', '', '', 'JR PUMACAHUA 1590- JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11074', NULL, 'GIOVANA VENTURA', '00000000', '', '', '', 'JR PUMACAHUA 1590- JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11075', NULL, 'GIOVANA VENTURA', '00000000', '', '', '', 'JR PUMACAHUA 1590- JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11076', NULL, 'ANGELQA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11077', NULL, 'OLGA MPORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11078', NULL, 'KEVIN ACOSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11079', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11080', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11081', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11082', NULL, 'RUFINA LUCANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11083', NULL, 'ayme', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11084', NULL, 'ie 7082', '00000000', '', '', '', 'san juan de miraflores', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11085', NULL, 'SARA BALTORAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11086', NULL, 'ROBERTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11087', NULL, 'lily', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11088', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11089', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11090', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11091', NULL, 'RECREATIVOS FARGO SAC', '', '20526938535', '', '', 'JR. GMO.CACERES NRO. 284 CERCADO (ESQ.CON RAMON CATILLA 2DO PISO) APURIMAC - ANDAHUAYLAS - ANDAHUAYLAS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11092', NULL, 'ISRAEL PINTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11093', NULL, 'juan garamendi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11094', NULL, 'NELLY GUSMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11095', NULL, 'PEREGRINO QUILICHE JULIO LEONCIO', '', '10266758265', '', '', 'JR DEL BATAN # 317 CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11096', NULL, 'parroquia canaria ayacucho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11097', NULL, 'CARLA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11098', NULL, 'yadira escobar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11099', NULL, 'ANTONIA VELARDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11100', NULL, 'ANA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11101', NULL, 'URSULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11102', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11103', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11104', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11105', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11106', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11107', NULL, 'FRANCISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11108', NULL, 'FRANCISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11109', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11110', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11111', NULL, 'OCHOA RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11112', NULL, 'OCHOA RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11113', NULL, 'ruben lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11114', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11115', NULL, 'luis quiroz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11116', NULL, 'luis quiroz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11117', NULL, 'magada quiñonez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11118', NULL, 'magada quiñonez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11119', NULL, 'fredy suares', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11120', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11121', NULL, 'SILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11122', NULL, 'BETO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11123', NULL, 'LEOPOLDINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11124', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11125', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11126', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11127', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11128', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11129', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11130', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11131', NULL, 'FLORIZA  ALDANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11132', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11133', NULL, 'ERICA CHAPARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11134', NULL, 'LUIS RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11135', NULL, 'LUIS RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11136', NULL, 'LUIS RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11137', NULL, 'ARTEMIO CARBAJAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11138', NULL, 'ELSA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11139', NULL, 'ROMAN BERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11140', NULL, 'TERESA SANTAMARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11141', NULL, 'INES CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11142', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11143', NULL, 'MICAELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11144', NULL, 'SAMIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11145', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11146', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11147', NULL, 'FREDY ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11148', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11149', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11150', NULL, 'CARLOS MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11151', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11152', NULL, 'MIRIAN BARRETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11153', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11154', NULL, 'alejandro mamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11155', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11156', NULL, 'raul bautista', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11157', NULL, 'SALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11158', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11159', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11160', NULL, 'S & L LOGISTIC & SERVICE S.A.C.', '', '20602227511', '', '', 'PJ. EL SOL NRO. 401 PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11161', NULL, 'YACO MARROBEÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11162', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11163', NULL, 'LAIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11164', NULL, 'MARIA GAMIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11165', NULL, 'LORENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11166', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11167', NULL, 'YASICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11168', NULL, 'glenda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11169', NULL, 'rene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11170', NULL, 'LUCY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11171', NULL, 'CARLOS SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11172', NULL, 'marilyn', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11173', NULL, 'ALEJANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11174', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11175', NULL, 'LOURDES DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11176', NULL, 'EFRAIN REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11177', NULL, 'AIDE CORNEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11178', NULL, 'MELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11179', NULL, 'SANDRA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11180', NULL, 'SANDRA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11181', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11182', NULL, 'berta flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11183', NULL, 'maria coronado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11184', NULL, 'simon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11185', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11186', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11187', NULL, 'YENY CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11188', NULL, 'GIOVANA CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11189', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11190', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11191', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11192', NULL, 'CARLOS RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11193', NULL, 'MARIA LUZ HUAMANI HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11194', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11195', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11196', NULL, 'ROSARIO GRADOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11197', NULL, 'ROCIO SALAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11198', NULL, 'ANGEL ALEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11199', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11200', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11201', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11202', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11203', NULL, 'RUTH PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11204', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11205', NULL, 'BORIS MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11206', NULL, 'AYVAR HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11207', NULL, 'MERCEDES VALENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11208', NULL, 'CARMEN TAMAYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11209', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11210', NULL, 'NANCY  VILCAPUMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11211', NULL, 'ANGELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11212', NULL, 'rita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11213', NULL, 'RITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11214', NULL, 'eleazar   paitan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11215', NULL, 'rowig jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11216', NULL, 'yolanda pajuelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11217', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11218', NULL, 'carmen jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11219', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11220', NULL, 'juan manuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11221', NULL, 'ROJAS CALDERON MARVIN HAROLD', '', '10404930279', '', '', 'AV TOMAS VALLE 1250 -LOS OLIVOS - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11222', NULL, 'VICTOR ESPINOZA', '00000000', '', '', '', 'AV TOMAS VALLE 1250 -LOS OLIVOS - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11223', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11224', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11225', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11226', NULL, 'DANIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11227', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11228', NULL, 'MARIA CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11229', NULL, 'ANA CABALLERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11230', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11231', NULL, 'angeles pinillos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11232', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11233', NULL, 'elbet nuñez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11234', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11235', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11236', NULL, 'marcial', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11237', NULL, 'marcial', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11238', NULL, 'ana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11239', NULL, 'MARILYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11240', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11241', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11242', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11243', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11244', NULL, 'valentina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11245', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11246', NULL, 'lidia mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11247', NULL, 'rliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11248', NULL, 'demetrio alcala', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11249', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11250', NULL, 'bety velasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11251', NULL, 'roxana villega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11252', NULL, 'mary', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11253', NULL, 'PILAR POPRISTIC E.I.R.L.', '', '20552529392', '', '', 'AV. SALAVERRY NRO. 2158 DPTO. 1804 LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11254', NULL, 'GERARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11255', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11256', NULL, 'BALDEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11257', NULL, 'MAGDA CORNEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11258', NULL, 'GUSELLA  SUSANA LOZANO DUEÑAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11259', NULL, 'GUISELLA SUSANA LOZANO DUEÑAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11260', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11261', NULL, 'KATIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11262', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11263', NULL, 'LUZ PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11264', NULL, 'aracely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11265', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11266', NULL, 'jose nuñez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11267', NULL, 'MERLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11268', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11269', NULL, 'SERGIO NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11270', NULL, 'ENNETT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11271', NULL, 'CARLOS GURMENDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11272', NULL, 'CARLOS GURMENDI CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11273', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11274', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11275', NULL, 'ANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11276', NULL, 'SARELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11277', NULL, 'ROGER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11278', NULL, 'trinidad gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11279', NULL, 'erika acho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11280', NULL, 'erika acho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11281', NULL, 'KATHERINE gali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11282', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11283', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11284', NULL, 'MARCIAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11285', NULL, 'MARCIAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11286', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11287', NULL, 'hadys', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11288', NULL, 'luis vasquez sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11289', NULL, 'ROSAS ZEVALLOS JAVIER HUMBERTO', '', '15412277292', '', '', 'calle arica 249 miraflores - arequipa', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11290', NULL, 'susana barbaran', '00000000', '', '', '', 'calle arica 249 miraflores - arequipa', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11291', NULL, 'CELENy', '00000000', '', '', '', 'calle arica 249 miraflores - arequipa', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11292', NULL, 'carlos luna', '00000000', '', '', '', 'calle arica 249 miraflores - arequipa', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11293', NULL, 'GIOVANA', '00000000', '', '', '', 'calle arica 249 miraflores - arequipa', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11294', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11295', NULL, 'carmen ochoa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11296', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11297', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11298', NULL, 'NOELIA  MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11299', NULL, 'sonia apaza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11300', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11301', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11302', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11303', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11304', NULL, 'MATILDE MORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11305', NULL, 'miguel chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11306', NULL, 'YOLANDA TORRES BERNAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11307', NULL, 'TATIANA AVALOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11308', NULL, 'amira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11309', NULL, 'eduvina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11310', NULL, 'petronila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11311', NULL, 'demetrio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11312', NULL, 'marleny alca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11313', NULL, 'rosa carbajal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11314', NULL, 'patricia bendezu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11315', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11316', NULL, 'LUIS HOSPINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11317', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11318', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11319', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11320', NULL, 'ARTEMIO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11321', NULL, 'CINDY FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11322', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11323', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11324', NULL, 'ARTURO AGUAYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11325', NULL, 'yesica jordan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11326', NULL, 'maria marchan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11327', NULL, 'ANYELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11328', NULL, 'I.E.I SEMILLITAS DEL SABER', '00000000', '', '', '', 'SAN ANTONIO ANEXO 8- HUAROCHIRI', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11329', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11330', NULL, 'WILLIANS ARSOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11331', NULL, 'rosa marcelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11332', NULL, 'KATY SARAVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11333', NULL, 'ISABEL ORTIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11334', NULL, 'SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11335', NULL, 'JOSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11336', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11337', NULL, 'JUAN TIMANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11338', NULL, 'AIDA ROMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11339', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11340', NULL, 'KELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11341', NULL, 'EDUWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11342', NULL, 'VICENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11343', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11344', NULL, 'ALFREDO SALCEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11345', NULL, 'G & F MAQUINARIAS E IMPORTACIONES S.R.L.', '', '20604609829', '', '', 'CAL.MARIANO ANGULO NRO. 1760 P.J. MIRONES ALTO LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11346', NULL, 'AIDE RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11347', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11348', NULL, 'DANTE PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11349', NULL, 'claudia contreras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11350', NULL, 'eduardo moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11351', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11352', NULL, 'MARIA ZORRILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11353', NULL, 'SIN CULPA S.A.C.', '', '20602661891', '', '', '20602661891', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11354', NULL, 'SIN CULPA S.A.C.', '', '20602661891', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11355', NULL, 'MARLENE', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11356', NULL, 'ESTHER', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11357', NULL, 'YANINA', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11358', NULL, 'CRISTHIAN', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11359', NULL, 'eufemia silva', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11360', NULL, 'julia lopez', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11361', NULL, 'ELISABETH', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11362', NULL, 'ROSA', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 1276 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11363', NULL, 'josy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11364', NULL, 'HEYNA CARO SAVEDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11365', NULL, '|ELIA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11366', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11367', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11368', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11369', NULL, 'aliaga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11370', NULL, 'PATRICIA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11371', NULL, 'JOSE TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11372', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11373', NULL, 'YULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11374', NULL, 'MARCO MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11375', NULL, 'MIRTA  ALCALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11376', NULL, 'MERCEDES DE LA PUENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11377', NULL, 'CINTIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11378', NULL, 'IRMA MAQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11379', NULL, 'MARCO RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11380', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11381', NULL, 'ORLANDO BUSTINSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11382', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11383', NULL, 'PACHECO GALLUPE BERNARDO AURELIO', '', '10093072389', '', '', 'MZ O LOTE 7 SANTA FE DE TOTORITA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11384', NULL, 'DAVID SAMORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11385', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11386', NULL, 'EDUARDO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11387', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11388', NULL, 'LIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11389', NULL, 'paulina nuñez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11390', NULL, 'henry cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11391', NULL, 'soledad vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11392', NULL, 'MELCHOR HUAMANI EDUARDO', '', '10804639778', '', '', 'AV. MICAELA BASTIDAS #233 PICHANAQUI-JUNIN-CHANCHAMAYO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11393', NULL, 'GABRIEL PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11394', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11395', NULL, 'SOFIA  MASGO CHAMORRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11396', NULL, 'SHARITO BARRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11397', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11398', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11399', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11400', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11401', NULL, 'MERCEDES VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11402', NULL, 'LUIS ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11403', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11404', NULL, 'KATY VILCAPOMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11405', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11406', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11407', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11408', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11409', NULL, 'carmen rendon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11410', NULL, 'FLORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11411', NULL, 'LOS JAVIERES PRODUCTORES S.A.C.', '', '20604842281', '', '', 'CAL.MANCO CAPAC NRO. 872 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11412', NULL, 'JUAN DIEGO HUAMAN ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11413', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11414', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11415', NULL, 'AGUSTA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11416', NULL, 'ALEJANDRO CONDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11417', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11418', NULL, 'carla zaumi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11419', NULL, 'daniel sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11420', NULL, 'ALEXANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11421', NULL, 'MEDINA RONCAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11422', NULL, 'ROSA SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11423', NULL, 'jessica sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11424', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11425', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11426', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11427', NULL, 'NICOLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11428', NULL, 'DOLORES VILLANUEVA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11429', NULL, 'jenifer', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11430', NULL, 'MARITZA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11431', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11432', NULL, 'ALFONCINA  CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11433', NULL, 'MARCELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11434', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11435', NULL, 'LAYSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11436', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11437', NULL, 'ISABEL SOTELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11438', NULL, 'MARIANELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11439', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11440', NULL, 'JEAN POOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11441', NULL, 'SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11442', NULL, 'aldin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11443', NULL, 'FAUSTINO APAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11444', NULL, 'junior', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11445', NULL, 'JUAN HOJEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11446', NULL, 'JOSE LA TORRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11447', NULL, 'PAMELA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11448', NULL, 'KIRKOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11449', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11450', NULL, 'ROMEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11451', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11452', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11453', NULL, 'BORIS CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11454', NULL, 'MALZKAR S.A.C.', '', '20555444096', '', '', 'CAL.LAS BEGONIAS MZA. O LOTE. 25 A DPTO. 3 URB. ENTEL LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11455', NULL, 'ALDO BARRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11456', NULL, 'ALFONSO LEIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11457', NULL, 'ROMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11458', NULL, 'rosmery rios', '00000000', '', '', '', 'CAL.LAS BEGONIAS MZA. O LOTE. 25 A DPTO. 3 URB. ENTEL LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11459', NULL, 'DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11460', NULL, 'LUIS', '00000000', '', '', '', 'CAL.LAS BEGONIAS MZA. O LOTE. 25 A DPTO. 3 URB. ENTEL LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11461', NULL, 'FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11462', NULL, 'FILOMENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11463', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11464', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11465', NULL, 'marco gonsalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11466', NULL, 'FURTONATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11467', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11468', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11469', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11470', NULL, 'EMY CENTRO DE REDUCCION Y SPA S.A.C', '', '20545946239', '', '', 'AV. FLORA TRISTAN NRO. 642 DPTO. 201 URB. SANTA PATRICIA II (CASA COLOR ARENA / REJAS VERDES) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11471', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11472', NULL, 'EMY CENTRO DE REDUCCION Y SPA S.A.C', '', '20545946239', '', '', 'AV. FLORA TRISTAN NRO. 642 DPTO. 201 URB. SANTA PATRICIA II (CASA COLOR ARENA / REJAS VERDES) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11473', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11474', NULL, 'ANA RUNIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11475', NULL, 'rosario cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11476', NULL, 'juan centeno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11477', NULL, 'juan centeno', '00000000', '', '', '', 'ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11478', NULL, 'LORENSO HUANCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11479', NULL, 'VICTOR TREJPO PEREZ', '15387397', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11480', NULL, 'VICTOR', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11481', NULL, 'LUIS HUARCAYA', '00000000', '', '', '', 'chincha', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11482', NULL, 'YANETH', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11483', NULL, 'VIOLETA BLAS', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11484', NULL, 'RITA ELENA PLACIDO', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11485', NULL, 'GISELA', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11486', NULL, 'RITA ELENA PLACIDO', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11487', NULL, 'dimas', '00000000', '', '', '', 'chincha', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11488', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11489', NULL, 'ORLANDO', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11490', NULL, 'IRIS RAMIREZ', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11491', NULL, 'elsa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11492', NULL, 'rafael', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11493', NULL, 'MESTANZA MELENDEZ JOSE WILSON', '', '10105922740', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11494', NULL, 'MARLENE', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11495', NULL, 'SOFIA', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11496', NULL, 'ARITZA', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11497', NULL, 'SEGUNDO', '00000000', '', '', '', 'MALA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11498', NULL, 'CARMEN RODRIGUEZ', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11499', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11500', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11501', NULL, 'LOURDES', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11502', NULL, 'LUZ MARIA', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11503', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11504', NULL, 'AMANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11505', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11506', NULL, 'VILMA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11507', NULL, 'ESTHER', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11508', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11509', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11510', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11511', NULL, 'SILVIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11512', NULL, 'SALCEDO', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11513', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11514', NULL, 'VIRGINIA PALACIOS', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11515', NULL, 'KATY', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11516', NULL, 'ROSALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11517', NULL, 'JENY', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11518', NULL, 'cesar mendoza', '00000000', '', '', '', 'AV GUILLERMO BILLINGHURST 1196 SJM', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11519', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11520', NULL, 'JUANITA GALDO LEGUIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11521', NULL, 'ELEASAD PAITAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11522', NULL, 'IRENE OBREGON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11523', NULL, 'ELADIO HAZAÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11524', NULL, 'ALAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11525', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11526', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11527', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11528', NULL, 'CARLOS ARIAS SANDOVAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11529', NULL, 'juan carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11530', NULL, 'JENY gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11531', NULL, 'falconi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11532', NULL, 'jose florecin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11533', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11534', NULL, 'INVERSIONES MEDINA SAC', '', '20523156382', '', '', 'AV JAPON CUADRA 12 MZ D LT 43 CALLAO CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11535', NULL, 'JUEGOS BORGOÑO SAC', '', '20510359764', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11536', NULL, 'FRANK', '00000000', '', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11537', NULL, 'ROSA', '00000000', '', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11538', NULL, 'HILDA RIOS', '00000000', '', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11539', NULL, 'MARLENE', '00000000', '', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11540', NULL, 'felix salas', '00000000', '', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11541', NULL, 'joel quispe', '00000000', '', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11542', NULL, 'francisco luna', '00000000', '', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11543', NULL, 'ROSA', '00000000', '', '', '', 'AV. ANGAMOS OESTE NRO. 651 INT. 305 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11544', NULL, 'juan honores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11545', NULL, 'CONSULTOR TWO S.A.C.', '', '20522528227', '', '', 'CAL.GENERAL MENDIBURU NRO. 878 INT. 302 URB. SANTA CRUZ LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11546', NULL, 'pilar pizarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11547', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11548', NULL, 'FAENAS COMERCIALES S R LTDA', '', '20101637060', '', '', 'PJ. JOSE UGARTECHE NRO. 149 URB. GRUMETE MEDINA (ALT CDRA 11 DE SEPARADORA INDUSTRIAL) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11549', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11550', NULL, 'yacki', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11551', NULL, 'americo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11552', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11553', NULL, 'PAOLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11554', NULL, 'bilma lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11555', NULL, 'SOCORRO LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11556', NULL, 'miguel gordillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11557', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11558', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11559', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11560', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11561', NULL, 'maribel ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11562', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11563', NULL, 'rosana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11564', NULL, 'jaramillo ponce', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11565', NULL, 'david lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11566', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11567', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11568', NULL, 'zuelen castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11569', NULL, 'LILIANA vairo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11570', NULL, 'NATIVIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11571', NULL, 'nancy gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11572', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11573', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11574', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11575', NULL, 'AGUSTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11576', NULL, 'SELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11577', NULL, 'cenaida villanueva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11578', NULL, 'LAURA morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11579', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11580', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11581', NULL, 'joprge', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11582', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11583', NULL, 'jose miranda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11584', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11585', NULL, 'erika', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11586', NULL, 'antoni alva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11587', NULL, 'MARVIN ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11588', NULL, 'constantino ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11589', NULL, 'ALICIA CAMONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11590', NULL, 'IRENE ROJAS MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11591', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11592', NULL, 'INSTITUTO PARA EL DESARROLLO INFANTIL - ARIE', '', '20147829583', '', '', 'AV. FLORA TRISTAN NRO. 194 URB. FAR WEST VILLAS LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11593', NULL, 'PATSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11594', NULL, 'jamile cubas', '00000000', '', '', '', 'AV. FLORA TRISTAN NRO. 194 URB. FAR WEST VILLAS LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11595', NULL, 'ROBERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11596', NULL, 'felipe', '00000000', '', '', '', 'AV. FLORA TRISTAN NRO. 194 URB. FAR WEST VILLAS LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11597', NULL, 'ENIT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11598', NULL, 'CECILIA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11599', NULL, 'CINTHIA benitez', '00000000', '', '', '', 'AV. FLORA TRISTAN NRO. 194 URB. FAR WEST VILLAS LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11600', NULL, 'PAOLA CANO', '10802470', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11601', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11602', NULL, 'JUANA', '00000000', '', '', '', 'AV. FLORA TRISTAN NRO. 194 URB. FAR WEST VILLAS LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11603', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11604', NULL, 'doris villacorta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11605', NULL, 'ELMER DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11606', NULL, 'cesar elias', '00000000', '', '', '', 'AV. FLORA TRISTAN NRO. 194 URB. FAR WEST VILLAS LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11607', NULL, 'MARISOL PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11608', NULL, 'diane', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11609', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11610', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11611', NULL, 'ELIZABETH CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11612', NULL, 'JAQUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11613', NULL, 'RAUL SAMANIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11614', NULL, 'NIVARDO GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11615', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11616', NULL, 'GIAN FRANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11617', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11618', NULL, 'MARIA  CALDAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11619', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11620', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11621', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11622', NULL, 'EVONNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11623', NULL, 'AIDE CABALLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11624', NULL, 'MARLIT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11625', NULL, 'LINDA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11626', NULL, 'HERMANDAD VIRGEN DE LAS NIEVES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11627', NULL, 'ANA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11628', NULL, 'FABIOLA PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11629', NULL, 'JULIO ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11630', NULL, 'GLORIA MARTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11631', NULL, 'SELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11632', NULL, 'ANA CABELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11633', NULL, 'YESICA BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11634', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11635', NULL, 'LUCY HELGUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11636', NULL, 'JULIO LAZARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11637', NULL, 'ANGEL CABRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11638', NULL, 'LUIS ZAMBRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11639', NULL, 'MARIA ARRIETA', '10111116', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11640', NULL, 'IDELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11641', NULL, 'MARGARITA TRINIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11642', NULL, 'HERNAN OSORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11643', NULL, 'VICKY CACERES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11644', NULL, 'MARGOTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11645', NULL, 'LILY EDELSITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11646', NULL, 'JOSE RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11647', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11648', NULL, 'MIRTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11649', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11650', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11651', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11652', NULL, 'PILAR ESPADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11653', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11654', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11655', NULL, 'HAYDEE SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11656', NULL, 'EDUARDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11657', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11658', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11659', NULL, 'vidal cabrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11660', NULL, 'daniela peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11661', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11662', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11663', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11664', NULL, 'VERONICA GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11665', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11666', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11667', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11668', NULL, 'NUÑEZ MORENO DE MEZA KUCTSY', '', '10417636434', '', '', 'jr. luna pizarro # 102 la victoria', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11669', NULL, 'jhon vega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11670', NULL, 'TEODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11671', NULL, 'carlos camarena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11672', NULL, 'ULICES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11673', NULL, 'ROSARIO CARRASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11674', NULL, 'JOSE VILELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11675', NULL, 'EMILIA CAMARENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11676', NULL, 'MARCOS VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11677', NULL, 'JOSE YEPES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11678', NULL, 'DIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11679', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11680', NULL, 'ANGEL MATIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11681', NULL, 'julissa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11682', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11683', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11684', NULL, 'MARIA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11685', NULL, 'EDWIN calderon mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11686', NULL, 'EBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11687', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11688', NULL, 'rosa quesquen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11689', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11690', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11691', NULL, 'OLIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11692', NULL, 'celia montes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11693', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11694', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11695', NULL, 'luis aguilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11696', NULL, 'MARTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11697', NULL, 'JOSEFA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11698', NULL, 'fidela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11699', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11700', NULL, 'yoselin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11701', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11702', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11703', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11704', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11705', NULL, 'roger', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11706', NULL, 'JORGE ARROYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11707', NULL, 'FELICIANO VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11708', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11709', NULL, 'andre villegas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11710', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11711', NULL, 'ROGELIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11712', NULL, 'SERGIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11713', NULL, 'MANUEL ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11714', NULL, 'NANCY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11715', NULL, 'GRAJEDA CAÑARI VANESA', '', '10239213826', '', '', 'AVENIDA SAN FELIPE 926 - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11716', NULL, 'ITALO', '00000000', '', '', '', 'AVENIDA SAN FELIPE 926 - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11717', NULL, 'GRACIELA', '00000000', '', '', '', 'AVENIDA SAN FELIPE 926 - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11718', NULL, 'lisandro nuñez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11719', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11720', NULL, 'CARMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11721', NULL, 'NELLY ALVARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11722', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11723', NULL, 'GUISEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11724', NULL, 'RENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11725', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11726', NULL, 'ROBERTO MATTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11727', NULL, 'ramos alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11728', NULL, 'MARTA COLMENARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11729', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11730', NULL, 'MIRTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11731', NULL, 'YANETH CUBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11732', NULL, 'SHERO RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11733', NULL, 'MONTOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11734', NULL, 'rosalyn sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11735', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11736', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11737', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11738', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11739', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11740', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11741', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11742', NULL, 'mirella', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11743', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11744', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11745', NULL, 'JANETH cuba', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11746', NULL, 'ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11747', NULL, 'olga diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11748', NULL, 'rosa guitierrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11749', NULL, 'rosa gutierrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11750', NULL, 'sofia arevalo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11751', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11752', NULL, 'OLIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11753', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11754', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11755', NULL, 'JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11756', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11757', NULL, 'elvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11758', NULL, 'zelma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11759', NULL, 'EDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11760', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11761', NULL, 'maria espiritu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11762', NULL, 'ANA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11763', NULL, 'ELIANE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11764', NULL, 'PRICILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11765', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11766', NULL, 'RITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11767', NULL, 'yeni coronado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11768', NULL, 'VIDAL BAUTISTA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11769', NULL, 'daniel flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11770', NULL, 'JACKELINE GUERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11771', NULL, 'TADEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11772', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11773', NULL, 'MARIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11774', NULL, 'JOSE ROLDAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11775', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11776', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11777', NULL, 'CARMEN VALENZUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11778', NULL, 'CARMEN ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11779', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11780', NULL, 'ALICIA ALZAMORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11781', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11782', NULL, 'juana ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11783', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11784', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11785', NULL, 'ruth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11786', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11787', NULL, 'chacon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11788', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11789', NULL, 'cecilia ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11790', NULL, 'maria murazzo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11791', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11792', NULL, 'FELIX MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11793', NULL, 'ALICIA MORE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11794', NULL, 'JEAN PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11795', NULL, 'CONSULTORIA PSICOLOGICA SISTEMA LONDRES S.A.C.', '', '20538216268', '', '', 'AV. AREQUIPA NRO. 1972 INT. 301 LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11796', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11797', NULL, 'CARMEN', '00000000', '', '', '', 'AV. AREQUIPA NRO. 1972 INT. 301 LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11798', NULL, 'pilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11799', NULL, 'EMPERATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11800', NULL, 'FANNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11801', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11802', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11803', NULL, 'FANNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11804', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11805', NULL, 'ruben cuadros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11806', NULL, 'carrasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11807', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11808', NULL, 'raquel medina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11809', NULL, 'PABLO MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11810', NULL, 'CLARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11811', NULL, 'ELVIS AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11812', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11813', NULL, 'NATALY LUDEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11814', NULL, 'MARGARITA GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11815', NULL, 'VANESA CIPRIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11816', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11817', NULL, 'jim PACHAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11818', NULL, 'ROMERO CHOQUEHUANCA GIANELLA', '', '10766578697', '', '', 'AV. VENEZUELA N420- B - ABANCAY - ABANCAY -APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11819', NULL, 'YENI RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11820', NULL, 'VERONICA  TAMALLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11821', NULL, 'PAULINO CORTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11822', NULL, 'PAULA PINEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11823', NULL, 'RITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11824', NULL, 'CARIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11825', NULL, 'MOISES FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11826', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11827', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11828', NULL, 'AIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11829', NULL, 'SAMUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11830', NULL, 'MARUJA BARRETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11831', NULL, 'JOSE RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11832', NULL, 'JOSE JAUREGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11833', NULL, 'YACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11834', NULL, 'ARMANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11835', NULL, 'FELIX TAHUARA CARMEN ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11836', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11837', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11838', NULL, 'ZULIY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11839', NULL, 'LUSMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11840', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11841', NULL, 'KARINA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11842', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11843', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11844', NULL, 'BRANDON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11845', NULL, 'DINA YUPANQUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11846', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11847', NULL, 'CARMEN ALMEIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11848', NULL, 'SHERLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11849', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11850', NULL, 'BETSAVEYH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11851', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11852', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11853', NULL, 'MARIO ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11854', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11855', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11856', NULL, 'TANY VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11857', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11858', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11859', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11860', NULL, 'VEIKO QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11861', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11862', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11863', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11864', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11865', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11866', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11867', NULL, 'epifania', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11868', NULL, 'karina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11869', NULL, 'angela ormeño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11870', NULL, 'carmen galdos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11871', NULL, 'saul', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11872', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11873', NULL, 'raiza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11874', NULL, 'SONIA MAEQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11875', NULL, 'MARIA LEVANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11876', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11877', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11878', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11879', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11880', NULL, 'CLAUDIA OSORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11881', NULL, 'jorge', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11882', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11883', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11884', NULL, 'MARIA CARBAJAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11885', NULL, 'YOLANDA TAYPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11886', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11887', NULL, 'EDITH MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11888', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11889', NULL, 'DAMARIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11890', NULL, 'MARCO ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11891', NULL, 'CRISTOFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11892', NULL, 'OFELIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11893', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11894', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11895', NULL, 'YANETH LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11896', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11897', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11898', NULL, 'MARITZA', '78104070', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11899', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11900', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11901', NULL, 'lily', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11902', NULL, 'MARCELA PACHECO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11903', NULL, 'LULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11904', NULL, 'ERESVITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11905', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11906', NULL, 'madelein', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11907', NULL, 'JESUS MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11908', NULL, 'EDUARDO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11909', NULL, 'LITA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11910', NULL, 'naida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11911', NULL, 'FREDY VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11912', NULL, 'magaly peralta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11913', NULL, 'ARTIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11914', NULL, 'willians castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11915', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11916', NULL, 'flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11917', NULL, 'ELECTRON E.I.R.L.', '', '20492639452', '', '', 'JR. PARURO NRO. 1357 DPTO. 163 (GALERIA PARURO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11918', NULL, 'MARTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11919', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11920', NULL, 'DISTRIBUIDORA Y COMERCIALIZADORA EL ENSUEñO SOCIEDAD AN', '', '20513415037', '', '', 'R. CANGALLO NRO. 745 URB. BARRIOS ALTOS (ALTURA DE LA MORGUE CENTRAL DE LIMA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11921', NULL, 'vilma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11922', NULL, 'lidia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11923', NULL, 'MARLENE villar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11924', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11925', NULL, 'CELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11926', NULL, 'blanca garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11927', NULL, 'remigio quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11928', NULL, 'rosaly condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11929', NULL, 'rosali condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11930', NULL, 'MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11931', NULL, 'julia leiva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11932', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11933', NULL, 'VICENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11934', NULL, 'mayela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11935', NULL, 'GRETEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11936', NULL, 'TRADEX SERVICIOS GENERALES S.A.C', '', '20566008921', '', '', 'AV. GENERAL EUGENIO GARZON NRO. 2080 URB. FUNDO OYAGUE (ALTURA OVALO AV. BRASIL) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11937', NULL, 'JOSEFINA', '00000000', '', '', '', 'AV. GENERAL EUGENIO GARZON NRO. 2080 URB. FUNDO OYAGUE (ALTURA OVALO AV. BRASIL) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11938', NULL, 'ALBUS DENT S.A.C.', '', '20522020355', '', '', 'MZA. 35 LOTE. 5 P.J. JOSE GALVEZ (AV.LIMA CON APURIMAC FRENTE COLEGIO 6015) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11939', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11940', NULL, 'VIOLETA', '00000000', '', '', '', 'j', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11941', NULL, 'DELARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11942', NULL, 'YANELA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11943', NULL, 'DEYSI garrero', '00000000', '', '', '', 'j', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11944', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11945', NULL, 'NELLY ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11946', NULL, 'MARLENI MANGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11947', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11948', NULL, 'carlos diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11949', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11950', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11951', NULL, 'FALCONI AYBAR CARMEN ISABEL', '', '10222602519', '', '', 'CALLE COMERCIO #128 PISCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11952', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11953', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11954', NULL, 'HERMELINDA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11955', NULL, 'ENMA VALLE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11956', NULL, 'CINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11957', NULL, 'YOSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11958', NULL, 'ORIZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11959', NULL, 'CARMEN PANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11960', NULL, 'INGRI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11961', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11962', NULL, 'LINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11963', NULL, 'LUCIANO PALOMINO CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11964', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11965', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11966', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11967', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11968', NULL, 'PROYECTO  342', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11969', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11970', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11971', NULL, 'RAUL ROMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11972', NULL, 'proyecto 342', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11973', NULL, 'CINTHIA CAYCHO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11974', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11975', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11976', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11977', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11978', NULL, 'GLADYS LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11979', NULL, 'soraya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11980', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11981', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11982', NULL, 'JASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11983', NULL, 'antoane', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11984', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11985', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11986', NULL, 'MIRTHA CHUQUITAYPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11987', NULL, 'AARON LAZARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11988', NULL, 'CARLOS LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11989', NULL, 'MARIA CARHUAMACA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11990', NULL, 'soledad mejia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11991', NULL, 'JUAN MACO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11992', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11993', NULL, 'margot', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11994', NULL, 'SUSANA MARQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11995', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11996', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11997', NULL, 'wilfredo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11998', NULL, 'belissa montes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('11999', NULL, 'nancy ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12000', NULL, 'INSTITUTO DE EDUCACION SUPERIOR RICARDO PALMA S.A.', '', '20338856955', '', '', 'AV. JAVIER PRADO ESTE NRO. 1130 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12001', NULL, 'ANELIDA RAMIREZ CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12002', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12003', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12004', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12005', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12006', NULL, 'magali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12007', NULL, 'IRMA OSCANOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12008', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12009', NULL, 'SAMUEL MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12010', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12011', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12012', NULL, 'ZOILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12013', NULL, 'FLOR RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12014', NULL, 'cenaida ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12015', NULL, 'NANCY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12016', NULL, 'ALEXANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12017', NULL, 'flor rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12018', NULL, 'victor arroyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12019', NULL, 'MARIANA PARREÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12020', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12021', NULL, 'AGUSTIN AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12022', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12023', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12024', NULL, 'IVAN CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12025', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12026', NULL, 'ANGEL REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12027', NULL, 'madelein', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12028', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12029', NULL, 'ROPSARIO CORTEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12030', NULL, 'SILVANA PALOMINO MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12031', NULL, 'ELITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12032', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12033', NULL, 'ELITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12034', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12035', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12036', NULL, 'TABARA CARRASCO PASTORA ELIZABETH', '', '10278380292', '', '', 'AV. TACNA # 690 DPTO. 704  CERCADO DE LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12037', NULL, 'MERCEDES PACHECO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12038', NULL, 'MARCO JAUJI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12039', NULL, 'NELLY PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12040', NULL, 'IRMA', '00000000', '', '', '', 'AV. TACNA # 690 DPTO. 704  CERCADO DE LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12041', NULL, 'ROCIO', '00000000', '', '', '', 'AV. TACNA # 690 DPTO. 704  CERCADO DE LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12042', NULL, 'VICTORIA CAYCHO', '00000000', '', '', '', 'AV. TACNA # 690 DPTO. 704  CERCADO DE LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12043', NULL, 'BLANCA CARDENAS', '00000000', '', '', '', 'AV. TACNA # 690 DPTO. 704  CERCADO DE LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12044', NULL, 'ANGI MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12045', NULL, 'JIMY QUIÑONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12046', NULL, 'RENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12047', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12048', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12049', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12050', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12051', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12052', NULL, 'FANNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12053', NULL, 'MARITZA LAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12054', NULL, 'stefani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12055', NULL, 'NELLY TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12056', NULL, 'MANUELA CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12057', NULL, 'SOLEDAD SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12058', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12059', NULL, 'rosa hernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12060', NULL, 'GRACE BOOKS EMP IND DE RESP LTDA', '', '20192818509', '', '', 'JR. FEDOROVICH STRAVINSKY NRO. 114 LAS CAMELIAS LIMA - LIMA - SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12061', NULL, 'GRACE BOOKS EMP IND DE RESP LTDA', '', '20192818509', '', '', 'JR. FEDOROVICH STRAVINSKY NRO. 114 LAS CAMELIAS LIMA - LIMA - SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12062', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12063', NULL, 'GRUPO GRYP S.A.C.', '', '20602301461', '', '', 'CAL.HEFESTO NRO. 499 DPTO. 3 PI URB. OLIMPO II ETAPA LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12064', NULL, 'fernando', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12065', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12066', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12067', NULL, 'giovana rosas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12068', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12069', NULL, 'silvana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12070', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12071', NULL, 'YANINA FERROA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12072', NULL, 'MARIBEL TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12073', NULL, 'MIGUEL RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12074', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12075', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12076', NULL, 'JORGE TANTALIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12077', NULL, 'CARLOS AREAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12078', NULL, 'SAYDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12079', NULL, 'YESICA LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12080', NULL, 'LUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12081', NULL, 'alejandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12082', NULL, 'silvia griseras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12083', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12084', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12085', NULL, 'EDUARDO REJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12086', NULL, 'EFRAIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12087', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12088', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12089', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12090', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12091', NULL, 'claudia medrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12092', NULL, 'carlos lapa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12093', NULL, 'CLAUDIA MEDRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12094', NULL, 'victor cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12095', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12096', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12097', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12098', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12099', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12100', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12101', NULL, 'DEMETRIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12102', NULL, 'MARINO MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12103', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12104', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12105', NULL, 'SALCEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12106', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12107', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12108', NULL, 'GIAN PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12109', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12110', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12111', NULL, 'IRIS VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12112', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12113', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12114', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12115', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12116', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12117', NULL, 'BLANCA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12118', NULL, 'ESTEBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12119', NULL, 'SARA DELGADILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12120', NULL, 'BLANCA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12121', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12122', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12123', NULL, 'EMMA TRJILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12124', NULL, 'GRISMTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12125', NULL, 'ELSA TABARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12126', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12127', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12128', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12129', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12130', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12131', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12132', NULL, 'NILSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12133', NULL, 'NILSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12134', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12135', NULL, 'JUAN DEL PINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12136', NULL, 'ANTONIETA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12137', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12138', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12139', NULL, 'ANTONIETA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12140', NULL, 'MICHAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12141', NULL, 'RAUL RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12142', NULL, 'CARMEN BARRAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12143', NULL, 'luis flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12144', NULL, 'RITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12145', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12146', NULL, 'ANA PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12147', NULL, 'ANA PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12148', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12149', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12150', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12151', NULL, 'eduardo garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12152', NULL, 'willy romo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12153', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12154', NULL, 'jorge orellana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12155', NULL, 'BERTHA melgar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12156', NULL, 'kate', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12157', NULL, 'eddith', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12158', NULL, 'carlos torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12159', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12160', NULL, 'ISAIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12161', NULL, 'libia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12162', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12163', NULL, 'EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12164', NULL, 'ROSARIO CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12165', NULL, 'LUCIA GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12166', NULL, 'GARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12167', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12168', NULL, 'LUZ GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12169', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12170', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12171', NULL, 'HILDA SANDOVAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12172', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12173', NULL, 'PERUFILMS SERVICIOS GENERALES SOCIEDAD ANONIMA CERRADA', '', '20545557763', '', '', 'AV. MEXICO NRO. 877 (A MEDIA CUADRA DE ABTAO) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12174', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12175', NULL, 'MIRIAN', '00000000', '', '', '', 'AV. MEXICO NRO. 877 (A MEDIA CUADRA DE ABTAO) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12176', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12177', NULL, 'LISET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12178', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12179', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12180', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12181', NULL, 'MARLENE CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12182', NULL, 'FERNANDO CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12183', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12184', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12185', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12186', NULL, 'ANGY SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12187', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12188', NULL, 'MARCOS SANCHEZ', '10128204', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12189', NULL, 'MARIANELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12190', NULL, 'MERLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12191', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12192', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12193', NULL, 'NORMA FALCONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12194', NULL, 'JUANA COLONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12195', NULL, 'JUANA AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12196', NULL, 'JUANA AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12197', NULL, 'JUANA AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12198', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12199', NULL, 'melgarejo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12200', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12201', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12202', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12203', NULL, 'enalia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12204', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12205', NULL, 'ARTURO PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12206', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12207', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12208', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12209', NULL, 'GREYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12210', NULL, 'IRMA GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12211', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12212', NULL, 'FREDY ACUÑA', '40649265', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12213', NULL, 'JAVIER FIGUEROA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12214', NULL, 'PEDRO TORRES', '08115008', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12215', NULL, 'IRIS AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12216', NULL, 'IRIS AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12217', NULL, 'MICHEL PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12218', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12219', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12220', NULL, 'MARINA VILLON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12221', NULL, 'MARINA VILLON ROBLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12222', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12223', NULL, 'FIDEL MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12224', NULL, 'ANTONIO RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12225', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12226', NULL, 'NATHALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12227', NULL, 'natalia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12228', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12229', NULL, 'LINDA TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12230', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12231', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12232', NULL, 'SAMIN INVERSIONES & SERVICIOS GENERALES S.A.C.', '', '20601019923', '', '', 'MZA. F LOTE. 37 INT. PS1 URB. SANTA ROSITA DE ATE PRIMERA ETAPA (ANTIGUA FABRICA DE SURGE CON LINEA RIEL) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12233', NULL, 'JOSE MARTINEZ', '00000000', '', '', '', 'MZA. F LOTE. 37 INT. PS1 URB. SANTA ROSITA DE ATE PRIMERA ETAPA (ANTIGUA FABRICA DE SURGE CON LINEA RIEL) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12234', NULL, 'JOSE MARTINEZ', '00000000', '', '', '', 'MZA. F LOTE. 37 INT. PS1 URB. SANTA ROSITA DE ATE PRIMERA ETAPA (ANTIGUA FABRICA DE SURGE CON LINEA RIEL) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12235', NULL, 'JUDITH', '00000000', '', '', '', 'MZA. F LOTE. 37 INT. PS1 URB. SANTA ROSITA DE ATE PRIMERA ETAPA (ANTIGUA FABRICA DE SURGE CON LINEA RIEL) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12236', NULL, 'JUDITH', '00000000', '', '', '', 'MZA. F LOTE. 37 INT. PS1 URB. SANTA ROSITA DE ATE PRIMERA ETAPA (ANTIGUA FABRICA DE SURGE CON LINEA RIEL) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12237', NULL, 'BUDHA CONECTION S.A.C.', '', '20601813671', '', '', 'JR. CARABAYA NRO. 959 (SEGUNDO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12238', NULL, 'JENY', '00000000', '', '', '', 'JR. CARABAYA NRO. 959 (SEGUNDO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12239', NULL, 'MARCELA', '00000000', '', '', '', 'JR. CARABAYA NRO. 959 (SEGUNDO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12240', NULL, 'CAROLINA', '00000000', '', '', '', 'JR. CARABAYA NRO. 959 (SEGUNDO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12241', NULL, 'ELBA', '00000000', '', '', '', 'JR. CARABAYA NRO. 959 (SEGUNDO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12242', NULL, 'LISBETH', '00000000', '', '', '', 'JR. CARABAYA NRO. 959 (SEGUNDO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12243', NULL, 'elena rojas', '00000000', '', '', '', 'JR. CARABAYA NRO. 959 (SEGUNDO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12244', NULL, 'MARTHA', '00000000', '', '', '', 'JR. CARABAYA NRO. 959 (SEGUNDO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12245', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12246', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12247', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12248', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12249', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12250', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12251', NULL, 'CINTHIA SAN MIGUEL ARCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12252', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12253', NULL, 'MARIA LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12254', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12255', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12256', NULL, 'ISMAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12257', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12258', NULL, 'rogelio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12259', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12260', NULL, 'raquel castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12261', NULL, 'elvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12262', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12263', NULL, 'ALVARADO VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12264', NULL, 'JUVENAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12265', NULL, 'BEATRIZ QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12266', NULL, 'MAGALLANES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12267', NULL, 'MARLENE', '10270303', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12268', NULL, 'GARY LOBATON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12269', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12270', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12271', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12272', NULL, 'ciri neyra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12273', NULL, 'maria urtiaga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12274', NULL, 'katia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12275', NULL, 'elvia palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12276', NULL, 'FELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12277', NULL, 'NAISHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12278', NULL, 'CLAUDIA CACERES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12279', NULL, 'LYANA ANSSUINI CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12280', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12281', NULL, 'NICOLASA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12282', NULL, 'EFRAIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12283', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12284', NULL, 'MIGUEL TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12285', NULL, 'ROXANA PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12286', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12287', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12288', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12289', NULL, 'YESICA CARRION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12290', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12291', NULL, 'gloria cano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12292', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12293', NULL, 'bazan hidalgo ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12294', NULL, 'antonieta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12295', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12296', NULL, 'CECILIA RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12297', NULL, 'ayde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12298', NULL, 'antonieta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12299', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12300', NULL, 'EDGAR APARICIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12301', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12302', NULL, 'ALEXANDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12303', NULL, 'KRAVER EQUIP SOCIEDAD ANONIMA CERRADA', '', '20511779325', '', '', 'AV. NICOLAS AYLLON NRO. 2048 URB. EL AYLLU LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12304', NULL, 'HELEN HUARANGA', '00000000', '', '', '', 'AV. NICOLAS AYLLON NRO. 2048 URB. EL AYLLU LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12305', NULL, 'dery', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12306', NULL, 'PAULA ARANA', '00000000', '', '', '', 'AV. NICOLAS AYLLON NRO. 2048 URB. EL AYLLU LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12307', NULL, 'TEODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12308', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12309', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12310', NULL, 'MAXIMO FERNANDEZ FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12311', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12312', NULL, 'MAGALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12313', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12314', NULL, 'CHAVEZ RIOS GLORIA LUISA', '', '10316297981', '', '', 'JR. JULIAN DE MORALES #749 HUARAZ', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12315', NULL, 'BLANCA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12316', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12317', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12318', NULL, 'CECILIA CHACARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12319', NULL, 'luis perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12320', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12321', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12322', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12323', NULL, 'IRMA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12324', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12325', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12326', NULL, 'GIOVANA VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12327', NULL, 'MERCEDES CO0NDOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12328', NULL, 'SERGIO CHUNG', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12329', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12330', NULL, 'YANINA JIBAJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12331', NULL, 'juan gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12332', NULL, 'liliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12333', NULL, 'IVETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12334', NULL, 'JULIA LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12335', NULL, 'FORTUNATA ESTEBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12336', NULL, 'ANITA HURTADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12337', NULL, 'WILLIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12338', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12339', NULL, 'ZEVALLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12340', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12341', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12342', NULL, 'CARLOS RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12343', NULL, 'FRANCISCO HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12344', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12345', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12346', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12347', NULL, 'CARMEN BOTELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12348', NULL, 'DIPONICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12349', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12350', NULL, 'EUSAQUIO COSME', '00000000', '', '', '', 'CHANCAY', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12351', NULL, 'ADELA CESPEDES', '00000000', '', '', '', 'CHANCAY', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12352', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12353', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12354', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12355', NULL, 'LUIS VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12356', NULL, 'EDITHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12357', NULL, 'LISET CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12358', NULL, 'MIGUEL CHIPANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12359', NULL, 'BETTY SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12360', NULL, 'ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12361', NULL, 'LUIS ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12362', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12363', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12364', NULL, 'PRUDENCIO GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12365', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12366', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12367', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12368', NULL, 'EDITH HUARCALLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12369', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12370', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12371', NULL, 'POOL AÑANCA QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12372', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12373', NULL, 'CINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12374', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12375', NULL, 'ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12376', NULL, 'yenifer', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12377', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12378', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12379', NULL, 'RICARDINA MOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12380', NULL, 'ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12381', NULL, 'PILAR PACHAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12382', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12383', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12384', NULL, 'MIRIAN ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12385', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12386', NULL, 'CARMEN JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12387', NULL, 'RAUL COSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12388', NULL, 'WALTER RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12389', NULL, 'LUISA CARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12390', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12391', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12392', NULL, 'NADIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12393', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12394', NULL, 'HECTOR LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12395', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12396', NULL, 'RICHARD PIMENTEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12397', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12398', NULL, 'WILIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12399', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12400', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12401', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12402', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12403', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12404', NULL, 'CESAR PORRAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12405', NULL, 'AMPARO BAZAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12406', NULL, 'ABIGAIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12407', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12408', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12409', NULL, 'MERLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12410', NULL, 'JUAN VILCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12411', NULL, 'JULIO FRANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12412', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12413', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12414', NULL, 'ANTONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12415', NULL, 'SONIA MATEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12416', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12417', NULL, 'ENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12418', NULL, 'MARIA ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12419', NULL, 'MARIA ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12420', NULL, 'KELLY JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12421', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12422', NULL, 'MICHELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12423', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12424', NULL, 'ESTER CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12425', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12426', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12427', NULL, 'edinson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12428', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12429', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12430', NULL, 'jorge sosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12431', NULL, 'isabel de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12432', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12433', NULL, 'XIOMARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12434', NULL, 'jerson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12435', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12436', NULL, 'rosa pumacahua', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12437', NULL, 'richard herreara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12438', NULL, 'RICHARD HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12439', NULL, 'RICHARD HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12440', NULL, 'victoria lata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12441', NULL, 'emperatriz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12442', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12443', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12444', NULL, 'diane', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12445', NULL, 'naricitas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12446', NULL, 'NORKA CHAMORRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12447', NULL, 'FABIAN MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12448', NULL, 'HEINER FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12449', NULL, 'RIVERA VALENTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12450', NULL, 'DAYANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12451', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12452', NULL, 'CESAR CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12453', NULL, 'JUAN VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12454', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12455', NULL, 'MARTHA VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12456', NULL, 'JULIANA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12457', NULL, 'maria elena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12458', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12459', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12460', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12461', NULL, 'FRISY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12462', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12463', NULL, 'FLOR TEJAÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12464', NULL, 'NELLY PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12465', NULL, 'ELIDA LUME QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12466', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12467', NULL, 'ANA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12468', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12469', NULL, 'JOSE TAJIRI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12470', NULL, 'RINALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12471', NULL, 'KUMBAL CONTRATISTAS GENERALES S.R.L.', '', '20604931712', '', '', 'CAL.LOS AMATISTAS NRO. 299 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12472', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12473', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12474', NULL, 'VICTOR MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12475', NULL, 'LILIBET MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12476', NULL, 'DUBIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12477', NULL, 'MARCELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12478', NULL, 'NELLY CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12479', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12480', NULL, 'FERNANDO DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12481', NULL, 'YOLANDA MORI DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12482', NULL, 'JULIO GUILLEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12483', NULL, 'MARIO ESPEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12484', NULL, 'wuarner cueva diaz', '40825157', '', '', '', 'wari -ancash', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12485', NULL, 'ELSA', '00000000', '', '', '', 'wari -ancash', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12486', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12487', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12488', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12489', NULL, 'JULIA QUINTANILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12490', NULL, 'MOISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12491', NULL, 'SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12492', NULL, 'rufina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12493', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12494', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12495', NULL, 'SUSANA GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12496', NULL, 'eva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12497', NULL, 'marleni VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12498', NULL, 'isabel churlisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12499', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12500', NULL, 'MARIELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12501', NULL, 'abel huarca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12502', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12503', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12504', NULL, 'mirko', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12505', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12506', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12507', NULL, 'america', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12508', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12509', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12510', NULL, 'ricardo leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12511', NULL, 'zulema', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12512', NULL, 'eduardo portal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12513', NULL, 'fredy bautista', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12514', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12515', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12516', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12517', NULL, 'guisell', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12518', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12519', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12520', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12521', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12522', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12523', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12524', NULL, 'jorge rosales', '42724079', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12525', NULL, 'MANUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12526', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12527', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12528', NULL, 'aldo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12529', NULL, 'DELFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12530', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12531', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12532', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12533', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12534', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12535', NULL, 'astrid  rosales', '74074303', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12536', NULL, 'RENE MENDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12537', NULL, 'NORMA RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12538', NULL, 'SOLEDAD SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12539', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12540', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12541', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12542', NULL, 'MARIA DURAN MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12543', NULL, 'IRMA CASTAÑEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12544', NULL, 'KAROL RIVERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12545', NULL, 'ROSA VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12546', NULL, 'RAYO CABALLERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12547', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12548', NULL, 'CECILA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12549', NULL, 'NIDEL ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12550', NULL, 'MEJIA CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12551', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12552', NULL, 'LENIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12553', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12554', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12555', NULL, 'LILIANA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12556', NULL, 'JULISSA  LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12557', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12558', NULL, 'NIK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12559', NULL, 'LESLY DEL CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12560', NULL, 'CARLOS PAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12561', NULL, 'CARLOS PAZ', '15610632', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12562', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12563', NULL, 'LILIANA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12564', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12565', NULL, 'jean', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12566', NULL, 'ZOILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12567', NULL, 'NELIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12568', NULL, 'ZOILA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12569', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12570', NULL, 'JUDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12571', NULL, 'ESTEFANY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12572', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12573', NULL, 'EDITH HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12574', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12575', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12576', NULL, 'ERIKA VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12577', NULL, 'ERIKA VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12578', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12579', NULL, 'ISABEL MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12580', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12581', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12582', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12583', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12584', NULL, 'PERCY GUSMANN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12585', NULL, 'AGRIPINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12586', NULL, 'AGRIPINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12587', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12588', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12589', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12590', NULL, 'ELMER RICALDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12591', NULL, 'DANIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12592', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12593', NULL, 'ELENA MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12594', NULL, 'NANACY ROBLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12595', NULL, 'NANCY ROBLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12596', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12597', NULL, 'pedro ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12598', NULL, 'miguel onton', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12599', NULL, 'fernando  rafael', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12600', NULL, 'ronald rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12601', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12602', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12603', NULL, 'HERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12604', NULL, 'AIDE MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12605', NULL, 'RITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12606', NULL, 'QUISPE CABALLERO JOSE MIGUEL', '', '10455207032', '', '', 'AV. AVIACION 1391- LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12607', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12608', NULL, 'MALENA CERVANTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12609', NULL, 'BRIGIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12610', NULL, 'PACO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12611', NULL, 'MILTON DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12612', NULL, 'PEDRO QUILLAMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12613', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12614', NULL, 'mirian rosas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12615', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12616', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12617', NULL, 'AYME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12618', NULL, 'MARCO VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12619', NULL, 'ROSBI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12620', NULL, 'NOELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12621', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12622', NULL, 'ERIK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12623', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12624', NULL, 'BETTY TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12625', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12626', NULL, 'LURDES ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12627', NULL, 'CLARA ESTELA MARQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12628', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12629', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12630', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12631', NULL, 'fresia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12632', NULL, 'wilbert mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12633', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12634', NULL, 'JAQUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12635', NULL, 'timotea', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12636', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12637', NULL, 'garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12638', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12639', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12640', NULL, 'monica flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12641', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12642', NULL, 'modesto casachagua', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12643', NULL, 'CINTIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12644', NULL, 'brunela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12645', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12646', NULL, 'JUANA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12647', NULL, 'sheyla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12648', NULL, 'CRISTINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12649', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12650', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12651', NULL, 'juan gutierrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12652', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12653', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12654', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12655', NULL, 'PEDRO BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12656', NULL, 'SADIT PIMENTEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12657', NULL, 'ARTEMIO LANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12658', NULL, 'IEP JAE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12659', NULL, 'NANCY BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12660', NULL, 'SANTILLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12661', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12662', NULL, 'GREGORIA POMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12663', NULL, 'I.E.I 547 DIVINO NIÑO JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12664', NULL, 'I.E.I 541 DIVINO NIÑO JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12665', NULL, 'RENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12666', NULL, 'ALEXANDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12667', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12668', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12669', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12670', NULL, 'JOE CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12671', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12672', NULL, 'maximina roldan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12673', NULL, 'dalila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12674', NULL, 'alejandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12675', NULL, 'ESQUEIROS RECORD S.A.C', '', '20501445003', '', '', 'PJ. AGUERO NRO. 141 DPTO. 702 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12676', NULL, 'GREGORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12677', NULL, 'MARCELA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12678', NULL, 'OSCAR MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12679', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12680', NULL, 'DINA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12681', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12682', NULL, 'NORA CONDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12683', NULL, 'MARIA SARMIENTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12684', NULL, 'ELBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12685', NULL, 'QUIROZ MATILDO ANGEL EDUARDO', '', '10328760211', '', '', 'SAN JUAN AMASIAS PASAJE COLQUE  MZ N LOTE 1 CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12686', NULL, 'GIOVANA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12687', NULL, 'PABLO RODRIGEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12688', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12689', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12690', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12691', NULL, 'CENAIDA ALCARRAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12692', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12693', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12694', NULL, 'CARMEN GASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12695', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12696', NULL, 'TORIBIA CABELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12697', NULL, 'AGUSTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12698', NULL, 'CLADY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12699', NULL, 'MARILUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12700', NULL, 'ESTELA HUAYNATES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12701', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12702', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12703', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12704', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12705', NULL, 'MAURICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12706', NULL, 'LESLI NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12707', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12708', NULL, 'REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12709', NULL, 'ABRAHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12710', NULL, 'TEOFILO GUIDO BRUNO', '00000000', '', '', '', 'SATIPO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12711', NULL, 'IDA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12712', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12713', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12714', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12715', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12716', NULL, 'NEGOCIACIONES LEOPAT S.A.C.', '', '20603036221', '', '', 'JR. 9 DE DICIEMBRE NRO. 283 (ENTRE MARICAL Y 9 DE DICIEMBRE) AYACUCHO - HUAMANGA - AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12717', NULL, 'EDWIN OSORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12718', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12719', NULL, 'irine escate castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12720', NULL, 'ROSA TENORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12721', NULL, 'MANUELA CORRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12722', NULL, 'OCTAVIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12723', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12724', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12725', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12726', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12727', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12728', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12729', NULL, 'INVERSIONES KAMIMBA SAC', '', '20537065681', '', '', 'CAL.ERNESTO ODRIOZOLA NRO. 113 URB. LAS LEYENDAS LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12730', NULL, 'BERTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12731', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12732', NULL, 'FELIPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12733', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12734', NULL, 'AURACIO TAPIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12735', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12736', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12737', NULL, 'PEREZ CELESTINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12738', NULL, 'pancho alejo', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12739', NULL, 'PANCHO ALEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12740', NULL, 'PANCHO ALEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12741', NULL, 'PANCHO ALEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12742', NULL, 'MARIA CARHUALLO LOBATON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12743', NULL, 'MONICA CHON TAGAMBOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12744', NULL, 'NICHO MENDOZA JESUS ALCIDES', '', '10461107872', '', '', 'AV. BOLOGNESI #221 SANTA MARIA -HUAURA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12745', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12746', NULL, 'WENDY SALDAÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12747', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12748', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12749', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12750', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12751', NULL, 'vicente', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12752', NULL, 'REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12753', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12754', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12755', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12756', NULL, 'RAUL RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12757', NULL, 'LUISA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12758', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12759', NULL, 'PATRICIA ALEGRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12760', NULL, 'ELIZABETH ALEGRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12761', NULL, 'erlinda', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12762', NULL, 'ermelinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12763', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12764', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12765', NULL, 'OLGA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12766', NULL, 'ana GARCILAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12767', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12768', NULL, 'RAUL PELAEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12769', NULL, 'ROSA GALLARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12770', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12771', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12772', NULL, 'EZEQUIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12773', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12774', NULL, 'MARCIAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12775', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12776', NULL, 'MARTIN MORE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12777', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12778', NULL, 'ESMIRIA BERMEO SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12779', NULL, 'CELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12780', NULL, 'CELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12781', NULL, 'CELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12782', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12783', NULL, 'JULIAN CONDEZO', '45958371', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12784', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12785', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12786', NULL, 'OLIVIA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12787', NULL, 'SAMMY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12788', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12789', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12790', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12791', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12792', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12793', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12794', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12795', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12796', NULL, 'lizett aguirre', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12797', NULL, 'gisela costa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12798', NULL, 'dixie', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12799', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12800', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12801', NULL, 'shirley1', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12802', NULL, 'GEORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12803', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12804', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12805', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12806', NULL, 'ESCUELAS MIGUEL ANGEL S.A.C.', '', '20492627101', '', '', 'CAL.16 MZA. 18 LOTE. 4 URB. TERCERA ETAPA LIMA - LIMA - CIENEGUILLA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12807', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12808', NULL, 'ROBERTH ARAUJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12809', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12810', NULL, 'EZEQUIEL FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12811', NULL, 'HUARCAYA CONISLLA LUIS', '', '10218587114', '', '', 'JR ITALIA 283 CC NUEVO MILENIUM STAND 6- CHINCHA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12812', NULL, 'victoria condeso', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12813', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12814', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12815', NULL, 'nicky', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12816', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12817', NULL, 'CARLOS VELOZMORO RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12818', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12819', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12820', NULL, 'SONALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12821', NULL, 'MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12822', NULL, 'ESPERANZA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12823', NULL, 'JOSEFA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12824', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12825', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12826', NULL, 'JOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12827', NULL, 'JOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12828', NULL, 'ANA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12829', NULL, 'sandy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12830', NULL, 'sandy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12831', NULL, 'adavis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12832', NULL, 'adavis larota ortiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12833', NULL, 'HOSPEDAJE LOS CACTUS SOCIEDAD ANONIMA CERRADA', '', '20604620881', '', '', 'CAL.YAHUAR HUACA MZA. L LOTE. 7B (A MEDIA CDRA DE LA PANAMERICANA) ICA - NASCA - VISTA ALEGRE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12834', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12835', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12836', NULL, 'BETTY lazo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12837', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12838', NULL, 'RUBI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12839', NULL, 'EDALIL LISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12840', NULL, 'ROSANA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12841', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12842', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12843', NULL, 'JOSE VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12844', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12845', NULL, 'JAIME CHAMBI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12846', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12847', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12848', NULL, 'ROSA CABRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12849', NULL, 'JEAN PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12850', NULL, 'JEAN PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12851', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12852', NULL, 'DELFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12853', NULL, 'GERARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12854', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12855', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12856', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12857', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12858', NULL, 'reineiro fernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12859', NULL, 'REINEIRO FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12860', NULL, 'FLORES ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12861', NULL, 'EDUARDO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12862', NULL, 'ADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12863', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12864', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12865', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12866', NULL, 'YESICA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12867', NULL, 'BACILIA FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12868', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12869', NULL, 'MANUEL GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12870', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12871', NULL, 'OLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12872', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12873', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12874', NULL, 'ELIZA ECHEVARRIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12875', NULL, 'PAOLA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12876', NULL, 'ALBERTO HUAYHUA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12877', NULL, 'IRMA JANAMPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12878', NULL, 'ANDREEA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12879', NULL, 'AURORA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12880', NULL, 'FORTUNATO PERALTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12881', NULL, 'MARIELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12882', NULL, 'ROXANA MANRRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12883', NULL, 'MARIANELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12884', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12885', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12886', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12887', NULL, 'YESICA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12888', NULL, 'LUCY ESQUIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12889', NULL, 'NARCISA MALAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12890', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12891', NULL, 'CRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12892', NULL, 'JUAN PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12893', NULL, 'TILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12894', NULL, 'JUAN MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12895', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12896', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12897', NULL, 'FRANCISCO FARFAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12898', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12899', NULL, 'ABEL CABELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12900', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12901', NULL, 'loana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12902', NULL, 'juan zeballos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12903', NULL, 'ramon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12904', NULL, 'JASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12905', NULL, 'YANEL HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12906', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12907', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12908', NULL, 'JAVIER AQUINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12909', NULL, 'FABIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12910', NULL, 'GRACIELA HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12911', NULL, 'EDITH GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12912', NULL, 'ROBERTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12913', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12914', NULL, 'livia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12915', NULL, 'LUCIA CASAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12916', NULL, 'PERCY ATAMARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12917', NULL, 'PERCY ATAMARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12918', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12919', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12920', NULL, 'MARCO CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12921', NULL, 'EDITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12922', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12923', NULL, 'ELSA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12924', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12925', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12926', NULL, 'LUIS CABEZAS ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12927', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12928', NULL, 'BERTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12929', NULL, 'VELASQUE PALOMINO VIRGINIA', '', '10310401507', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12930', NULL, 'CEGNE SANTA ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12931', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12932', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12933', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12934', NULL, 'ROSMARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12935', NULL, 'AQUILINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12936', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12937', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12938', NULL, '0BDULIA DE LA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12939', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12940', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12941', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12942', NULL, 'CARMEN TRIBIÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12943', NULL, 'NOEMI BORJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12944', NULL, 'DIEGO BERNUY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12945', NULL, 'CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12946', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12947', NULL, 'ELIDA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12948', NULL, 'LIZ CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12949', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12950', NULL, 'MARIELA CHAUCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12951', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12952', NULL, 'ERNESTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12953', NULL, 'ANA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12954', NULL, 'CARMEN RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12955', NULL, 'CONSUELO SORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12956', NULL, 'VALENTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12957', NULL, 'MADELEIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12958', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12959', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12960', NULL, 'MAXIMO HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12961', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12962', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12963', NULL, 'ALFARO ARANA BRAYAN MACARLY', '', '10757704558', '', '', 'ASENTAMIENTO HUMANO DANIEL ALCIDES CARRION -SAN MARTIN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12964', NULL, 'NANCY LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12965', NULL, 'esperanza', '00000000', '', '', '', 'ASENTAMIENTO HUMANO DANIEL ALCIDES CARRION -SAN MARTIN', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12966', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12967', NULL, 'JAIME ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12968', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12969', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12970', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12971', NULL, 'C Y Q INGENIERIA E INSTRUMENTACION S.A.C.', '', '20477947141', '', '', 'CAL.ISABEL DE MENDAÑA NRO. 168 URB. SAN MIGUELITO LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12972', NULL, 'ANAIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12973', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12974', NULL, 'JUANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12975', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12976', NULL, 'KARINA PULCHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12977', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12978', NULL, 'ELISA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12979', NULL, 'KAROL MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12980', NULL, 'MARIA ELENA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12981', NULL, 'renato', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12982', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12983', NULL, 'BENAVIDES JUNCO SONIA ROSMERY', '', '10451915911', '', '', 'MZ. 120 LT 9 GRUPO 5 SEC. A HUASCAR LIMA-LIMA-S.J.L.', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12984', NULL, 'MARY MELENDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12985', NULL, 'JONATAN VICENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12986', NULL, 'MARINA', '00000000', '', '', '', 'MZ. 120 LT 9 GRUPO 5 SEC. A HUASCAR LIMA-LIMA-S.J.L.', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12987', NULL, 'IRENE', '00000000', '', '', '', 'MZ. 120 LT 9 GRUPO 5 SEC. A HUASCAR LIMA-LIMA-S.J.L.', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12988', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12989', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12990', NULL, 'LANDAURI RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12991', NULL, 'LANDAURI RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12992', NULL, 'carmen samora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12993', NULL, 'ARMANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12994', NULL, 'sarita monson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12995', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12996', NULL, 'froida calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12997', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12998', NULL, 'ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('12999', NULL, 'JAVIER CERNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13000', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13001', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13002', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13003', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13004', NULL, 'FRANKLIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13005', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13006', NULL, 'IRMA CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13007', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13008', NULL, 'TEODOCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13009', NULL, 'MARCO IGLESIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13010', NULL, 'mary', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13011', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13012', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13013', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13014', NULL, 'LINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13015', NULL, 'SHERLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13016', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13017', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13018', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13019', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13020', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13021', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13022', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13023', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13024', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13025', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13026', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13027', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13028', NULL, 'edgar solis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13029', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13030', NULL, 'ñlupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13031', NULL, 'MARIA MONTENEGRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13032', NULL, 'ESTRELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13033', NULL, 'VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13034', NULL, 'marina ubillus', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13035', NULL, 'RENATO DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13036', NULL, 'RICARDO YACTAYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13037', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13038', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13039', NULL, 'JEAN PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13040', NULL, 'SOLUCIONES ROMA S.A.C.', '', '20600723449', '', '', 'MZA. G-1 LOTE. 4 P.J. TUPAC AMARU DE VILLA (A 2CDRAS. DE LA PÓSTA TUPAC AMARU DE VIL) LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13041', NULL, 'IVET TORRES', '00000000', '', '', '', 'MZA. G-1 LOTE. 4 P.J. TUPAC AMARU DE VILLA (A 2CDRAS. DE LA PÓSTA TUPAC AMARU DE VIL) LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13042', NULL, 'CLAUDIA VELASQUES', '00000000', '', '', '', 'MZA. G-1 LOTE. 4 P.J. TUPAC AMARU DE VILLA (A 2CDRAS. DE LA PÓSTA TUPAC AMARU DE VIL) LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13043', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13044', NULL, 'SOCORRO PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13045', NULL, 'manuela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13046', NULL, 'SHEYLA LOPEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13047', NULL, 'SHEYLA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13048', NULL, 'MARTHA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13049', NULL, 'MARGOTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13050', NULL, 'selene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13051', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13052', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13053', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13054', NULL, 'TERESA CHUQUIPOMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13055', NULL, 'CESPEDES RAMIREZ EDITH', '', '10311768544', '', '', 'av. andahuaylas mercado modelo tda 8 - andahuaylas', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13056', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13057', NULL, 'ronald', '00000000', '', '', '', 'av. andahuaylas mercado modelo tda 8 - andahuaylas', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13058', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13059', NULL, 'SUSANA MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13060', NULL, 'RAQUEL', '00000000', '', '', '', 'av. andahuaylas mercado modelo tda 8 - andahuaylas', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13061', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13062', NULL, 'CESAR VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13063', NULL, 'JANETH GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13064', NULL, 'fabiola', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13065', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13066', NULL, 'PEDRO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13067', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13068', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13069', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13070', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13071', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13072', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13073', NULL, 'JESICA PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13074', NULL, 'FLORES ORTEGA MAGNA ROCIO', '', '10101783656', '', '', 'av flora tristan 443 - la molina', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13075', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13076', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13077', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13078', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13079', NULL, 'GRACIELA DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13080', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13081', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13082', NULL, 'domitilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13083', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13084', NULL, 'ELIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13085', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13086', NULL, 'HUGO DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13087', NULL, 'ISABEL DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13088', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13089', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13090', NULL, 'YENY GUILLEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13091', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13092', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13093', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13094', NULL, 'DANIEL GUERRA', '00000000', '', '', '', 'SAN JUAN DE ,MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13095', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13096', NULL, 'ALBERTO CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13097', NULL, 'DAVID CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13098', NULL, 'maria esther', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13099', NULL, 'ALBERTO CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13100', NULL, 'eva rivero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13101', NULL, 'alex espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13102', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13103', NULL, 'marlene gutierres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13104', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13105', NULL, 'ANIBAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13106', NULL, 'NANCY DELFIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13107', NULL, 'SANCHEZ DIAZ', '21787364', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13108', NULL, 'DORIS MENDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13109', NULL, 'LIZ OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13110', NULL, 'DORIS MENDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13111', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13112', NULL, 'LIZ OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13113', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13114', NULL, 'SARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13115', NULL, 'JOSE MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13116', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13117', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13118', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13119', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13120', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13121', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13122', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13123', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13124', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13125', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13126', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13127', NULL, 'NEW CAR IMPORT S.A.C', '', '20543699641', '', '', 'JR. GARCIA NARANJO NRO. 1193 URB. HUERTA RONDON - ZONA B LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13128', NULL, 'IRMA VALDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13129', NULL, 'NORIA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13130', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13131', NULL, 'MARIA JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13132', NULL, 'VICTORIA PERALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13133', NULL, 'KORINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13134', NULL, 'DENIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13135', NULL, 'DENIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13136', NULL, 'FELIX TOMAIRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13137', NULL, 'TOMAIRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13138', NULL, 'julissa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13139', NULL, 'IRMA CUBAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13140', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13141', NULL, 'ERMINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13142', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13143', NULL, 'MARIBEL PALACIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13144', NULL, 'ALCIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13145', NULL, 'MAGALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13146', NULL, 'CESAR RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13147', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13148', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13149', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13150', NULL, 'SULILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13151', NULL, 'GISELA DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13152', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13153', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13154', NULL, 'PABLO CHUCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13155', NULL, 'PABLO CHUCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13156', NULL, 'DANIEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13157', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13158', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13159', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13160', NULL, 'ayin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13161', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13162', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13163', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13164', NULL, 'adela ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13165', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13166', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13167', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13168', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13169', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13170', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13171', NULL, 'COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13172', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13173', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13174', NULL, 'isabel ibarra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13175', NULL, 'joiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13176', NULL, 'OLGA TAPIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13177', NULL, 'YANETH CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13178', NULL, 'IRMA VILCAPOMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13179', NULL, 'MILAGROS NEYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13180', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13181', NULL, 'blanca de vidal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13182', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13183', NULL, 'jhony perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13184', NULL, 'ALDO COCHACHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13185', NULL, 'cayo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13186', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13187', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13188', NULL, 'OLIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13189', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13190', NULL, 'zoila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13191', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13192', NULL, 'OLIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13193', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13194', NULL, 'jesus osco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13195', NULL, 'yaneth leiva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13196', NULL, 'EDISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13197', NULL, 'ROSA HILARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13198', NULL, 'JUAN VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13199', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13200', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13201', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13202', NULL, 'MARIA GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13203', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13204', NULL, 'ERMELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13205', NULL, 'BEATRIZ HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13206', NULL, 'jaime castro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13207', NULL, 'BEATRIZ VERGARA GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13208', NULL, 'CARBAJAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13209', NULL, 'GERARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13210', NULL, 'MARGOTH MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13211', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13212', NULL, 'MAGDALENA GARCIA LUJAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13213', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13214', NULL, 'MARIA HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13215', NULL, 'juan cartrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13216', NULL, ',martha rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13217', NULL, 'gloria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13218', NULL, 'paty', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13219', NULL, 'flor tabara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13220', NULL, 'FLOR TAVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13221', NULL, 'juli marcas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13222', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13223', NULL, 'MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13224', NULL, 'LUIGINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13225', NULL, 'ROXANA ESPIRITU CISNERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13226', NULL, 'MARIA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13227', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13228', NULL, 'BLANCA FELIPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13229', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13230', NULL, 'EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13231', NULL, 'eliseo pari', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13232', NULL, 'ELISEO PARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13233', NULL, 'EDGAR TURCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13234', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13235', NULL, 'JORGE VALLE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13236', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13237', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13238', NULL, 'irina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13239', NULL, 'ELMER GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13240', NULL, 'MARIA CHOQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13241', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13242', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13243', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13244', NULL, 'soledad', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13245', NULL, 'abraham leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13246', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13247', NULL, 'JOSELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13248', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13249', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13250', NULL, 'susana pajuelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13251', NULL, 'emiliano espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13252', NULL, 'luis trinidad', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13253', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13254', NULL, 'JUAN DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13255', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13256', NULL, 'EUGENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13257', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13258', NULL, 'juan alvarado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13259', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13260', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13261', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13262', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13263', NULL, 'VERSATIL SERVICIOS GENERALES PUBLICITARI OS S.R.L', '', '20453873481', '', '', 'MZA. J LOTE. 12 URB. AURORA AREQUIPA - AREQUIPA - AREQUIPA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13264', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13265', NULL, 'JORGE LIMACHE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13266', NULL, 'LILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13267', NULL, 'EDMUNdo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13268', NULL, 'EDU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13269', NULL, 'COBITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13270', NULL, 'aracely delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13271', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13272', NULL, 'AGUERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13273', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13274', NULL, 'MARIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13275', NULL, 'YOJAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13276', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13277', NULL, 'MARTHA la rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13278', NULL, 'FRANCISCO peralta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13279', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13280', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13281', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13282', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13283', NULL, 'charo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13284', NULL, 'guillermina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13285', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13286', NULL, 'juan huaringa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13287', NULL, 'braulio mamani', '10276868', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13288', NULL, 'lurdes flores sandoval', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13289', NULL, 'fatima ovalle', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13290', NULL, 'LIDIA SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13291', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13292', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13293', NULL, 'gabi avila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13294', NULL, 'CARMEN QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13295', NULL, 'RITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13296', NULL, 'FREDY HINOSTROZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13297', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13298', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13299', NULL, 'JUDITH TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13300', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13301', NULL, 'RODRIGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13302', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13303', NULL, 'JORGE SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13304', NULL, 'EDITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13305', NULL, 'iISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13306', NULL, 'LUZ JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13307', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13308', NULL, 'VIVIAN PARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13309', NULL, 'FIORELA ORMEÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13310', NULL, 'ALEJANDRO VALDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13311', NULL, 'FANNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13312', NULL, 'VIOLETA HOYOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13313', NULL, 'DAVID MERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13314', NULL, 'FRANCISCFATIMAO ZAVALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13315', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13316', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13317', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13318', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13319', NULL, 'vanesa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13320', NULL, 'MARTHA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13321', NULL, 'MARIA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13322', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13323', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13324', NULL, 'diana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13325', NULL, 'MARIZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13326', NULL, 'MIGUEL ANGEL BELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13327', NULL, 'RUBEN ALMENDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13328', NULL, 'ALICIA CASAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13329', NULL, 'JULIA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13330', NULL, 'NANCY LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13331', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13332', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13333', NULL, 'MARIA QUINTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13334', NULL, 'LUCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13335', NULL, 'JORGE CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13336', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13337', NULL, 'ANA MORIANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13338', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13339', NULL, 'charo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13340', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13341', NULL, 'ERBIN HERMOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13342', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13343', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13344', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13345', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13346', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13347', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13348', NULL, 'EVA NAVINTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13349', NULL, 'NILSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13350', NULL, 'cecilia de cajaleon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13351', NULL, 'kreysi valenzuela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13352', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13353', NULL, 'MADELENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13354', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13355', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13356', NULL, 'augusto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13357', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13358', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13359', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13360', NULL, 'roman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13361', NULL, 'roman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13362', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13363', NULL, 'lucila fierro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13364', NULL, 'JANETH FIGUEROA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13365', NULL, 'CANDI MORON RIVERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13366', NULL, 'COMERCIAL ABC COMPANY E.I.R.L.', '', '20603266405', '', '', 'AV. 1 DE MAYO NRO. 732 P.J. REYNOSO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CARMEN DE LA LEGUA REYNOSO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13367', NULL, 'DEYSI', '00000000', '', '', '', 'AV. 1 DE MAYO NRO. 732 P.J. REYNOSO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CARMEN DE LA LEGUA REYNOSO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13368', NULL, 'JONY ORTIZ', '00000000', '', '', '', 'AV. 1 DE MAYO NRO. 732 P.J. REYNOSO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CARMEN DE LA LEGUA REYNOSO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13369', NULL, 'FERNANDEZ YOVERA ISABEL', '', '10165508411', '', '', 'MANUEL VILLEGAS SAUSA #140 MOTUPE LAMBAYEQUE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13370', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13371', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13372', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13373', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13374', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13375', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13376', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13377', NULL, 'MELISA YAPO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13378', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13379', NULL, 'SONIA PIMENTEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13380', NULL, 'EUDIS CAILLAHUA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13381', NULL, 'JORGE FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13382', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13383', NULL, 'JORGE JURADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13384', NULL, 'LUCILA TOLEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13385', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13386', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13387', NULL, 'nelida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13388', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13389', NULL, 'EULALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13390', NULL, 'CARLOS TRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13391', NULL, 'CARMEN LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13392', NULL, 'GLORIA MOTTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13393', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13394', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13395', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13396', NULL, 'ALICIA CISNEROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13397', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13398', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13399', NULL, 'claudia soto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13400', NULL, 'jorge castellano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13401', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13402', NULL, 'nayeli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13403', NULL, 'osias mego', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13404', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13405', NULL, 'forniceba', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13406', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13407', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13408', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13409', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13410', NULL, 'manuel alvarado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13411', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13412', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13413', NULL, 'milagros flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13414', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13415', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13416', NULL, 'luis vallejos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13417', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13418', NULL, 'carla torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13419', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13420', NULL, 'arali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13421', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13422', NULL, 'david zabaleta vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13423', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13424', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13425', NULL, 'katia rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13426', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13427', NULL, 'rayda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13428', NULL, 'ray cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13429', NULL, 'JUANA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13430', NULL, 'AMELIA ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13431', NULL, 'ALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13432', NULL, 'PABLO PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13433', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13434', NULL, 'obdulia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13435', NULL, 'CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13436', NULL, 'sadith', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13437', NULL, 'CESAR PARI', '23275290', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13438', NULL, 'ANA PAZ SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13439', NULL, 'ALISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13440', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13441', NULL, 'CARMEN DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13442', NULL, 'ESTEFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13443', NULL, 'CORPORACION ZHARA S.A.C.', '', '20600461461', '', '', 'JR. HUMBOLDT NRO. 1441 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13444', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13445', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13446', NULL, 'ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13447', NULL, 'ZENOVIA MALLMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13448', NULL, 'GENERACION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13449', NULL, 'GIANCARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13450', NULL, 'BEJAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13451', NULL, 'YOLANDA PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13452', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13453', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13454', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13455', NULL, 'KATTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13456', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13457', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13458', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13459', NULL, 'LUORDES VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13460', NULL, 'maria de los angeles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13461', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13462', NULL, 'AMACHI CUGUADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13463', NULL, 'LUORDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13464', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13465', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13466', NULL, 'ROSA MERINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13467', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13468', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13469', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13470', NULL, 'JUANA ALVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13471', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13472', NULL, 'ARUMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13473', NULL, 'SEMIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13474', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13475', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13476', NULL, 'ABEL LESCANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13477', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13478', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13479', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13480', NULL, 'fidel fernades flores', '42243513', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13481', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13482', NULL, 'justa mamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13483', NULL, 'jeny farfan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13484', NULL, 'AMILCA ZEBALLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13485', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13486', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13487', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13488', NULL, 'pastor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13489', NULL, 'luz vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13490', NULL, 'LETICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13491', NULL, 'ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13492', NULL, 'ADOLFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13493', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13494', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13495', NULL, 'JULIA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13496', NULL, 'OTILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13497', NULL, 'ANGELICA GAYOSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13498', NULL, 'flora velasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13499', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13500', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13501', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13502', NULL, 'DIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13503', NULL, 'DIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13504', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13505', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13506', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13507', NULL, 'LIDA JARA E.I.R.L.', '', '20602219047', '', '', 'JR. MOQUEGUA NRO. 338 (2DO PISO- 1CDRA DEL MINISTERIO DE AGRICU) PUNO - PUNO - PUNO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13508', NULL, 'ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13509', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13510', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13511', NULL, 'RODRIGO ORADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13512', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13513', NULL, 'LUISA SALIS ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13514', NULL, 'YENKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13515', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13516', NULL, 'SANCHEZ FRANCIA SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13517', NULL, 'MODESTO MASA CHIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13518', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13519', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13520', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13521', NULL, 'LIDIA MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13522', NULL, 'TICLLA DE CONDOR EDELMIRA', '', '10273720451', '', '', 'INCA GARCILAZO DE LA VEGA 367 CHOTA- CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13523', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13524', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13525', NULL, 'MARCELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13526', NULL, 'MARINA ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13527', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13528', NULL, 'ALFREDO GALVEZ', '00000000', '', '', '', 'INCA GARCILAZO DE LA VEGA 367 CHOTA- CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13529', NULL, 'JUSTINA', '00000000', '', '', '', 'INCA GARCILAZO DE LA VEGA 367 CHOTA- CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13530', NULL, 'ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13531', NULL, 'JOSUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13532', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13533', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13534', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13535', NULL, 'YANTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13536', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13537', NULL, 'JAIME GASPAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13538', NULL, 'ELIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13539', NULL, 'ALEX CALANCHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13540', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13541', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13542', NULL, 'ALMIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13543', NULL, 'LEYDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13544', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13545', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13546', NULL, 'JESICA VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13547', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13548', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13549', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13550', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13551', NULL, 'SUSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13552', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13553', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13554', NULL, 'EXEQUIEL GARCIA MARQUEZ', '44026228', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13555', NULL, 'ELSA SANDOVAL', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13556', NULL, 'ZENAIDA', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13557', NULL, 'GREGORIO YATACO', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13558', NULL, 'MARIA', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13559', NULL, 'NICOLAS CHAMBLOQUE', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13560', NULL, 'DIANA PACHECO', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13561', NULL, 'YESICA', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13562', NULL, 'FRANK ORTEGA', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13563', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13564', NULL, 'ENRRIQUE GUTIERREZ', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13565', NULL, 'FABI', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13566', NULL, 'eduard becerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13567', NULL, 'PATRICIA GUERRA', '00000000', '', '', '', 'CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13568', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13569', NULL, 'jefriy la oz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13570', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13571', NULL, 'AMELIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13572', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13573', NULL, 'nida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13574', NULL, 'VICTOR GUTARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13575', NULL, 'CARMENvioleta leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13576', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13577', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13578', NULL, 'SHERLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13579', NULL, 'EDUARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13580', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13581', NULL, 'MAGALI CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13582', NULL, 'DIANRINA REGALADO VILLEGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13583', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13584', NULL, 'luis sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13585', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13586', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13587', NULL, 'YACKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13588', NULL, 'DELIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13589', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13590', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13591', NULL, 'julio cabello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13592', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13593', NULL, 'OLGA VALENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13594', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13595', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13596', NULL, 'ISABEL POMA GASPAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13597', NULL, 'flora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13598', NULL, 'MARLENE CERCADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13599', NULL, 'MARCO LIZARBE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13600', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13601', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13602', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13603', NULL, 'GABY PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13604', NULL, 'JACKELINE VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13605', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13606', NULL, 'CABRERA CORREA MICAELA MILAGROS', '', '10400440811', '', '', 'JR MOLINO DEL GATO 200 O 02 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13607', NULL, 'ROSA HERRERA', '00000000', '', '', '', 'JR MOLINO DEL GATO 200 O 02 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13608', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13609', NULL, 'MOISES GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13610', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13611', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13612', NULL, 'jorge rosales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13613', NULL, 'BAZALAR RUIZ OLIVIA YVONNE', '', '10180987261', '', '', 'MAZ H LOTE 21 URB CASUARINAS TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13614', NULL, 'WILMER', '00000000', '', '', '', 'MAZ H LOTE 21 URB CASUARINAS TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13615', NULL, 'ELISABETH', '00000000', '', '', '', 'MAZ H LOTE 21 URB CASUARINAS TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13616', NULL, 'fidel', '00000000', '', '', '', 'MAZ H LOTE 21 URB CASUARINAS TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13617', NULL, 'EVELYN', '00000000', '', '', '', 'MAZ H LOTE 21 URB CASUARINAS TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13618', NULL, 'OSCAR PALOMINO', '00000000', '', '', '', 'MAZ H LOTE 21 URB CASUARINAS TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13619', NULL, 'MARISOL', '00000000', '', '', '', 'MAZ H LOTE 21 URB CASUARINAS TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13620', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13621', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13622', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13623', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13624', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13625', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13626', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13627', NULL, 'MARIA POMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13628', NULL, 'JUANA GODOY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13629', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13630', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13631', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13632', NULL, 'EMILIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13633', NULL, 'KATY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13634', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13635', NULL, 'GERARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13636', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13637', NULL, 'MIGUEL RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13638', NULL, 'GLORIA GEREMIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13639', NULL, 'GLORIA JEREMIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13640', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13641', NULL, 'ESTEBAN CARRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13642', NULL, 'MARIA TRINIDAD ALIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13643', NULL, 'ROSA AGLLARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13644', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13645', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13646', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13647', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13648', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13649', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13650', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13651', NULL, 'MARIA AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13652', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13653', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13654', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13655', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13656', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13657', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13658', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13659', NULL, 'geminis samanez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13660', NULL, 'noel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13661', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13662', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13663', NULL, 'JOANA ENRIQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13664', NULL, 'IVONE mamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13665', NULL, 'guadalupe cuellar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13666', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13667', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13668', NULL, 'walter valverde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13669', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13670', NULL, 'jose araujo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13671', NULL, 'fabiola diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13672', NULL, 'norma barzola', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13673', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13674', NULL, 'ines', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13675', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13676', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13677', NULL, 'NATURA COSMETICOS S.A.', '', '20101796532', '', '', 'AV. DEL EJERCITO NRO. 801 URB. SANTA CRUZ LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13678', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13679', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13680', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13681', NULL, 'CARLOS  CARBAYO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13682', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13683', NULL, 'graciela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13684', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13685', NULL, 'HUERTAS RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13686', NULL, 'TAYPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13687', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13688', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13689', NULL, 'KERTHY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13690', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13691', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13692', NULL, 'ELIO HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13693', NULL, 'LUZ VIDAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13694', NULL, 'CLORINDA AGUILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13695', NULL, 'CRISANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13696', NULL, 'EDUARDO SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13697', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13698', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13699', NULL, 'GUILLERMINA HEREDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13700', NULL, 'DELOSI S.A', '', '20100123330', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13701', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13702', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13703', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13704', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13705', NULL, 'ninfa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13706', NULL, 'SUMINISTROS RAPIDOS S.A.C.', '', '20602320333', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13707', NULL, 'liliana condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13708', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13709', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13710', NULL, 'CELESTINA PARIAMACHI FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13711', NULL, 'magali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13712', NULL, 'NANCY SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13713', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13714', NULL, 'BRENDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13715', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13716', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13717', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13718', NULL, 'DE LA CRUZ TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13719', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13720', NULL, 'CARMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13721', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13722', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13723', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13724', NULL, 'MARIA LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13725', NULL, 'CLARISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13726', NULL, 'BETTY ROBLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13727', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13728', NULL, 'ZOILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13729', NULL, 'ANIBAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13730', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13731', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13732', NULL, 'AMELIA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13733', NULL, 'MIGUEL BENDEZU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13734', NULL, 'ETHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13735', NULL, 'RONALD REQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13736', NULL, 'ROSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13737', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13738', NULL, 'ARISMENDEZ JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13739', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13740', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13741', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13742', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13743', NULL, 'MADELINE LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13744', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13745', NULL, 'MARGARITA LOAYZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13746', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13747', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13748', NULL, 'EFFIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13749', NULL, 'FELIX ARZAPALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13750', NULL, 'ANIBAL SILVESTRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13751', NULL, 'LENKA ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13752', NULL, 'ALMONACID PALIZA HUGO ANGEL', '', '10409790947', '', '', 'JR. SANTA CRUZ LOTE 18 TINGO MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13753', NULL, 'MARCELINA SALAZAR PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13754', NULL, 'REGINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13755', NULL, 'ANA MUÑANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13756', NULL, 'ELIO NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13757', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13758', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13759', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13760', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13761', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13762', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13763', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13764', NULL, 'PILAR ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13765', NULL, 'BILMA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13766', NULL, 'GISELA SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13767', NULL, 'VILMA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13768', NULL, 'KELLY MURILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13769', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13770', NULL, 'PATRICIA AVILES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13771', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13772', NULL, 'WILFREDO COSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13773', NULL, 'LUIS GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13774', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13775', NULL, 'ROSARIO MOLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13776', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13777', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13778', NULL, 'MARIA LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13779', NULL, 'judith montalvo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13780', NULL, 'ABEL SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13781', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13782', NULL, 'SARA TRUJILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13783', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13784', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13785', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13786', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13787', NULL, 'omar mejia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13788', NULL, 'valentin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13789', NULL, 'german', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13790', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13791', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13792', NULL, 'nestor roses', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13793', NULL, 'MARITZA BARCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13794', NULL, 'LUZ MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13795', NULL, 'ALIDAM PERU S.A.C.', '', '20604496854', '', '', 'AV. LOMA HERMOSA NRO. 241 URB. PROLONGACION BENAVIDES LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13796', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13797', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13798', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13799', NULL, 'JULIA SARHUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13800', NULL, 'ANDREA CRISOLINI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13801', NULL, 'MIGUEL ROSAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13802', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13803', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13804', NULL, 'KAROL FIGUEROA', '06290162', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13805', NULL, 'MAGDALENA ALFARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13806', NULL, 'JOEL CHANCAHUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13807', NULL, 'KATERINE HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13808', NULL, 'GIANINA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13809', NULL, 'TEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13810', NULL, 'GEORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13811', NULL, 'PIO RODAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13812', NULL, 'JUAN PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13813', NULL, 'NORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13814', NULL, 'MARIA CAICEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13815', NULL, 'larcen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13816', NULL, 'ANDRADE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13817', NULL, 'EUFENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13818', NULL, 'LAURA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13819', NULL, 'ROSA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13820', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13821', NULL, 'otilia ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13822', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13823', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13824', NULL, 'MIRIAN SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13825', NULL, 'JULIO HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13826', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13827', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13828', NULL, 'MIREISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13829', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13830', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13831', NULL, 'ABIGAIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13832', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13833', NULL, 'rutty gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13834', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13835', NULL, 'mario chacon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13836', NULL, 'macedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13837', NULL, 'gian carlo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13838', NULL, 'elvia mesia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13839', NULL, 'victor quintos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13840', NULL, 'elma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13841', NULL, 'quevedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13842', NULL, 'LEONOR BELTRAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13843', NULL, 'SILVIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13844', NULL, 'ESPERANZA AREAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13845', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13846', NULL, 'GARDE QUEVEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13847', NULL, 'ISABEL  RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13848', NULL, 'GIOVANA', '00000000', '', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13849', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13850', NULL, 'AIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13851', NULL, 'CUBILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13852', NULL, 'RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13853', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13854', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13855', NULL, 'JULISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13856', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13857', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13858', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13859', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13860', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13861', NULL, 'GILMER VILLEGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13862', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13863', NULL, 'ZUELEM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13864', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13865', NULL, 'CHARLY AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13866', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13867', NULL, 'MAXIMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13868', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13869', NULL, 'FELIPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13870', NULL, 'FRANCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13871', NULL, 'maribel madueño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13872', NULL, 'monique', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13873', NULL, 'MARIA LEVANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13874', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13875', NULL, 'CELESTINA TOSCANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13876', NULL, 'KETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13877', NULL, 'GRETA DEL AGUILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13878', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13879', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13880', NULL, 'AIDE CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13881', NULL, 'NERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13882', NULL, 'JULIO PILLACA LAURENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13883', NULL, 'MARIA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13884', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13885', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13886', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13887', NULL, 'JUDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13888', NULL, 'ELMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13889', NULL, 'ZENAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13890', NULL, 'GIOVANA', '43025382', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13891', NULL, 'SONIA ROBLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13892', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13893', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13894', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13895', NULL, 'NORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13896', NULL, 'NORMA REATEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13897', NULL, 'REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13898', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13899', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13900', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13901', NULL, 'ANTONIO HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13902', NULL, 'LEONIDAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13903', NULL, 'lesly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13904', NULL, 'jorge ponce', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13905', NULL, 'JENNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13906', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13907', NULL, 'javier valdivia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13908', NULL, 'CARMEN GUISADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13909', NULL, 'madre bernarda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13910', NULL, 'CARMEN GUISADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13911', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13912', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13913', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13914', NULL, 'VEDELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13915', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13916', NULL, 'DOMITILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13917', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13918', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13919', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13920', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13921', NULL, 'RAUL ZUÑIGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13922', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13923', NULL, 'CRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13924', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13925', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13926', NULL, 'noemi juares', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13927', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13928', NULL, 'JULIA SALCEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13929', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13930', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13931', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13932', NULL, 'CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13933', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13934', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13935', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13936', NULL, 'barbara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13937', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13938', NULL, 'MARCELINO CALZADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13939', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13940', NULL, 'DANIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13941', NULL, 'NORMA GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13942', NULL, 'JOSE CAPILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13943', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13944', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13945', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13946', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13947', NULL, 'LUISA RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13948', NULL, 'CONFECCIONES TEC.ALTERNATIVA DOS MIL SRL', '', '20421241334', '', '', 'JR. ENRIQUE VILLAR NRO. 350 INT. 101C URB. SANTA BEATRIZ (ENTRE LA CDRA 11 Y 12 DE PETIT THOUARS) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13949', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13950', NULL, 'YACKELIN CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13951', NULL, 'CLAUDIA  ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13952', NULL, 'donatilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13953', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13954', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13955', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13956', NULL, 'diego gil', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13957', NULL, 'ana apasa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13958', NULL, 'luis velasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13959', NULL, 'luis flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13960', NULL, 'maximila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13961', NULL, 'SUMINISTROS RAPIDOS S.A.C', '', '20602320333', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13962', NULL, 'BETCHABE', '00000000', '', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13963', NULL, 'ENRIQUE', '00000000', '', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13964', NULL, 'petronila', '00000000', '', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13965', NULL, 'CAROLINA', '00000000', '', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13966', NULL, 'BACILLA TOLENTINO LUNA', '00000000', '', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13967', NULL, 'PALMIRA', '00000000', '', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13968', NULL, 'SEBASTIAN', '00000000', '', '', '', 'CAL.JULIO RAMON RIBEYRO NRO. 154 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13969', NULL, 'INDUSTRIA DEL POLIURETANO DURAND & SALAZAR E.I.R.L. - I', '', '20601237718', '', '', 'AV. RAMON CARCAMO NRO. 552 INT. 131 (ALT. AV. COLONIAL CDRA. 7 CERCADO DE LIM) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13970', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13971', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13972', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13973', NULL, 'DARLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13974', NULL, 'AIIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13975', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13976', NULL, 'VELASQUE PALOMINO VIRGINIA', '', '10310401507', '', '', 'JR. AREQUIPA #519 ABANCAY-APURIMAC', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13977', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13978', NULL, 'charito alburqueque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13979', NULL, 'yaneth torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13980', NULL, 'JORGE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13981', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13982', NULL, 'herlinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13983', NULL, 'VICENTE DOMINGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13984', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13985', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13986', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13987', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13988', NULL, 'JESI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13989', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13990', NULL, 'NELLY TAVOADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13991', NULL, 'NELLY TABOADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13992', NULL, 'ester guevara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13993', NULL, 'juan quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13994', NULL, 'AURORA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13995', NULL, 'ALIPIO  ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13996', NULL, 'SANDRA GARCOIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13997', NULL, 'SANDRA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13998', NULL, 'URBANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('13999', NULL, 'carmen cornejo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14000', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14001', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14002', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14003', NULL, 'FRANCISCO HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14004', NULL, 'CECILIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14005', NULL, 'teisi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14006', NULL, 'cristabel gaavilan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14007', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14008', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14009', NULL, 'cesar vicente', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14010', NULL, 'CARDIOBUST E.I.R.L.', '', '20565217551', '', '', 'BL. 37 NRO. . DPTO. 203 C.R SAN FELIPE LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14011', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14012', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14013', NULL, 'ESTHER MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14014', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14015', NULL, 'ESTHER MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14016', NULL, 'FLORENCIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14017', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14018', NULL, 'oscar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14019', NULL, 'LUSMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14020', NULL, 'rudy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14021', NULL, 'mery trinidad', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14022', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14023', NULL, 'sarita calvo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14024', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14025', NULL, 'katy palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14026', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14027', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14028', NULL, 'MARIA GIRALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14029', NULL, 'RAMIRO BLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14030', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14031', NULL, 'ENRRIQUE FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14032', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14033', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14034', NULL, 'DEBORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14035', NULL, 'AGRIPINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14036', NULL, 'LUIS MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14037', NULL, 'DENIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14038', NULL, 'GILARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14039', NULL, 'FORTUNATO PERALTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14040', NULL, 'ANA MARIA DE LA PIEDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14041', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14042', NULL, 'MONICA UGARRIZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14043', NULL, 'CHUMBIMUNE ZANABRIA ENRIQUE MANUEL', '', '10076532007', '', '', 'JR. POLO DE ONDEGARDO #299 RIMAC- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14044', NULL, 'ROSA', '00000000', '', '', '', 'JR. POLO DE ONDEGARDO #299 RIMAC- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14045', NULL, 'MARIA FLORES', '00000000', '', '', '', 'JR. POLO DE ONDEGARDO #299 RIMAC- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14046', NULL, '\"RESTAURANTE - POLLERIA LA NONNA S.A.C.\" - \"POLLERIA LA', '', '20601717892', '', '', 'AV. GUILLERMO BILLINGHURST NRO. 1199 URB. SAN JUAN ZN. D (AV. GUILLERMO BILLINGHURST NO 1197-1199) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14047', NULL, 'VANESA BALTRA MEJIA', '--', '', '', '', 'AV. GUILLERMO BILLINGHURST NRO. 1199 URB. SAN JUAN ZN. D (AV. GUILLERMO BILLINGHURST NO 1197-1199) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14048', NULL, 'VANESA BALTRA MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14049', NULL, 'PIERO FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14050', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14051', NULL, 'HAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14052', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14053', NULL, 'BARTRA MEJIA VANESSA JAHAIDA', '', '10107989311', '', '', 'JR CANGALLO 145- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14054', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14055', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14056', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14057', NULL, 'livia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14058', NULL, 'FRANKLIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14059', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14060', NULL, 'PEDRO GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14061', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14062', NULL, 'emiliano espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14063', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14064', NULL, 'susy cerna', '04069138', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14065', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14066', NULL, 'mario osorio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14067', NULL, 'carlos lazo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14068', NULL, 'antonio jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14069', NULL, 'jose macedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14070', NULL, 'nisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14071', NULL, 'CARLOS BLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14072', NULL, 'doris pastrana rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14073', NULL, 'marcela santiago', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14074', NULL, 'rosario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14075', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14076', NULL, 'humberto zuñiga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14077', NULL, 'guissela moron', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14078', NULL, 'marcela santiago', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14079', NULL, 'joel espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14080', NULL, 'FUSION HABANA E.I.R.L.', '', '20602443761', '', '', 'AV. LOS INGENIEROS NRO. 959 URB. LA RIVERA DE MONTERRICO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14081', NULL, 'tania tafur segura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14082', NULL, 'monica valdivieso', '08070368', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14083', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14084', NULL, 'rigoberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14085', NULL, 'LESLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14086', NULL, 'ELIZABETH muñoz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14087', NULL, 'eduardo lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14088', NULL, 'YANETH navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14089', NULL, 'LEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14090', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14091', NULL, 'willians vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14092', NULL, 'fidela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14093', NULL, 'jesu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14094', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14095', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14096', NULL, 'rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14097', NULL, 'alexis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14098', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14099', NULL, 'yamili', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14100', NULL, 'MECHE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14101', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14102', NULL, 'junior', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14103', NULL, 'YURICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14104', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14105', NULL, 'MAURO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14106', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14107', NULL, 'vera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14108', NULL, 'esperanza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14109', NULL, 'MARGOT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14110', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14111', NULL, 'JACCHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14112', NULL, 'MONICA CRUZ', '08504637', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14113', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14114', NULL, 'MARIA LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14115', NULL, 'ANA SIMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14116', NULL, 'estela castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14117', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14118', NULL, 'ELIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14119', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14120', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14121', NULL, 'liz palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14122', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14123', NULL, 'juan alva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14124', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14125', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14126', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14127', NULL, 'JOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14128', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14129', NULL, 'araceli reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14130', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14131', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14132', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14133', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14134', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14135', NULL, 'melina carpio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14136', NULL, 'enrique bartra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14137', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14138', NULL, 'gloria teran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14139', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14140', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14141', NULL, 'R & S MOTORS S.A.C.', '', '20492542963', '', '', 'CAL.INTISUYO NRO 221-A NRO. 221 DPTO. LIMA OTR. SAN MIGUEL LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14142', NULL, 'miguel onton', '00000000', '', '', '', 'CAL.INTISUYO NRO 221-A NRO. 221 DPTO. LIMA OTR. SAN MIGUEL LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14143', NULL, 'valdivia rivera', '00000000', '', '', '', 'CAL.INTISUYO NRO 221-A NRO. 221 DPTO. LIMA OTR. SAN MIGUEL LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14144', NULL, 'SILVIA', '00000000', '', '', '', 'CAL.INTISUYO NRO 221-A NRO. 221 DPTO. LIMA OTR. SAN MIGUEL LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14145', NULL, 'BERTHA', '00000000', '', '', '', 'CAL.INTISUYO NRO 221-A NRO. 221 DPTO. LIMA OTR. SAN MIGUEL LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14146', NULL, 'DENNIS', '00000000', '', '', '', 'CAL.INTISUYO NRO 221-A NRO. 221 DPTO. LIMA OTR. SAN MIGUEL LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14147', NULL, 'JUDITH', '00000000', '', '', '', 'CAL.INTISUYO NRO 221-A NRO. 221 DPTO. LIMA OTR. SAN MIGUEL LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14148', NULL, 'olimpia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14149', NULL, 'olimpia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14150', NULL, 'asunta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14151', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14152', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14153', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14154', NULL, 'mauro castro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14155', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14156', NULL, 'alan solis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14157', NULL, 'yadira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14158', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14159', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14160', NULL, 'aquilina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14161', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14162', NULL, 'nelson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14163', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14164', NULL, 'ida barzola', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14165', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14166', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14167', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14168', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14169', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14170', NULL, 'JORGE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14171', NULL, 'rocio pineda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14172', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14173', NULL, 'MARTHA BARDINI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14174', NULL, 'HOTELERA ANTIGUA S.A.C.', '', '20266548584', '', '', 'AV. GRAU NRO. 350 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14175', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14176', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14177', NULL, 'ELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14178', NULL, 'MARLENE RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14179', NULL, 'ALONSO GUARDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14180', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14181', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14182', NULL, 'IVONE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14183', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14184', NULL, 'ANTONIO RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14185', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14186', NULL, 'juan navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14187', NULL, 'JORGE PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14188', NULL, 'carla choque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14189', NULL, 'SARA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14190', NULL, 'WILDDER  ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14191', NULL, 'JUVENAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14192', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14193', NULL, 'RODRIGUEZ HUAMALI EDGAR', '', '10103559273', '', '', 'MZ D LT 16 LA FLORESTA DE CAMPOY S.J.L', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14194', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14195', NULL, 'RAQUEL', '00000000', '', '', '', 'MZ D LT 16 LA FLORESTA DE CAMPOY S.J.L', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14196', NULL, 'LUCI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14197', NULL, 'LIANG INVERSIONES SOCIEDAD ANONIMA CERRADA - LIANG INVE', '', '20553277699', '', '', 'AV. LOS JARDINES ESTE NRO. 173 URB. LAS FLORES SETENTIOCHO LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14198', NULL, 'JUAN', '00000000', '', '', '', 'AV. LOS JARDINES ESTE NRO. 173 URB. LAS FLORES SETENTIOCHO LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14199', NULL, 'YOLINDA CUBAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14200', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14201', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14202', NULL, 'CIELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14203', NULL, 'CIELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14204', NULL, 'ROSAS RETUERTO ARRIETA ISABEL MIRELLA', '', '10079601336', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14205', NULL, 'ROSAS RETUERTO ARRIETA ISABEL MIRELLA', '', '10079601336', '', '', 'CARRTERA CENTRAL KM18.5 CHACLACAYO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14206', NULL, 'MICHAEL', '00000000', '', '', '', 'CARRTERA CENTRAL KM18.5 CHACLACAYO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14207', NULL, 'ZENION VARGAS', '00000000', '', '', '', 'CARRTERA CENTRAL KM18.5 CHACLACAYO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14208', NULL, 'BILMA', '00000000', '', '', '', 'CARRTERA CENTRAL KM18.5 CHACLACAYO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14209', NULL, 'GRUPO RIVERA CIA SOCIEDAD ANONIMA CERRADA - GRUPO RIVER', '', '20601487749', '', '', 'JR. CUZCO NRO. 744 INT. 265 (GALERIA MINA DE ORO II) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14210', NULL, 'VANESA RODRIGUEZ', '00000000', '', '', '', 'JR. CUZCO NRO. 744 INT. 265 (GALERIA MINA DE ORO II) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14211', NULL, 'MANUEL', '00000000', '', '', '', 'MZ D LT 16 LA FLORESTA DE CAMPOY S.J.L', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14212', NULL, 'JULIA', '00000000', '', '', '', 'MZ D LT 16 LA FLORESTA DE CAMPOY S.J.L', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14213', NULL, 'GLADYS DUEÑAS', '00000000', '', '', '', 'MZ D LT 16 LA FLORESTA DE CAMPOY S.J.L', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14214', NULL, 'JULIA', '00000000', '', '', '', 'MZ D LT 16 LA FLORESTA DE CAMPOY S.J.L', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14215', NULL, 'FANNY', '00000000', '', '', '', 'MZ D LT 16 LA FLORESTA DE CAMPOY S.J.L', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14216', NULL, 'ISRAEL RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14217', NULL, 'MUNICIPALIDAD DISTRITAL DE CHIARA', '', '20201231681', '', '', 'NRO. S/N VILLA CHIARA (DENTRO DE LA PLAZA DE ARMAS) APURIMAC - ANDAHUAYLAS - CHIARA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14218', NULL, 'MAYTE', '00000000', '', '', '', 'NRO. S/N VILLA CHIARA (DENTRO DE LA PLAZA DE ARMAS) APURIMAC - ANDAHUAYLAS - CHIARA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14219', NULL, 'GROVER', '00000000', '', '', '', 'NRO. S/N VILLA CHIARA (DENTRO DE LA PLAZA DE ARMAS) APURIMAC - ANDAHUAYLAS - CHIARA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14220', NULL, 'SOFIA PALIZA', '00000000', '', '', '', 'NRO. S/N VILLA CHIARA (DENTRO DE LA PLAZA DE ARMAS) APURIMAC - ANDAHUAYLAS - CHIARA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14221', NULL, 'ALEX', '00000000', '', '', '', 'NRO. S/N VILLA CHIARA (DENTRO DE LA PLAZA DE ARMAS) APURIMAC - ANDAHUAYLAS - CHIARA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14222', NULL, 'ROLANDO', '00000000', '', '', '', 'NRO. S/N VILLA CHIARA (DENTRO DE LA PLAZA DE ARMAS) APURIMAC - ANDAHUAYLAS - CHIARA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14223', NULL, 'HERNAN RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14224', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14225', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14226', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14227', NULL, 'LUIS ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14228', NULL, 'JULIAN QUILLASH VALDEZ', '15689892', '', '', '', 'HUACHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14229', NULL, 'fabiola paredes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14230', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14231', NULL, 'gabriela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14232', NULL, 'MANUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14233', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14234', NULL, 'rosalia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14235', NULL, 'hector  huadsauri', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14236', NULL, 'esperanza flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14237', NULL, 'maria maqui', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14238', NULL, 'carolina  machado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14239', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14240', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14241', NULL, 'marilin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14242', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14243', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14244', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14245', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14246', NULL, 'yaneth reto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14247', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14248', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14249', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14250', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14251', NULL, 'andrea suarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14252', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14253', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14254', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14255', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14256', NULL, 'PROMOTORA DE INVERSIONES UNIVERSAL S.A.C', '', '20507279393', '', '', 'PARURO NRO. 1457 (2DO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14257', NULL, 'LILIAN', '00000000', '', '', '', 'PARURO NRO. 1457 (2DO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14258', NULL, 'eraida quispe', '00000000', '', '', '', 'PARURO NRO. 1457 (2DO PISO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14259', NULL, 'BETTY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14260', NULL, 'ISMAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14261', NULL, 'esther soto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14262', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14263', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14264', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14265', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14266', NULL, 'norma quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14267', NULL, 'SILVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14268', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14269', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14270', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14271', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14272', NULL, 'LUCIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14273', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14274', NULL, 'ana llacsa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14275', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14276', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14277', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14278', NULL, 'CESAR CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14279', NULL, 'CESAR CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14280', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14281', NULL, 'AMELIA LUNA', '06234424', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14282', NULL, 'YUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14283', NULL, 'VERAMENDI SAENZ MARIO ARTURO', '', '10452285229', '', '', 'JR. VICTOR ANDRES BELAUNDE # 338 S.M.P. LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14284', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14285', NULL, 'rocio cayan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14286', NULL, 'kelly guevara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14287', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14288', NULL, 'joel segundo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14289', NULL, 'henry huamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14290', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14291', NULL, 'alva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14292', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14293', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14294', NULL, 'LISA MERINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14295', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14296', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14297', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14298', NULL, 'ESMELDA YACORTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14299', NULL, 'rosa gutierrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14300', NULL, 'DANY MOSCOSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14301', NULL, 'ROSA RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14302', NULL, 'EMERSON TECHNOLOGY & SERVICE E.I.R.L.', '', '20519135079', '', '', 'JR. PUERTO PIZARRO MZA. I1 LOTE. 14 URB. PORTADA DEL SOL 1RA. ET. (3ER PISO, ALT CDRA 13 DE AV LOS FRESNOS) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14303', NULL, 'ERIKA ULLOA VILCHEZ', '40437468', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14304', NULL, 'MARIA SANTIAGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14305', NULL, 'OLINDA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14306', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14307', NULL, 'VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14308', NULL, 'ZENAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14309', NULL, 'ZENAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14310', NULL, 'KATIUSKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14311', NULL, 'KATIUSKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14312', NULL, 'ARMANDO ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14313', NULL, 'REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14314', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14315', NULL, 'isabel zeballos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14316', NULL, 'sonia reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14317', NULL, 'pablo delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14318', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14319', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14320', NULL, 'JENNY PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14321', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14322', NULL, 'YULI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14323', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14324', NULL, 'inversiones', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14325', NULL, 'CELESTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14326', NULL, 'RAUL MARTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14327', NULL, 'INVERSIONES PROLE F & N E.I.R.L.', '', '20540742716', '', '', 'CAL.CAÑETE NRO. 130 (FTE A POLVOS AZULES) ICA - ICA - ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14328', NULL, 'FLORINDA TAIPE', '00000000', '', '', '', 'CAL.CAÑETE NRO. 130 (FTE A POLVOS AZULES) ICA - ICA - ICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14329', NULL, 'CONSUELO APARICIO', '00000000', '', '', '', 'CAL.CAÑETE NRO. 130 (FTE A POLVOS AZULES) ICA - ICA - ICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14330', NULL, 'JOSE PAUCAR', '00000000', '', '', '', 'CAL.CAÑETE NRO. 130 (FTE A POLVOS AZULES) ICA - ICA - ICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14331', NULL, 'valeri', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14332', NULL, 'deli ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14333', NULL, 'eric', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14334', NULL, 'rocio gremios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14335', NULL, 'miguel quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14336', NULL, 'helen chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14337', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14338', NULL, 'norfelia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14339', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14340', NULL, 'alfredo medrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14341', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14342', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14343', NULL, 'FABIO POLCA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14344', NULL, 'FABIO COLCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14345', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14346', NULL, 'REBECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14347', NULL, 'sara torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14348', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14349', NULL, 'IRMA BRIONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14350', NULL, 'GISELA VILLACORTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14351', NULL, 'ELENA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14352', NULL, 'NANCY CALDAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14353', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14354', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14355', NULL, 'LLOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14356', NULL, 'DICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14357', NULL, 'LIDIA TICONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14358', NULL, 'ROGELIO CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14359', NULL, 'LETICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14360', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14361', NULL, 'RAGUZO INVERSIONES E.I.R.L.', '', '20603011547', '', '', 'CAL.QUITO NRO. 134 DPTO. 401 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14362', NULL, 'JOSE DELGADO', '00000000', '', '', '', 'CAL.QUITO NRO. 134 DPTO. 401 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14363', NULL, 'ZAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14364', NULL, 'ZAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14365', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14366', NULL, 'REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14367', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14368', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14369', NULL, 'EDGAR HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14370', NULL, 'RINA BLANCO NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14371', NULL, 'RINA BLANCO NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14372', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14373', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14374', NULL, 'LUCINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14375', NULL, 'JULI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14376', NULL, 'MIGUEL SOVERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14377', NULL, 'luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14378', NULL, 'MIGUEL BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14379', NULL, 'JENY HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14380', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14381', NULL, 'MARCOS LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14382', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14383', NULL, 'yadira QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14384', NULL, 'ROSA HUANEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14385', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14386', NULL, 'LOLO FERNADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14387', NULL, 'LOLO FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14388', NULL, 'MIRIAM TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14389', NULL, 'ELIANA TITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14390', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14391', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14392', NULL, 'OFELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14393', NULL, 'CAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14394', NULL, 'mitsury', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14395', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14396', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14397', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14398', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14399', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14400', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14401', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14402', NULL, 'ISMAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14403', NULL, 'LAURA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14404', NULL, 'ROMERO LEON RENE ANGELICA', '', '10085445371', '', '', 'JR. AURELIO MIROQUEZADA # 580- URB. INGENIERIA- S.M.P LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14405', NULL, 'ROMERO LEON RENE ANGELICA', '', '10085445371', '', '', 'JR. AURELIO MIROQUEZADA # 580- URB. INGENIERIA- S.M.P LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14406', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14407', NULL, 'CLAUDIA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14408', NULL, 'ZELMIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14409', NULL, 'EDITH TORO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14410', NULL, 'FRANCISCO VALERIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14411', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14412', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14413', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14414', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14415', NULL, 'YANINA GALLEGOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14416', NULL, 'JOSE NEYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14417', NULL, 'JULIA HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14418', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14419', NULL, 'ANA CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14420', NULL, 'MARIA QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14421', NULL, 'ALAN CHAUCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14422', NULL, 'mayte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14423', NULL, 'CSG MAFER S.A.C', '', '20537390914', '', '', 'MZA. Q LOTE. 1 URB. SANTO DOMINGO (ETAPA 12) LIMA - LIMA - CARABAYLLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14424', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14425', NULL, 'JEFERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14426', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14427', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14428', NULL, 'NATALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14429', NULL, 'SANTO GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14430', NULL, 'JHONY CONDORY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14431', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14432', NULL, 'OBRAS TECNICAS NSK SOCIEDAD COMERCIAL DE RESPONSABILIDA', '', '20601109795', '', '', 'CAL.LIMA NRO. 542 (MISMA TIENDA MECANICA MOTORS PRECH) PASCO - PASCO - CHAUPIMARCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14433', NULL, 'YENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14434', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14435', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14436', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14437', NULL, 'LUCIA CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14438', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14439', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14440', NULL, 'EVA POKO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14441', NULL, 'ANTONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14442', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14443', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14444', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14445', NULL, 'CARMELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14446', NULL, 'CARMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14447', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14448', NULL, 'ISABEL LINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14449', NULL, 'GESTION MEDIOAMBIENTAL SOCIEDAD ANONIMA CERRRADA-GESTIO', '', '20451842693', '', '', 'AV. MERINO REYNA MZA. G1 LOTE. 04 SANTA ROSA DE PUNCHAUCA (ESPALDA DE MUNICIPALIDAD DE CARABAYLLO) LIMA - LIMA - CARABAYLLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14450', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14451', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14452', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14453', NULL, 'JASIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14454', NULL, 'ROSA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14455', NULL, 'ROSA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14456', NULL, 'ROSA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14457', NULL, 'ROSA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14458', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14459', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14460', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14461', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14462', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14463', NULL, 'maria paz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14464', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14465', NULL, 'LURDES MONTALVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14466', NULL, 'vicky', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14467', NULL, 'LURDES MONTALVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14468', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14469', NULL, 'LURDES ÑAHUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14470', NULL, 'LEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14471', NULL, 'LESLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14472', NULL, 'FRANCISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14473', NULL, 'juana lucero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14474', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14475', NULL, 'pilar cabrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14476', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14477', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14478', NULL, 'ana cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14479', NULL, 'eufelia espichan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14480', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14481', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14482', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14483', NULL, 'KARFRUT PROCESOS SAC', '', '20604852332', '', '', 'JR. JR TNT JOSE SANNONI NRO. 229 DPTO. 2A LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14484', NULL, 'ROSA', '00000000', '', '', '', 'JR. JR TNT JOSE SANNONI NRO. 229 DPTO. 2A LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14485', NULL, 'PATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14486', NULL, 'jhonatan sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14487', NULL, 'zulema', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14488', NULL, 'rosa santos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14489', NULL, 'raul vicente castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14490', NULL, 'BRENDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14491', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14492', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14493', NULL, 'arestegui', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14494', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14495', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14496', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14497', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14498', NULL, 'ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14499', NULL, 'dante', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14500', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14501', NULL, 'GUADALUPE DIAZ COLLANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14502', NULL, 'leidy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14503', NULL, 'DINA LOAYZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14504', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14505', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14506', NULL, 'JORGE CHANG', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14507', NULL, '40.50', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14508', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14509', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14510', NULL, 'taipe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14511', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14512', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14513', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14514', NULL, 'yuriko', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14515', NULL, 'carmen valensuela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14516', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14517', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14518', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14519', NULL, 'palacios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14520', NULL, 'palacios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14521', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14522', NULL, 'zulema paredes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14523', NULL, 'ELSA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14524', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14525', NULL, 'mestanza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14526', NULL, 'luz de la sota', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14527', NULL, 'rocio palacios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14528', NULL, 'cesar peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14529', NULL, 'manuel tirado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14530', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14531', NULL, 'ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14532', NULL, 'ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14533', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14534', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14535', NULL, 'otilia cangoa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14536', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14537', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14538', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14539', NULL, 'KATIA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14540', NULL, 'RICARDO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14541', NULL, 'ALAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14542', NULL, 'OCTAVIO PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14543', NULL, 'RAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14544', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14545', NULL, 'PAULO VIERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14546', NULL, 'ETEL FARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14547', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14548', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14549', NULL, 'SANTA MAIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14550', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14551', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14552', NULL, 'ORFELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14553', NULL, 'REBECA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14554', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14555', NULL, 'CHARLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14556', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14557', NULL, 'rosario benitez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14558', NULL, 'LUSMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14559', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14560', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14561', NULL, 'carlos aguero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14562', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14563', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14564', NULL, 'CORPORACION ZHARA S.A.C.', '', '20600461461', '', '', 'JR. HUMBOLDT NRO. 1441 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14565', NULL, 'consuelo', '00000000', '', '', '', 'JR. HUMBOLDT NRO. 1441 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14566', NULL, 'consuelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14567', NULL, 'ROMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14568', NULL, 'mayra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14569', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14570', NULL, 'BETSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14571', NULL, 'JAIME MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14572', NULL, 'JOSEFA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14573', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14574', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14575', NULL, 'EDGARD CARTY TEJADA', '43598500', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14576', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14577', NULL, 'GEORGINA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14578', NULL, 'CAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14579', NULL, 'ELSA MEDINA VALERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14580', NULL, 'RICARDO misajel olivares', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14581', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14582', NULL, 'LUSMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14583', NULL, 'armando bravo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14584', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14585', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14586', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14587', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '', '20602424082', '', '', 'CAL.COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14588', NULL, 'SOFIA CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14589', NULL, 'ULISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14590', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14591', NULL, 'WALTER VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14592', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14593', NULL, 'MAURO SEMINARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14594', NULL, 'ELIZABETH GALLEGO PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14595', NULL, 'MELIZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14596', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14597', NULL, 'ENMANUEL DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14598', NULL, 'EFRAIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14599', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14600', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14601', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14602', NULL, 'GERTRUDIS GALVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14603', NULL, 'SADIT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14604', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14605', NULL, 'FRANCO ELIAS KATIA FABIANA', '', '10445503521', '', '', 'JR RIO TUMBES 405 INT i2 dpto 404 - SAN LUIS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14606', NULL, 'REGINA ALEJANDRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14607', NULL, 'BENJAMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14608', NULL, 'EDGARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14609', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14610', NULL, 'MARILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14611', NULL, 'ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14612', NULL, 'LIDIA ROSADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14613', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14614', NULL, 'NELIDA', '00000000', '', '', '', 'JR RIO TUMBES 405 INT i2 dpto 404 - SAN LUIS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14615', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14616', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14617', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14618', NULL, 'OSCAR VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14619', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14620', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14621', NULL, 'ZULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14622', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14623', NULL, 'POOL CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14624', NULL, 'jose', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14625', NULL, 'WILLIANS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14626', NULL, 'MARIA ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14627', NULL, 'DIODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14628', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14629', NULL, 'gianina gallegos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14630', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14631', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14632', NULL, 'YENI CHIROQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14633', NULL, 'DANIEL PIZARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14634', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14635', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14636', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14637', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14638', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14639', NULL, 'liliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14640', NULL, 'FLORES DIAZ GLADYS LUCILA', '', '10426727086', '', '', 'CALLE GONZALES VIGIL 448 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14641', NULL, 'TRINIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14642', NULL, 'TRINIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14643', NULL, 'NORMA', '00000000', '', '', '', 'CALLE GONZALES VIGIL 448 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14644', NULL, 'BEATRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14645', NULL, 'julio martnez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14646', NULL, 'etel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14647', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14648', NULL, 'virginia quiroga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14649', NULL, 'PJA RIO SUR E.I.R.L.', '', '20491409917', '', '', 'AV. SANTA ROSA NRO. SN INT. 42 MERCADO MODELO (FRENTE AL COLEGIO MEDALLA MILAGROSA) LIMA - CAÑETE - SAN VICENTE DE CAÑETE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14650', NULL, 'vania', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14651', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14652', NULL, 'ARACELY CESPEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14653', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14654', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14655', NULL, 'THALIA SANCHEZ MURILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14656', NULL, 'ANITA HURTADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14657', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14658', NULL, 'ERMELINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14659', NULL, 'TEO RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14660', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14661', NULL, 'AURELIO VITARTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14662', NULL, 'AURELIO VITARTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14663', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14664', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14665', NULL, 'MILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14666', NULL, 'JHONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14667', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14668', NULL, 'MARILU HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14669', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14670', NULL, 'LEYDI GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14671', NULL, 'hilda garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14672', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14673', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14674', NULL, 'INVERSIONES Y SERVICIOS MOY S.A.C', '', '20603232845', '', '', 'CAL.FERMIN DIEZ CANSECO NRO. 193 P.J. HUASCAR (2 CDRAS MERCADO HUASCAR) LIMA - LIMA - SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14675', NULL, 'GIOVANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14676', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14677', NULL, 'ida morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14678', NULL, 'jose lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14679', NULL, 'HERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14680', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14681', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14682', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14683', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14684', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14685', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14686', NULL, 'david lope', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14687', NULL, 'CAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14688', NULL, 'manira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14689', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14690', NULL, 'DINAMI UNO S.A.C.', '', '20524446830', '', '', 'AV. MICAELA BASTIDAS NRO. 201 URB. SAN AGUSTIN ET 1 LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14691', NULL, 'LAURA  DE MEDINA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 201 URB. SAN AGUSTIN ET 1 LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14692', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14693', NULL, 'rosario aguilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14694', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14695', NULL, 'SABOGAL ALVARO KAREN MELINA', '', '10104515229', '', '', 'emeterio perez 360- san martin de porres', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14696', NULL, 'GISELA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 201 URB. SAN AGUSTIN ET 1 LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14697', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14698', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14699', NULL, 'rodolfo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14700', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14701', NULL, 'PECHO GALARZA ANA', '', '10090639221', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14702', NULL, 'DAVID  LUIS', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14703', NULL, 'EDY', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14704', NULL, 'EDY', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14705', NULL, 'ANGELICA', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14706', NULL, 'JULIANA', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14707', NULL, 'maria acaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14708', NULL, 'LUZ DINA', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14709', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14710', NULL, 'JOSE MEJIA', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14711', NULL, 'PATTY', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14712', NULL, 'gianina', '00000000', '', '', '', 'CALLE RIO MAJES MZ F LOTE 9- ATE VITARTE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14713', NULL, 'JOSE MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14714', NULL, 'SOSIMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14715', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14716', NULL, 'ADELA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14717', NULL, 'ALAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14718', NULL, 'ARIANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14719', NULL, 'NANCY TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14720', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14721', NULL, 'ROSA VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14722', NULL, 'ROSA VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14723', NULL, 'zenaida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14724', NULL, 'narciso lopez calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14725', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14726', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14727', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14728', NULL, 'FROILAN SUCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14729', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14730', NULL, 'ANABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14731', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14732', NULL, 'ALCIDES ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14733', NULL, 'RODOLFO ARANIBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14734', NULL, 'jose salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14735', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14736', NULL, 'INGENIA CONSULTORIA Y EJECUCION DE PROYECTOS S.A.C.', '', '20603897189', '', '', '-EMILIO FERNANDEZ NRO. 650 DPTO. 1601 INT. TR A (TORRE A, COSTADO PARQUE DE LAS AGUAS) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14737', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14738', NULL, 'ROSA VILCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14739', NULL, 'CANTORAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14740', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14741', NULL, 'DORIS HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14742', NULL, 'paul pereda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14743', NULL, 'MILDRED', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14744', NULL, 'CLARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14745', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14746', NULL, 'norma quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14747', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14748', NULL, 'ZOILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14749', NULL, 'MOISES VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14750', NULL, 'VALERIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14751', NULL, 'maria luisa apolinario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14752', NULL, 'maria luisa apolinares herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14753', NULL, 'ROSALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14754', NULL, 'VILMA SALVATIERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14755', NULL, 'PEDRO PINGO', '07462356', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14756', NULL, 'LILIANA CORONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14757', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14758', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14759', NULL, 'leonidas pastor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14760', NULL, 'MABEL NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14761', NULL, 'VALLEJOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14762', NULL, 'luz  melgar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14763', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14764', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14765', NULL, 'david jorge lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14766', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14767', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14768', NULL, 'ingrid', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14769', NULL, 'julia sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14770', NULL, 'gumercinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14771', NULL, 'ilmaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14772', NULL, 'CORPORACION SONOTEC SOCIEDAD ANONIMA CERRADA', '', '20518332792', '', '', 'JR. PARURO NRO. 1179 (PARALELO AV.HUANTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14773', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14774', NULL, 'pedro martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14775', NULL, 'asuncion torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14776', NULL, 'RAQUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14777', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14778', NULL, 'ALICIA', '00000000', '', '', '', 'JR. PARURO NRO. 1179 (PARALELO AV.HUANTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14779', NULL, 'KATERINE', '00000000', '', '', '', 'JR. PARURO NRO. 1179 (PARALELO AV.HUANTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14780', NULL, 'celia tipian garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14781', NULL, 'estefany cardenas ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14782', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14783', NULL, 'jimena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14784', NULL, 'alipio horna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14785', NULL, 'gina gonzalez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14786', NULL, 'magali ore', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14787', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14788', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14789', NULL, 'liz caballero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14790', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14791', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14792', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14793', NULL, 'marcial valverde lopez', '07974912', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14794', NULL, 'rosa hernandez', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14795', NULL, 'MERIDA DE PANDO', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14796', NULL, 'katerine pacheco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14797', NULL, 'gian piere', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14798', NULL, 'giulio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14799', NULL, 'ROSA QUISPE', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14800', NULL, 'LUCILA FLORES BARRIOS', '21546468', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14801', NULL, 'cristina duarte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14802', NULL, 'katerine', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14803', NULL, 'MARIA', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14804', NULL, 'ALIDA BALBIN', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14805', NULL, 'LIZBETH', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14806', NULL, 'GABRIELA  CULACHE', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14807', NULL, 'GERMAN CABALLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14808', NULL, 'ALICIA', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14809', NULL, 'SARA MORI', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14810', NULL, 'ALICIA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14811', NULL, 'MARY', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14812', NULL, 'VICTOR MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14813', NULL, 'JENY GUILLEN', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14814', NULL, 'MARY GARCIA', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14815', NULL, 'SONIA', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14816', NULL, 'MARGARITA', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14817', NULL, 'NANCY', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14818', NULL, 'eliseo pari', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14819', NULL, 'richard HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14820', NULL, 'MANUEL', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14821', NULL, 'KAREN', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14822', NULL, 'ISRAEL', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14823', NULL, 'CARMEN', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14824', NULL, 'IBETH', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14825', NULL, 'JUAN ALVA', '00000000', '', '', '', 'pomababmba', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14826', NULL, 'ANGELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14827', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14828', NULL, 'viviana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14829', NULL, 'NOEMI CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14830', NULL, 'PAQUITA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14831', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14832', NULL, 'MARILUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14833', NULL, 'LUIS NUÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14834', NULL, 'NANCY SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14835', NULL, 'WALTER JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14836', NULL, 'WILMA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14837', NULL, 'ROBINSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14838', NULL, 'ELI E', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14839', NULL, 'CARMEN FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14840', NULL, 'CAROLA FLORES', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14841', NULL, 'CAROLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14842', NULL, 'SORAYDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14843', NULL, 'MARIELA LAURENTE POZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14844', NULL, 'MARTINEZ VENTO AMERICO WILDER', '', '10211377700', '', '', 'JR. 2 DE MAYO # 565 TARMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14845', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14846', NULL, 'DIANA HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14847', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14848', NULL, 'MARILYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14849', NULL, 'ENET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14850', NULL, 'MARILIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14851', NULL, 'VERASTEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14852', NULL, 'EDWIN CABRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14853', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14854', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14855', NULL, 'LUCERO CORDOBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14856', NULL, 'beatriz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14857', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14858', NULL, 'JORGE RODRIGUES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14859', NULL, 'ELBER SANDOVAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14860', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14861', NULL, 'ROSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14862', NULL, 'PEDRO ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14863', NULL, 'TERESA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14864', NULL, 'HIMELDA QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14865', NULL, 'FABIOLA PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14866', NULL, 'MAURICIA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14867', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14868', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14869', NULL, 'EDLMIRA CASABONA GUILLEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14870', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14871', NULL, 'LONSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14872', NULL, 'AMERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14873', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14874', NULL, 'ROLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14875', NULL, 'washinton serrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14876', NULL, 'DEYVI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14877', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14878', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14879', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14880', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14881', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14882', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14883', NULL, 'LETICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14884', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14885', NULL, 'flor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14886', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14887', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14888', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14889', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14890', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14891', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14892', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14893', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14894', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14895', NULL, 'genaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14896', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14897', NULL, 'GUSTAVO SEGURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14898', NULL, 'JULIO  BEJARANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14899', NULL, 'MICAELA VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14900', NULL, 'JULIETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14901', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14902', NULL, 'JOSE PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14903', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14904', NULL, 'QUISPE TTITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14905', NULL, 'DEYVIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14906', NULL, 'raul tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14907', NULL, 'miguel quiroz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14908', NULL, 'julio ramosw', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14909', NULL, 'NORY BERROCAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14910', NULL, 'JULIO RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14911', NULL, 'JUAN MURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14912', NULL, 'MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14913', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14914', NULL, 'VICTOR ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14915', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14916', NULL, 'HEIDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14917', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14918', NULL, 'ROXANA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14919', NULL, 'ROSAURA MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14920', NULL, 'ELIZABETH PADILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14921', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14922', NULL, 'DAVID MATTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14923', NULL, 'MARIA ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14924', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14925', NULL, 'OLIITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14926', NULL, 'OLITH PAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14927', NULL, 'MARIA YARMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14928', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14929', NULL, 'OLITH PAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14930', NULL, 'GINA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14931', NULL, 'JHONANTAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14932', NULL, 'MARIA AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14933', NULL, 'MARGOTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14934', NULL, 'ATS- A TU SERVICIO S.A.C', '', '20602225357', '', '', 'AV. CUBA NRO. 1289 FND. OYAGUE (AT. 12 AV . BRASIL) LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14935', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14936', NULL, 'edilma rodriguez castro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14937', NULL, 'fermin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14938', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14939', NULL, 'emilda rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14940', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14941', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14942', NULL, 'edith toro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14943', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14944', NULL, 'maritza estrella', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14945', NULL, 'teresa palacios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14946', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14947', NULL, 'giovana zevallosw', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14948', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14949', NULL, 'neda malaga', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14950', NULL, 'NEDA MALAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14951', NULL, 'ROCIO IBAÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14952', NULL, 'NEGOCIACIONES SANTA YULIANA S.A.C.', '', '20543597997', '', '', 'MZA. O LOTE. 17 GRU. GRUPO RESIDENCIAL 20 SECTOR SEGUNDO LIMA - LIMA - VILLA EL SALVADOR', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14953', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14954', NULL, 'marjoria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14955', NULL, 'gianela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14956', NULL, 'maria vicente', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14957', NULL, 'rafael', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14958', NULL, 'EDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14959', NULL, 'ESPINOZA VILLEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14960', NULL, 'JESUS CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14961', NULL, 'JOSE LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14962', NULL, 'DIANA ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14963', NULL, 'NELIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14964', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14965', NULL, 'victor ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14966', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14967', NULL, 'GLADIS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14968', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14969', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14970', NULL, 'IBALCO S.A.C.', '', '20543768121', '', '', 'R. VILLACARRILLO NRO. 221 URB. RESIDENCIAL HIGUERETA (ALT CUADRA 4 DE PEDRO VENTURO) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14971', NULL, 'ADRIAN', '00000000', '', '', '', 'R. VILLACARRILLO NRO. 221 URB. RESIDENCIAL HIGUERETA (ALT CUADRA 4 DE PEDRO VENTURO) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14972', NULL, 'KARINA BARBOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14973', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14974', NULL, 'heidi delgdo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14975', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14976', NULL, 'LISBET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14977', NULL, 'NOE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14978', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14979', NULL, 'fortunata chanini', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14980', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14981', NULL, 'irma paredes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14982', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14983', NULL, 'faustina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14984', NULL, 'faustina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14985', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14986', NULL, 'WILFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14987', NULL, 'WILFREDO GUTIERREZ', '24987959', '', '', '', 'YAUYOS', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14988', NULL, 'ALCIDES GARCIA', '00000000', '', '', '', 'YAUYOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14989', NULL, 'SILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14990', NULL, 'LUCIA GOMEZ', '00000000', '', '', '', 'YAUYOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14991', NULL, 'MILAGRO MEJIA', '00000000', '', '', '', 'YAUYOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14992', NULL, 'alfredo melendez', '19685640', '', '', '', 'trujillo', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14993', NULL, 'carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14994', NULL, 'gabriela mercado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14995', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14996', NULL, 'antonia tucto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14997', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14998', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('14999', NULL, 'abelino navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15000', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15001', NULL, 'piero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15002', NULL, 'angie moran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15003', NULL, 'genaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15004', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15005', NULL, 'FLORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15006', NULL, 'CINTHIA SAN MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15007', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15008', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15009', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15010', NULL, 'nancy blanco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15011', NULL, 'irma zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15012', NULL, 'ASMEL SERVICE E.I.R.L.', '', '20556678619', '', '', 'AV. GUILLERMO BILLINGHURST MZA. P LOTE. 02 A.H. SAN ANTONIO DE PADUA LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15013', NULL, 'nora carrasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15014', NULL, 'FLORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15015', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15016', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15017', NULL, 'erica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15018', NULL, 'SEGUNDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15019', NULL, 'mario rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15020', NULL, 'ana molina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15021', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15022', NULL, 'juana melendes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15023', NULL, 'graciela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15024', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15025', NULL, 'RUTH  VILLALOBOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15026', NULL, 'RUTH VILLALOBOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15027', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15028', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15029', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15030', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15031', NULL, 'KELLY ANDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15032', NULL, 'NEMIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15033', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15034', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15035', NULL, 'MILAGROS AMPUERO ZANABRIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15036', NULL, 'MILAGRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15037', NULL, 'ELSI TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15038', NULL, 'ana robles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15039', NULL, 'efrain', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15040', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15041', NULL, 'EFRAIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15042', NULL, 'alexandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15043', NULL, 'MARTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15044', NULL, 'yim chamorro andaayo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15045', NULL, 'MARIA ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15046', NULL, 'maria huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15047', NULL, 'INVERSIONES TOMAS VALLE S.A.C', '', '20476633932', '', '', 'JR. DOMINGO CUETO NRO. 444 URB. RISSO LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15048', NULL, 'VALVAN SOCIEDAD ANONIMA CERRADA-VALVAN S.A.C.', '', '20553451478', '', '', 'AV. LAS PALMERAS NRO. 5610 URB. VILLA DEL NORTE LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15049', NULL, 'patricia pachas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15050', NULL, 'nelida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15051', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15052', NULL, 'VELASQUE PALOMINO VIRGINIA', '', '10310401507', '', '', 'jr. arequipa #519 abancay apurimac', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15053', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15054', NULL, 'julia cordova', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15055', NULL, 'MARIA MALDONADO CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15056', NULL, 'hilda sabino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15057', NULL, 'JUAN CARLOS QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15058', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15059', NULL, 'ADOLFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15060', NULL, 'milena salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15061', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15062', NULL, 'monica diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15063', NULL, 'edilberta yauri benitez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15064', NULL, 'melisa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15065', NULL, 'marina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15066', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15067', NULL, 'CASTILLO RODRIGUEZ RAQUEL EROTILA', '', '10266784304', '', '', 'JR AMALIA PUGA 946 CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15068', NULL, 'SANTA BARRETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15069', NULL, 'CARMEN QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15070', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15071', NULL, 'marisol morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15072', NULL, 'MONTALVO ALVAREZ VALENTIN', '', '10103356691', '', '', 'AV DEFENSORES DEL MORRO S/N LOTE 12 CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15073', NULL, 'saul de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15074', NULL, 'FRANCISCO  PASION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15075', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15076', NULL, 'ELMER SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15077', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15078', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15079', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15080', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15081', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15082', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15083', NULL, 'INES VALVERDE', '32908101', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15084', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15085', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15086', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15087', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15088', NULL, 'thalia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15089', NULL, 'carlos reluz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15090', NULL, 'JULIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15091', NULL, 'eugenia soprian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15092', NULL, 'KSL S.A.C.', '', '20556928313', '', '', 'AV. AVIACION NRO. 2477 DPTO. 401 URB. SAN BORJA LIMA - LIMA - SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15093', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15094', NULL, 'IRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15095', NULL, 'juan carlos pereda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15096', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15097', NULL, 'PATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15098', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15099', NULL, 'PAULINA FIGUEROA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15100', NULL, 'ZENAIDA AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15101', NULL, 'DOMINGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15102', NULL, 'NANCY ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15103', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15104', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15105', NULL, 'ANTONI APAZA ALDERETE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15106', NULL, 'ANTONI APAZA ALDERETE', '77481271', '', '', '', 'PUQUIO -LUCANAS- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15107', NULL, 'LIDIA', '00000000', '', '', '', 'PUQUIO -LUCANAS- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15108', NULL, 'LIDIA', '00000000', '', '', '', 'PUQUIO -LUCANAS- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15109', NULL, 'CLEVER RICSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15110', NULL, 'esmeralda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15111', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15112', NULL, 'gabriel vergara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15113', NULL, 'LADY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15114', NULL, 'LADY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15115', NULL, 'KORINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15116', NULL, 'MARIA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15117', NULL, 'GABY SALDAÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15118', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15119', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15120', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15121', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15122', NULL, 'john enriquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15123', NULL, 'aoswaldh jaime gomez ponce', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15124', NULL, 'oswaldh jaime gomez ponce', '22670623', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15125', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15126', NULL, 'jacinto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15127', NULL, 'jorge german', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15128', NULL, 'joao', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15129', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15130', NULL, 'LIZETH HERNANADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15131', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15132', NULL, 'CECILIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15133', NULL, '20506722731', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15134', NULL, 'TIAN LI ENTERTAINMENT S.A.C.', '', '20506788731', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 4128 (A 2 CDRAS ANTES DE ANGAMOS DE VIA EXPRES) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15135', NULL, 'esperanza recuay', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15136', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15137', NULL, 'GLADIS PORRAS', '09905477', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15138', NULL, 'KARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15139', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15140', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15141', NULL, 'RODRIGUEZ VARELA DE IZQUIERDO MAGDALENA', '', '10052306065', '', '', 'ALFONSO UGARTE #390 BELEN -MAYNAS-LORETO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15142', NULL, 'YACKELINE HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15143', NULL, 'NORMA CORONEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15144', NULL, 'NORMA CORONEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15145', NULL, 'NORMA CORONEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15146', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15147', NULL, 'MARIELI CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15148', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15149', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15150', NULL, 'MALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15151', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15152', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15153', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15154', NULL, 'HERNESTO JAIMES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15155', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15156', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15157', NULL, 'ARACELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15158', NULL, 'LIDIA MEDINA SOLIS', '10447044', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15159', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15160', NULL, 'RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15161', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15162', NULL, 'NANCY MUÑOZ OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15163', NULL, 'orlando lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15164', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15165', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15166', NULL, 'THUÑICHIY WASI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15167', NULL, 'COMITE THUÑICHI Y WASI', '00000000', '', '', '', 'MARISCAL CACERES S.J.L', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15168', NULL, 'LUIS VIENRICH PARRA', '', '10074925010', '', '', 'JR HUASCARAN 775 - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15169', NULL, 'MARGARITA', '00000000', '', '', '', 'JR HUASCARAN 775 - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15170', NULL, 'MIGUEL HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15171', NULL, 'JUAN ANTONIO', '00000000', '', '', '', 'JR HUASCARAN 775 - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15172', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15173', NULL, 'flor de maria', '00000000', '', '', '', 'JR HUASCARAN 775 - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15174', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15175', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15176', NULL, 'keyla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15177', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15178', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15179', NULL, 'guadalupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15180', NULL, 'guadalupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15181', NULL, 'TEVES QUISPE JULIA', '', '10238657992', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15182', NULL, 'VIRGINIA ROJAS', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15183', NULL, 'EFRAIN MEZA', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15184', NULL, 'LUIS ARMAS', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15185', NULL, 'ANIBAL AGUILAR', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15186', NULL, 'MONICA', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15187', NULL, 'WALTER', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15188', NULL, 'JULIO MARTINEZ', '00000000', '', '', '', 'URB MANZANARES A5 CUSCO-CUSCO-CUSCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15189', NULL, 'blanca medina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15190', NULL, 'PATRICIA YAMASATO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15191', NULL, 'CRIS RELAYCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15192', NULL, 'RONALD CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15193', NULL, 'LARICO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15194', NULL, 'INGRID RIOS CAMPOS', '41075205', '', '', '', 'TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15195', NULL, 'KATIA BARBOZA', '00000000', '', '', '', 'TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15196', NULL, 'DIAZ VASQUEZ', '00000000', '', '', '', 'TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15197', NULL, 'HUGO CHIPANA', '00000000', '', '', '', 'TRUJILLO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15198', NULL, 'MONICA PEREDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15199', NULL, 'RONALD MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15200', NULL, 'JUNIOR JUMPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15201', NULL, 'SOLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15202', NULL, 'LUIS CAVERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15203', NULL, 'ESTER JUSTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15204', NULL, 'SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15205', NULL, 'ROXANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15206', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15207', NULL, 'ROXANA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15208', NULL, 'sonia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15209', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15210', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15211', NULL, 'ricardo vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15212', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15213', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15214', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15215', NULL, 'LILI RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15216', NULL, 'LIZ REZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15217', NULL, 'susana sotelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15218', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15219', NULL, 'maria cristina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15220', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15221', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15222', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15223', NULL, 'GERARDO MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15224', NULL, 'ANDREA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15225', NULL, 'ANDREA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15226', NULL, 'KARIN CAVERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15227', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15228', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15229', NULL, 'MELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15230', NULL, 'MELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15231', NULL, 'RICARDINA AYON AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15232', NULL, 'santos huamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15233', NULL, 'santos huamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15234', NULL, 'DIANA DUEÑAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15235', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15236', NULL, 'YUBISA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15237', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15238', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15239', NULL, 'sulma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15240', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15241', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15242', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15243', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15244', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15245', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15246', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15247', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15248', NULL, 'MARIBEL QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15249', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15250', NULL, 'mmm reynoso', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15251', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15252', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15253', NULL, 'pedro pereyra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15254', NULL, 'hilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15255', NULL, 'HILDA anca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15256', NULL, 'ALEJANDRINA MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15257', NULL, 'LIÑLIANA GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15258', NULL, 'HILARIO HIDALGO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15259', NULL, 'HILARIO HIDALGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15260', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15261', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15262', NULL, 'IVET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15263', NULL, 'INGRID CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15264', NULL, 'VIVIAN MAURTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15265', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15266', NULL, 'david palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15267', NULL, 'WILBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15268', NULL, 'FLOISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15269', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15270', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15271', NULL, 'JOSE LUIS GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15272', NULL, 'CINTHIA TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15273', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15274', NULL, 'DUNIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15275', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15276', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15277', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15278', NULL, 'JORGE VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15279', NULL, 'MIRIAN VERASTEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15280', NULL, 'JORGE VERA CASTAÑEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15281', NULL, 'JORGE VILCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15282', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15283', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15284', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15285', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15286', NULL, '.ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15287', NULL, 'JOSUE LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15288', NULL, 'JOSUE LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15289', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15290', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15291', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15292', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15293', NULL, 'MARIA BRACACMONTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15294', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15295', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15296', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15297', NULL, 'JULIA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15298', NULL, 'LESLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15299', NULL, 'LESLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15300', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15301', NULL, 'carol ramirez de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15302', NULL, 'junior', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15303', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15304', NULL, 'HECTOR GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15305', NULL, 'mirian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15306', NULL, 'HERMELINDA OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15307', NULL, 'JERRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15308', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15309', NULL, 'MARITA SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15310', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15311', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15312', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15313', NULL, 'PABLO JAUREGUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15314', NULL, 'ZOLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15315', NULL, 'JOSE GALLEGOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15316', NULL, 'ROCIO ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15317', NULL, 'FABIOLA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15318', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15319', NULL, 'FERNANDO ZUÑIGA', '21247677', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15320', NULL, 'ROXANA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15321', NULL, 'CESAR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15322', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15323', NULL, 'martin sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15324', NULL, 'reynaldo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15325', NULL, 'magna aguilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15326', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15327', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15328', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15329', NULL, 'yeni yupanqui', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15330', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15331', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15332', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15333', NULL, 'maria cabello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15334', NULL, 'maria cabello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15335', NULL, 'MIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15336', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15337', NULL, 'KATERIINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15338', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15339', NULL, 'yenifer chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15340', NULL, 'hilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15341', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15342', NULL, 'MARCELINO CALSADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15343', NULL, '3018', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15344', NULL, 'PEDRO AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15345', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15346', NULL, 'carla serna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15347', NULL, 'DAVID CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15348', NULL, 'LUZ pillaca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15349', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15350', NULL, 'DAVID CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15351', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15352', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15353', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15354', NULL, 'MIRIAN VILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15355', NULL, 'ROXANA GO0NSALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15356', NULL, 'ROXANA GO0NSALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15357', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15358', NULL, 'ANGELA ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15359', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15360', NULL, 'GUSTAVO LAZARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15361', NULL, 'GUSTAVO LAZARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15362', NULL, 'LIU JUBIN S.A.C.', '', '20392960121', '', '', 'AV. ANGAMOS ESTE NRO. 1293 LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15363', NULL, 'MERY ARQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15364', NULL, 'VERONICA CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15365', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15366', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15367', NULL, 'MELANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15368', NULL, 'KELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15369', NULL, 'CARMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15370', NULL, 'CLAUDIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15371', NULL, 'CARLOS PARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15372', NULL, 'MARTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15373', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15374', NULL, 'LIDIA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15375', NULL, 'FLOR CARMONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15376', NULL, 'BALTAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15377', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15378', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15379', NULL, 'SUCESION BENAVENTE ALANOCA NICANOR', '', '15131239260', '', '', 'JR. PROGRESO NRO. 573 UCAYALI - CORONEL PORTILLO - CALLERIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15380', NULL, 'NMICHEL', '00000000', '', '', '', 'JR. PROGRESO NRO. 573 UCAYALI - CORONEL PORTILLO - CALLERIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15381', NULL, 'NMICHEL', '00000000', '', '', '', 'JR. PROGRESO NRO. 573 UCAYALI - CORONEL PORTILLO - CALLERIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15382', NULL, 'MILAGROS HUERTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15383', NULL, 'GIOVANA', '00000000', '', '', '', 'JR. PROGRESO NRO. 573 UCAYALI - CORONEL PORTILLO - CALLERIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15384', NULL, 'GIOVANA', '00000000', '', '', '', 'JR. PROGRESO NRO. 573 UCAYALI - CORONEL PORTILLO - CALLERIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15385', NULL, 'GREISE', '00000000', '', '', '', 'JR. PROGRESO NRO. 573 UCAYALI - CORONEL PORTILLO - CALLERIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15386', NULL, 'SOFIA ULLOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15387', NULL, 'RONALD VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15388', NULL, 'MAXI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15389', NULL, 'AMPARO TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15390', NULL, 'LEONARDO BARRIOS SORAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15391', NULL, 'JOSE LUIS BENTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15392', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15393', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15394', NULL, 'YOYS NARBASTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15395', NULL, 'SANDRA HUMAREDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15396', NULL, 'EDUARDO BECERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15397', NULL, 'DARY OBANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15398', NULL, 'CARLOS SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15399', NULL, 'maria sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15400', NULL, 'elias alca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15401', NULL, 'MANUEL', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15402', NULL, 'nimia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15403', NULL, 'manuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15404', NULL, 'KATIA ALIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15405', NULL, 'KATIA BARBOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15406', NULL, 'YESICA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15407', NULL, 'yesica cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15408', NULL, 'milagros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15409', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15410', NULL, 'candy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15411', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15412', NULL, 'ROSA GALVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15413', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15414', NULL, 'pilar barnechea', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15415', NULL, 'REPRESENTACIONES Y DISTRIBUCIONES GENERALES AYR DEL SUR', '', '20600795717', '', '', 'JR. 9 DE DICIEMBRE NRO. 124 INT. 30 (GALERIAS LAS CALCETERAS, PLAZA BOLOGNESI) PUNO - SAN ROMAN - JULIACA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15416', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15417', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15418', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15419', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15420', NULL, 'ALEJANDRINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15421', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15422', NULL, 'yuli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15423', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15424', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15425', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15426', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15427', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15428', NULL, 'korina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15429', NULL, 'kimi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15430', NULL, 'kimi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15431', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15432', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15433', NULL, 'NICAPA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15434', NULL, 'NICAPA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15435', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15436', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15437', NULL, 'inga arrieta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15438', NULL, 'inga arrieta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15439', NULL, 'inga arrieta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15440', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15441', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15442', NULL, 'julio ananpa', '09088448', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15443', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15444', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15445', NULL, 'ENOMIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15446', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15447', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15448', NULL, 'JUSTINA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15449', NULL, 'JUSTINA SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15450', NULL, 'alberto barrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15451', NULL, 'alberto barrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15452', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15453', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15454', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15455', NULL, 'ERIKA valensuela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15456', NULL, 'AZ EXPRESS LOGISTICA S.A.C', '', '20451720580', '', '', 'AV. REPUBLICA DE PANAMA NRO. 204 (ALT CDRA 14 SAENZ PEÑA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15457', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15458', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15459', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15460', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15461', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15462', NULL, 'eddye', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15463', NULL, 'eddye', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15464', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15465', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15466', NULL, 'DARRIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15467', NULL, 'DARRIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15468', NULL, 'HERNAN LUGO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15469', NULL, 'HERNAN LUGO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15470', NULL, 'LIDIA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15471', NULL, 'FLORENTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15472', NULL, 'ARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15473', NULL, 'DANIEL AREAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15474', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15475', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15476', NULL, 'OSWALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15477', NULL, 'TWENTY PLUS S.A', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15478', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15479', NULL, 'MARTIN  NOVASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15480', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15481', NULL, 'anibal valderrama', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15482', NULL, 'anibal valderrama', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15483', NULL, 'TERESA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15484', NULL, 'cesar diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15485', NULL, 'EDGAR CASTRO RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15486', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15487', NULL, 'MARTHA ESTABRIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15488', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15489', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15490', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15491', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15492', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15493', NULL, 'JUAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15494', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15495', NULL, 'nancy leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15496', NULL, 'nancy leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15497', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15498', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15499', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15500', NULL, 'MABEL ROSALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15501', NULL, 'LUCIA ANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15502', NULL, 'JOSE BRICEÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15503', NULL, 'carmen aquije', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15504', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15505', NULL, 'MARIA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15506', NULL, 'ELSA SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15507', NULL, 'ELSA SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15508', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15509', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15510', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15511', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15512', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15513', NULL, 'AEROPUERTOS ANDINOS DEL PERU S.A.', '', '20538593053', '', '', 'AV. MARISCAL JOSE DE LA MAR NRO. 1263 INT. 601 URB. SANTA CRUZ LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15514', NULL, 'JUAN', '00000000', '', '', '', 'AV. MARISCAL JOSE DE LA MAR NRO. 1263 INT. 601 URB. SANTA CRUZ LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15515', NULL, 'JUAN', '00000000', '', '', '', 'AV. MARISCAL JOSE DE LA MAR NRO. 1263 INT. 601 URB. SANTA CRUZ LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15516', NULL, 'pamela cordova', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15517', NULL, 'enrique espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15518', NULL, 'enrique espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15519', NULL, 'DENIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15520', NULL, 'DENIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15521', NULL, 'amelia robles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15522', NULL, 'ana quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15523', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15524', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15525', NULL, 'DANIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15526', NULL, 'DANIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15527', NULL, 'DANIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15528', NULL, 'jenny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15529', NULL, 'jenny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15530', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15531', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15532', NULL, 'gian carlo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15533', NULL, 'gian carlo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15534', NULL, 'panebra vargas dolly paola', '43687391', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15535', NULL, 'CARDIOFRANC E.I.R.L.', '', '20602562396', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15536', NULL, 'rocio paredes salcedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15537', NULL, 'RENZO', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15538', NULL, 'RENZO', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15539', NULL, 'WILBER', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15540', NULL, 'RUTH', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15541', NULL, 'RUTH', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15542', NULL, 'elma', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15543', NULL, 'elma', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15544', NULL, 'SARELA MOSCOSO', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15545', NULL, 'SARELA MOSCOSO', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15546', NULL, 'ENRIQUE PEREZ', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15547', NULL, 'ENRIQUE PEREZ', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15548', NULL, 'ROCIO', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15549', NULL, 'ROCIO', '00000000', '', '', '', 'AV. BRASIL NRO. 1032 DPTO. 1004 URB. BREÑA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15550', NULL, 'LUIS BENAVENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15551', NULL, 'LUIS BENAVENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15552', NULL, 'LUIS BENAVENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15553', NULL, 'LUIS BENAVENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15554', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15555', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15556', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15557', NULL, 'LESLY MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15558', NULL, 'LESLY MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15559', NULL, 'LESLY MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15560', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15561', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15562', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15563', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15564', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15565', NULL, 'IVONE RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15566', NULL, 'IVONE RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15567', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15568', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15569', NULL, 'ALISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15570', NULL, 'ALISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15571', NULL, 'ilario alberto espiritu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15572', NULL, 'ilario alberto espiritu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15573', NULL, 'ilario alberto espiritu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15574', NULL, 'hector hernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15575', NULL, 'hector hernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15576', NULL, 'hector hernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15577', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15578', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15579', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15580', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15581', NULL, 'becker soto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15582', NULL, 'SOTO MAGENCIO BEKER', '', '10227551548', '', '', 'JR. PLAZA DE ARMAS # 122  HUALLANCA -BOLOGNESI ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15583', NULL, 'MARIA LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15584', NULL, 'neida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15585', NULL, 'ANA LA ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15586', NULL, 'BEGONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15587', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15588', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15589', NULL, 'JAVIER DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15590', NULL, 'ISABEL NIETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15591', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15592', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15593', NULL, 'SOTELO FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15594', NULL, 'SOTELO FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15595', NULL, 'JORGE PASCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15596', NULL, 'JORGE PASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15597', NULL, 'JORGE PASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15598', NULL, 'MARILYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15599', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15600', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15601', NULL, 'CECILIA PUESCAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15602', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15603', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15604', NULL, 'MARIENELA  IWANAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15605', NULL, 'leonel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15606', NULL, 'leonel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15607', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15608', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15609', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15610', NULL, 'WALTER villacorta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15611', NULL, 'WALTER villacorta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15612', NULL, 'PANDORA TECHNOLOGIES E.I.R.L.', '', '20600661141', '', '', 'JR. SANTA ROSA NRO. 376 INT. 1106 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15613', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15614', NULL, 'IRMA LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15615', NULL, 'MARIA ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15616', NULL, 'ERIKA mendes', '00000000', '', '', '', 'JR. SANTA ROSA NRO. 376 INT. 1106 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15617', NULL, 'ERIKA mendes', '00000000', '', '', '', 'JR. SANTA ROSA NRO. 376 INT. 1106 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15618', NULL, 'MARIA ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15619', NULL, 'LOISI LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15620', NULL, 'SERVICIOS ESPECIALES LA LUZ E.I.R.L.', '', '20522582949', '', '', 'MZA. K LOTE. 40 URB. SAN ELIAS (CRUCE AV CENTRAL Y HUANDOY) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15621', NULL, 'CLAUDIA', '00000000', '', '', '', 'MZA. K LOTE. 40 URB. SAN ELIAS (CRUCE AV CENTRAL Y HUANDOY) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15622', NULL, 'KATIA', '00000000', '', '', '', 'MZA. K LOTE. 40 URB. SAN ELIAS (CRUCE AV CENTRAL Y HUANDOY) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15623', NULL, 'KATIA', '00000000', '', '', '', 'MZA. K LOTE. 40 URB. SAN ELIAS (CRUCE AV CENTRAL Y HUANDOY) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15624', NULL, 'EMERGENCY ONLINE S.A.C.', '', '20601382050', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15625', NULL, 'koko', '00000000', '', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15626', NULL, 'koko', '00000000', '', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15627', NULL, 'koko', '00000000', '', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15628', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15629', NULL, 'KARINA yauri', '00000000', '', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15630', NULL, 'KARINA yauri', '00000000', '', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15631', NULL, 'KARINA yauri', '00000000', '', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15632', NULL, 'FREDY chura', '00000000', '', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15633', NULL, 'FREDY chura', '00000000', '', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15634', NULL, 'ROJAS FERNANDEZ JUAN EDUARDO', '', '10417141354', '', '', 'prolongacion  agustin gamarra 653 int419- la victoria', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15635', NULL, 'IRMA', '00000000', '', '', '', 'prolongacion  agustin gamarra 653 int419- la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15636', NULL, 'IRMA', '00000000', '', '', '', 'prolongacion  agustin gamarra 653 int419- la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15637', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15638', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15639', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15640', NULL, 'JAMAICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15641', NULL, 'ARON MEZA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15642', NULL, 'JULIAN QUILLAS VALDEZ', '00000000', '', '', '', 'huacho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15643', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15644', NULL, 'LUZ ROJAS', '00000000', '', '', '', 'huacho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15645', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15646', NULL, 'MARGARITA CUSTODIO', '06410933', '', '', '', 'CHICLAYO-MONSEFU', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15647', NULL, 'PILAR', '00000000', '', '', '', 'huacho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15648', NULL, 'ROSA', '00000000', '', '', '', 'huacho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15649', NULL, 'ROSA', '00000000', '', '', '', 'huacho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15650', NULL, 'RENZO', '00000000', '', '', '', 'CHICLAYO-MONSEFU', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15651', NULL, 'SARA', '00000000', '', '', '', 'huacho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15652', NULL, 'SARA', '00000000', '', '', '', 'huacho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15653', NULL, 'SARA', '00000000', '', '', '', 'huacho', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15654', NULL, 'BETSABET QUISPE DE LA CRUZ', '00000000', '', '', '', 'CHICLAYO-MONSEFU', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15655', NULL, 'BETSABETH DE LA CRUZ', '00000000', '', '', '', 'CHICLAYO-MONSEFU', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15656', NULL, 'MARTIN', '00000000', '', '', '', 'CHICLAYO-MONSEFU', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15657', NULL, 'MARTIN', '00000000', '', '', '', 'CHICLAYO-MONSEFU', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15658', NULL, 'JHON', '00000000', '', '', '', 'CHICLAYO-MONSEFU', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15659', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15660', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15661', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15662', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15663', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15664', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15665', NULL, 'CARMEN AQUIJE DE PORTAL', '00000000', '', '', '', 'CHICLAYO-MONSEFU', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15666', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15667', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15668', NULL, 'REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15669', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15670', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15671', NULL, 'LIBERTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15672', NULL, 'XIMENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15673', NULL, 'RITA CASTSGNETO PANDURO DE CHANG', '00831993', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15674', NULL, 'GRISEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15675', NULL, 'GRISEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15676', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15677', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15678', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15679', NULL, 'MOISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15680', NULL, 'MOISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15681', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15682', NULL, 'YPOLANDA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15683', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15684', NULL, 'CESAR SEGUNDO UBANDO', '15660863', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15685', NULL, 'vitalia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15686', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15687', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15688', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15689', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15690', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15691', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15692', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15693', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15694', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15695', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15696', NULL, 'LUCIA MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15697', NULL, 'LUCIA MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15698', NULL, 'LUCIA MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15699', NULL, 'SANDRA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15700', NULL, 'SANDRA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15701', NULL, 'kelly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15702', NULL, 'kelly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15703', NULL, 'MAGDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15704', NULL, 'MAGDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15705', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15706', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15707', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15708', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15709', NULL, 'SATURNINA FERNANDES PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15710', NULL, 'aldo sotelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15711', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15712', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15713', NULL, 'ROMINDA NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15714', NULL, 'CESAR CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15715', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15716', NULL, 'mario centeno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15717', NULL, 'victor donayre', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15718', NULL, 'COMERCIO DE GOLOCINAS NACIONALES E IMPORTADAS ISACC E.I', '', '20525874339', '', '', 'PUESTO 06 - UNIDAD 1 MZA. 19 LOTE. S/N MERCADO ANEXO PIURA - PIURA - PIURA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15719', NULL, 'CARMEN AQUIJE DE PORTAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15720', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15721', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15722', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15723', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15724', NULL, 'GRACIELA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15725', NULL, 'MILUSKA QUINTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15726', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15727', NULL, 'DOLORES SAYAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15728', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15729', NULL, 'HAIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15730', NULL, 'FANY VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15731', NULL, 'EMERSON TECHNOLOGY & SERVICE E.I.R.', '', '20519135079', '', '', 'JR. PUERTO PIZARRO MZA. I1 LOTE. 14 URB. PORTADA DEL SOL 1RA. ET. (3ER PISO, ALT CDRA 13 DE AV LOS FRESNOS) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15732', NULL, 'ARTHURO CALLUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15733', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15734', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15735', NULL, 'ANA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15736', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15737', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15738', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15739', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15740', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15741', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15742', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15743', NULL, 'FRANCISCO DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15744', NULL, 'RUFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15745', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15746', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15747', NULL, 'ANA GARCILAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15748', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15749', NULL, 'AYME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15750', NULL, 'MILAGROS AMPUERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15751', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15752', NULL, 'ANA VALERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15753', NULL, 'LUORDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15754', NULL, 'NANCY CAYCHO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15755', NULL, 'ANTHONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15756', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15757', NULL, 'RAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15758', NULL, 'irene salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15759', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15760', NULL, 'EDITH HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15761', NULL, 'jim correa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15762', NULL, 'jim correa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15763', NULL, 'MONICA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15764', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15765', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15766', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15767', NULL, 'margarita esquivel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15768', NULL, 'margarita esquivel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15769', NULL, 'karolaym herrera eaquivel', '71031736', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15770', NULL, 'GONSALO TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15771', NULL, 'GONSALO TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15772', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15773', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15774', NULL, 'EDISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15775', NULL, 'EDISON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15776', NULL, 'JHON DURAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15777', NULL, 'FABRICIO PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15778', NULL, 'janine', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15779', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15780', NULL, 'JIBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15781', NULL, 'edgar oropesa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15782', NULL, 'elsa muro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15783', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15784', NULL, 'JUAN ZAVALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15785', NULL, 'franklin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15786', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15787', NULL, 'karol palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15788', NULL, 'MARIA JAEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15789', NULL, 'eugenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15790', NULL, 'eugenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15791', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15792', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15793', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15794', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15795', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15796', NULL, 'luz susana de la cruz minaya', '46214294', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15797', NULL, 'JACK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15798', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15799', NULL, 'carlos torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15800', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15801', NULL, 'PAULINA camala', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15802', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15803', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15804', NULL, 'jose luis suarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15805', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15806', NULL, 'RENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15807', NULL, 'asuncion', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15808', NULL, 'asuncion', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15809', NULL, 'asuncion', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15810', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15811', NULL, 'NILDA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15812', NULL, 'NILDA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15813', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15814', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15815', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15816', NULL, 'CIRO MINIBE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15817', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15818', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15819', NULL, 'rosa miranda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15820', NULL, 'rosa miranda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15821', NULL, 'rodmy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15822', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15823', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15824', NULL, 'JULY MAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15825', NULL, 'JULY MAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15826', NULL, 'maria pozo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15827', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15828', NULL, 'SHARON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15829', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15830', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15831', NULL, 'INDIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15832', NULL, 'YANELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15833', NULL, 'YANELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15834', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15835', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15836', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15837', NULL, 'CARLOS TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15838', NULL, 'CARLOS TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15839', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15840', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15841', NULL, 'RONALD CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15842', NULL, 'CESAR TIRADO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15843', NULL, 'CESAR TIRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15844', NULL, 'AARBEL EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITADA', '', '20494951968', '', '', 'AV. MIGUEL GRAU NRO. 470 ICA - ICA - PARCONA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15845', NULL, 'maria cori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15846', NULL, 'yolanda torbisco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15847', NULL, 'ana rodrigo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15848', NULL, 'nolberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15849', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15850', NULL, 'duilio de la peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15851', NULL, 'rosa casma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15852', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15853', NULL, 'marina barnechea', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15854', NULL, 'zuleyka', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15855', NULL, 'elizabeth bautista', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15856', NULL, 'SHARON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15857', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15858', NULL, 'BETYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15859', NULL, 'PAOLA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15860', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15861', NULL, 'REMIGIO ORTIZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15862', NULL, 'REMIGIO ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15863', NULL, 'ELSA RO0JAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15864', NULL, 'EMERITA SANDOVAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15865', NULL, 'CASILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15866', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15867', NULL, 'CARLOS CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15868', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15869', NULL, 'PILAR CARRASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15870', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15871', NULL, 'YOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15872', NULL, 'MAURO PAREDES FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15873', NULL, 'YACKELINE DEL POZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15874', NULL, 'ORTENCIA VALDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15875', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15876', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15877', NULL, 'YESENIA MANRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15878', NULL, 'CARLA MENDOZA QUIIPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15879', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15880', NULL, 'delia camacho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15881', NULL, 'marco dayiro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15882', NULL, 'yaneth lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15883', NULL, 'elizabeth quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15884', NULL, 'GLORIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15885', NULL, 'GLORIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15886', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15887', NULL, 'JAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15888', NULL, 'OLGA OTAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15889', NULL, 'OLGA OTAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15890', NULL, 'teofilo jaramillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15891', NULL, 'enmanuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15892', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15893', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15894', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15895', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15896', NULL, 'marisol chipana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15897', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15898', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15899', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15900', NULL, 'teresa miranda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15901', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15902', NULL, 'martha lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15903', NULL, 'VERONICA VILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15904', NULL, 'BRUNO PICASO', '75343752', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15905', NULL, 'glenber', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15906', NULL, 'YANETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15907', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15908', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15909', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15910', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15911', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15912', NULL, 'JOSE MARTINEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15913', NULL, 'JOSE MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15914', NULL, 'VALDERRAMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15915', NULL, 'VALDERRAMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15916', NULL, 'VALDERRAMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15917', NULL, 'FRANCISCA PASTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15918', NULL, 'CARLOS PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15919', NULL, 'DIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15920', NULL, 'NATIVIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15921', NULL, 'NATIVIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15922', NULL, 'silvia de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15923', NULL, 'silvia de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15924', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15925', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15926', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15927', NULL, 'NATIVIDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15928', NULL, 'rosa alcantara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15929', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15930', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15931', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15932', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15933', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15934', NULL, 'lindaura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15935', NULL, 'lindaura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15936', NULL, 'antonio moran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15937', NULL, 'antonio moran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15938', NULL, 'angela santiago', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15939', NULL, 'ALEXANDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15940', NULL, 'ALEXANDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15941', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15942', NULL, 'jose luis cabezas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15943', NULL, 'RICARDO PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15944', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15945', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15946', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15947', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15948', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15949', NULL, 'J & E INVERSIONES PACIFICO S.A.C.', '', '20600224922', '', '', 'CAL.COMANDANTE JIMENEZ NRO. 435 INT. 206 LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15950', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15951', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15952', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15953', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15954', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15955', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15956', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15957', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15958', NULL, 'CAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15959', NULL, 'CAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15960', NULL, 'CAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15961', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15962', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15963', NULL, 'mauro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15964', NULL, 'OSAMBELA PASTOR ENRIQUE', '', '10402821898', '', '', 'av. la paz# 1025 san miguel-lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15965', NULL, 'INES VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15966', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15967', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15968', NULL, 'MANUEL ORE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15969', NULL, 'vidalon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15970', NULL, 'YAKU REPRESENTACIONES E.I.R.L.', '', '20605228268', '', '', 'MZA. A LOTE. 22 P.J. TUPAC AMARU ICA - NASCA - MARCONA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15971', NULL, 'carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15972', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15973', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15974', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15975', NULL, 'ALBERTO SOLIS', '00000000', '', '', '', 'MZA. A LOTE. 22 P.J. TUPAC AMARU ICA - NASCA - MARCONA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15976', NULL, 'MAGALY FERNADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15977', NULL, 'MAGALY FERNADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15978', NULL, 'ELSA DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15979', NULL, 'ELSA DELGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15980', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15981', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15982', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15983', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15984', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15985', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15986', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15987', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15988', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15989', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15990', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15991', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15992', NULL, 'carlos calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15993', NULL, 'carlos calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15994', NULL, 'carlos calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15995', NULL, 'nelis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15996', NULL, 'edelmira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15997', NULL, 'edelmira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15998', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('15999', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16000', NULL, 'CLOTILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16001', NULL, 'CLOTILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16002', NULL, 'juan lucho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16003', NULL, 'juan lucho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16004', NULL, 'diana hernadez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16005', NULL, 'diana hernadez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16006', NULL, 'ana paola chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16007', NULL, 'ana paola chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16008', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16009', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16010', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16011', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16012', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16013', NULL, 'maria loyola martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16014', NULL, 'maria loyola martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16015', NULL, 'ROGER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16016', NULL, 'ROGER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16017', NULL, 'lisandro gimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16018', NULL, 'lisandro gimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16019', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16020', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16021', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16022', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16023', NULL, 'vilanova llacza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16024', NULL, 'vilanova llacza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16025', NULL, 'vilanova llacza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16026', NULL, 'CRISANTO LAGUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16027', NULL, 'CRISANTO LAGUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16028', NULL, 'MARILU VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16029', NULL, 'MARILU VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16030', NULL, 'IGNACIO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16031', NULL, 'valeria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16032', NULL, 'tomas vidal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16033', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16034', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16035', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16036', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16037', NULL, 'barbara mariño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16038', NULL, 'isabel macuri', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16039', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16040', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16041', NULL, 'martha', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16042', NULL, 'eloy gerrero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16043', NULL, 'eloy gerrero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16044', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16045', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16046', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16047', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16048', NULL, 'marcela ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16049', NULL, 'MARIA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16050', NULL, 'MARCELA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16051', NULL, 'LUIS ALMEIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16052', NULL, 'SANTIAGO MANDUJANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16053', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16054', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16055', NULL, 'CRISTOFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16056', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16057', NULL, 'ANA BARRETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16058', NULL, 'LILIA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16059', NULL, 'GERMAN AREAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16060', NULL, 'ALEJANDRO BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16061', NULL, 'MILAGROS MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16062', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16063', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16064', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16065', NULL, 'GERALDINE MATOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16066', NULL, 'GERALDINE MATOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16067', NULL, 'GERALDINE MATOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16068', NULL, 'LURDES LAZO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16069', NULL, 'LUREDES LAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16070', NULL, 'LUREDES LAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16071', NULL, 'MOISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16072', NULL, 'MOISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16073', NULL, 'ALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16074', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16075', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16076', NULL, 'SENOVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16077', NULL, 'SENOVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16078', NULL, 'LUIS ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16079', NULL, 'LUIS ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16080', NULL, 'BARRIO RAMIREZ MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16081', NULL, 'BARRIO RAMIREZ MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16082', NULL, 'SABDRA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16083', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16084', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16085', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16086', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16087', NULL, 'MARCO ASCENCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16088', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16089', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16090', NULL, 'MARIA FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16091', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16092', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16093', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16094', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16095', NULL, 'MARIA FERNANDEZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16096', NULL, 'MARIA FERNADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16097', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16098', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16099', NULL, 'LUZMER S.A.C.', '', '20602233601', '', '', 'AV. SAN BORJA NORTE NRO. 1361 LIMA - LIMA - SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16100', NULL, 'JAVIER CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16101', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16102', NULL, 'JOEL MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16103', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16104', NULL, 'lopez camarena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16105', NULL, 'lopez camarena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16106', NULL, 'lopez camarena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16107', NULL, 'CINTHIA SAN MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16108', NULL, 'ramiro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16109', NULL, 'MILAGROS QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16110', NULL, 'MILAGROS QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16111', NULL, 'CORPORACION ENERJET SOCIEDAD ANONIMA - CORPORACION ENER', '', '20429040583', '', '', 'MZA. C LOTE. 15 ASC. LAS VEGAS LIMA - LIMA - PUENTE PIEDRA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16112', NULL, 'alberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16113', NULL, 'YANETH coral', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16114', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16115', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16116', NULL, 'WILLIAN ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16117', NULL, 'SANDRA LOLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16118', NULL, 'GINA CARDENAS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16119', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16120', NULL, 'gloria valverde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16121', NULL, 'ELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16122', NULL, 'ANTONIA ESCOBAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16123', NULL, 'WILLIANS ESPÍNOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16124', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16125', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16126', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16127', NULL, 'ELIZABETH CORAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16128', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16129', NULL, 'carlos barboza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16130', NULL, 'jose antonio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16131', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16132', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16133', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16134', NULL, 'ROBERTH CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16135', NULL, 'ISAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16136', NULL, 'zelma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16137', NULL, 'victoria melenes de caceres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16138', NULL, 'victoria melenes de caceres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16139', NULL, 'jacinta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16140', NULL, 'jacinta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16141', NULL, 'guadalupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16142', NULL, 'guadalupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16143', NULL, 'ANA CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16144', NULL, 'ANA CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16145', NULL, 'ANA CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16146', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16147', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16148', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16149', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16150', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16151', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16152', NULL, 'EDITH SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16153', NULL, 'EDITH SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16154', NULL, 'EDITH SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16155', NULL, 'MARICEEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16156', NULL, 'MARICEEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16157', NULL, 'MARICEEL ARMAS', '44296377', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16158', NULL, 'JULIA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16159', NULL, 'JULIA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16160', NULL, 'LUZ QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16161', NULL, 'LUZ QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16162', NULL, 'LUZ QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16163', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16164', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16165', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16166', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16167', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16168', NULL, 'CARLOS TEJADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16169', NULL, 'ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16170', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16171', NULL, 'ROMERO DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16172', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16173', NULL, 'SEGUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16174', NULL, 'SEGUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16175', NULL, 'SEGUNDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16176', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16177', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16178', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16179', NULL, 'MARIA CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16180', NULL, 'MARIA CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16181', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16182', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16183', NULL, 'JENIFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16184', NULL, 'ANA MONTAÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16185', NULL, 'ANA MONTAÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16186', NULL, 'ALDO CAPRISTANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16187', NULL, 'ALDO CAPRISTANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16188', NULL, 'AIDE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16189', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16190', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16191', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16192', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16193', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16194', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16195', NULL, 'EVA FARFAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16196', NULL, 'EVA FARFAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16197', NULL, 'gloria roman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16198', NULL, 'gloria roman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16199', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16200', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16201', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16202', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16203', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16204', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16205', NULL, 'VILMA PEREDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16206', NULL, 'VILMA PEREDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16207', NULL, 'BETSABET  gerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16208', NULL, 'BETSABET  gerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16209', NULL, 'BETSABET  gerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16210', NULL, 'jimy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16211', NULL, 'jimy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16212', NULL, 'jimy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16213', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16214', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16215', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16216', NULL, 'ELISABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16217', NULL, 'jesus suarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16218', NULL, 'andy luz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16219', NULL, 'cavero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16220', NULL, 'CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16221', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16222', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16223', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16224', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16225', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16226', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16227', NULL, 'rosamel calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16228', NULL, 'rosamel calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16229', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16230', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16231', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16232', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16233', NULL, 'gianina tewran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16234', NULL, 'gianina tewran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16235', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16236', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16237', NULL, 'neudi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16238', NULL, 'neudi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16239', NULL, 'MARCELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16240', NULL, 'brigit', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16241', NULL, 'brigit', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16242', NULL, 'ena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16243', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16244', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16245', NULL, 'danielo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16246', NULL, 'eduar velasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16247', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16248', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16249', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16250', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16251', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16252', NULL, 'DENIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16253', NULL, 'ligia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16254', NULL, 'raquel torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16255', NULL, 'ruben isadro campos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16256', NULL, 'ruben isadro campos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16257', NULL, 'ruben isadro campos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16258', NULL, 'cintia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16259', NULL, 'miguel ochoa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16260', NULL, 'miguel ochoa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16261', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16262', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16263', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16264', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16265', NULL, 'jose bobadilla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16266', NULL, 'yonne', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16267', NULL, 'yonne', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16268', NULL, 'SANDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16269', NULL, 'SANDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16270', NULL, 'maria chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16271', NULL, 'maria chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16272', NULL, 'paul ecos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16273', NULL, 'paul ecos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16274', NULL, 'pilar chocano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16275', NULL, 'pilar chocano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16276', NULL, 'pilar chocano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16277', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16278', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16279', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16280', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16281', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16282', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16283', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16284', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16285', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16286', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16287', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16288', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16289', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16290', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16291', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16292', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16293', NULL, 'HOSTAL MAMI PANCHITA EIRL', '', '20505952180', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16294', NULL, 'KRISTEN', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16295', NULL, 'KRISTEN', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16296', NULL, 'ALEJANDRINA', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16297', NULL, 'ALEJANDRINA', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16298', NULL, 'MAYRA', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16299', NULL, 'MAYRA', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16300', NULL, 'MAYRA', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16301', NULL, 'liliana linares', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16302', NULL, 'liliana linares', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16303', NULL, 'liliana linares', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16304', NULL, 'sara gusman', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16305', NULL, 'sara gusman', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16306', NULL, 'IRENE', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16307', NULL, 'IRENE', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16308', NULL, 'herrera rodriguez', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16309', NULL, 'juan alzamora', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16310', NULL, 'juan alzamora', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16311', NULL, 'VICTOR', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16312', NULL, 'VICTOR', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16313', NULL, 'VICTOR', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16314', NULL, 'EDWIN', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16315', NULL, 'EDWIN', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16316', NULL, 'EDWIN', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16317', NULL, 'EDWIN', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16318', NULL, 'EDWIN', '00000000', '', '', '', 'AV. FEDERICO GALLESI NRO. 198 URB. MIRAMAR (ESPALTA DEL MALECON BERTOLOTO) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16319', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16320', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16321', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16322', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16323', NULL, 'SANDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16324', NULL, 'emilia areas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16325', NULL, 'cesar peralta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16326', NULL, 'eusebio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16327', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16328', NULL, 'MELANI FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16329', NULL, 'ROSA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16330', NULL, 'LUZ ESPEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16331', NULL, 'LUIS ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16332', NULL, 'LUIS ZEGARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16333', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16334', NULL, 'JHONY GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16335', NULL, 'juan delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16336', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16337', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16338', NULL, 'ipiciano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16339', NULL, 'HILDA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16340', NULL, 'HILDA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16341', NULL, 'HILDA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16342', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16343', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16344', NULL, 'ANA VASQUEZ SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16345', NULL, 'ANA VASQUEZ SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16346', NULL, 'ANA VASQUEZ SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16347', NULL, 'IRMA YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16348', NULL, 'IRMA YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16349', NULL, 'TITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16350', NULL, 'TITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16351', NULL, 'tonY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16352', NULL, 'tonY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16353', NULL, 'tonY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16354', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16355', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16356', NULL, 'MARIA VALENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16357', NULL, 'MARIA VALENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16358', NULL, 'REJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16359', NULL, 'REJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16360', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16361', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16362', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16363', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16364', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16365', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16366', NULL, 'IGLESIA DE DIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16367', NULL, 'IGLESIA DE DIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16368', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16369', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16370', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16371', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16372', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16373', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16374', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16375', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16376', NULL, 'HUGO SOLORZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16377', NULL, 'HUGO SOLORZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16378', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16379', NULL, 'ASPILCUETA TERRAZAS PEDRO PRUDENCIO', '', '10100160744', '', '', 'JR MANUEL CASOS 599 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16380', NULL, 'FELIX', '00000000', '', '', '', 'JR MANUEL CASOS 599 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16381', NULL, 'FELIX', '00000000', '', '', '', 'JR MANUEL CASOS 599 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16382', NULL, 'FELIX', '00000000', '', '', '', 'JR MANUEL CASOS 599 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16383', NULL, 'GRACIELA', '00000000', '', '', '', 'JR MANUEL CASOS 599 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16384', NULL, 'GRACIELA', '00000000', '', '', '', 'JR MANUEL CASOS 599 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16385', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16386', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16387', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16388', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16389', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16390', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16391', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16392', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16393', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16394', NULL, 'ANTONIO', '09611122', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16395', NULL, 'FAUSTINA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16396', NULL, 'FAUSTINA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16397', NULL, 'ruth merginian silva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16398', NULL, 'ruth merginian silva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16399', NULL, 'ruth merginian silva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16400', NULL, 'ZULMA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16401', NULL, 'ZULMA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16402', NULL, 'ZULMA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16403', NULL, 'maria torrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16404', NULL, 'JOSE MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16405', NULL, 'ANALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16406', NULL, 'MIRANDA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16407', NULL, 'MILAGRINA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16408', NULL, 'JOSELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16409', NULL, 'barbara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16410', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16411', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16412', NULL, 'GLADYS DELGADO', '45336004', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16413', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16414', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16415', NULL, 'GUISEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16416', NULL, 'MAGALY ULLOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16417', NULL, 'MELVA CONDORY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16418', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16419', NULL, 'ISABEL NOMBERTO', '08413250', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16420', NULL, 'ALEXIS VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16421', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16422', NULL, 'REPARACIONES NAVALES E IND.WRPI S.R.L.', '', '20498700277', '', '', 'MZA. S LOTE. 4 ASC. SANTA ROSA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16423', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16424', NULL, 'DANIEL CHIRINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16425', NULL, 'MARTA CIRINEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16426', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16427', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16428', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16429', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16430', NULL, 'LITA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16431', NULL, 'RAYDA MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16432', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16433', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16434', NULL, 'FILOMENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16435', NULL, 'FILOMENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16436', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16437', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16438', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16439', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16440', NULL, 'OLIVER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16441', NULL, 'OLIVER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16442', NULL, 'OLIVER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16443', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16444', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16445', NULL, 'AYDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16446', NULL, 'YERNER TARAZONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16447', NULL, 'YERNER TARAZONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16448', NULL, 'YERNER TARAZONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16449', NULL, 'LURDES AREVALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16450', NULL, 'LURDES AREVALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16451', NULL, 'LURDES AREVALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16452', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16453', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16454', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16455', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16456', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16457', NULL, 'MARCO ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16458', NULL, 'MARCO ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16459', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16460', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16461', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16462', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16463', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16464', NULL, 'KATY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16465', NULL, 'katty  ignacio malca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16466', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16467', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16468', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16469', NULL, 'juan collanque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16470', NULL, 'juan collanque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16471', NULL, 'juan collanque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16472', NULL, 'AIDE PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16473', NULL, 'AIDE PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16474', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16475', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16476', NULL, 'RAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16477', NULL, 'RAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16478', NULL, 'GABRIELA PARIONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16479', NULL, 'GABRIELA PARIONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16480', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16481', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16482', NULL, 'NELLY CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16483', NULL, 'NELLY CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16484', NULL, 'NELLY CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16485', NULL, 'NELLY CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16486', NULL, 'ELENA PACOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16487', NULL, 'ELENA PACOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16488', NULL, 'antponieta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16489', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16490', NULL, 'roffi palpa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16491', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16492', NULL, 'lucy acevedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16493', NULL, 'E & A INVERSIONES S.A', '', '20292832223', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16494', NULL, 'E & A INVERSIONES S.A', '', '20292832223', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16495', NULL, 'millan fernandez', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16496', NULL, 'millan fernandez', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16497', NULL, 'millan fernandez', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16498', NULL, 'AIDE', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16499', NULL, 'AIDE', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16500', NULL, 'AIDE', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16501', NULL, 'ERICK', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16502', NULL, 'ERICK', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16503', NULL, 'marco oliva', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16504', NULL, 'marco oliva', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16505', NULL, 'MIRIAN SILVA', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16506', NULL, 'MIRIAN SILVA', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16507', NULL, 'victor vasquez', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16508', NULL, 'VICTOR VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16509', NULL, 'DORA ROJAS', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16510', NULL, 'DORA ROJAS', '00000000', '', '', '', 'AV. GRAL SAN MARTIN NRO. 154 Z.I. TABLADA DE LURIN LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16511', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16512', NULL, 'LUZ CUADROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16513', NULL, 'NORMA NOLASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16514', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16515', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16516', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16517', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16518', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16519', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16520', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16521', NULL, 'ROSA PAYHUANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16522', NULL, 'GLADIS CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16523', NULL, 'GLADIS CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16524', NULL, 'GLADIS CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16525', NULL, 'URSULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16526', NULL, 'URSULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16527', NULL, 'iris espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16528', NULL, 'iris espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16529', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16530', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16531', NULL, 'CARLOS TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16532', NULL, 'CARLOS TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16533', NULL, 'CARLOS alan', '40683405', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16534', NULL, 'MARIELA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16535', NULL, 'MARIELA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16536', NULL, 'carmen huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16537', NULL, 'MILAGROS CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16538', NULL, 'YACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16539', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16540', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16541', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16542', NULL, 'mireya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16543', NULL, 'susana chumbes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16544', NULL, 'susana chumbes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16545', NULL, 'liliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16546', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16547', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16548', NULL, 'JOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16549', NULL, 'MARIELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16550', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16551', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16552', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16553', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16554', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16555', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16556', NULL, 'MARIA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16557', NULL, 'MARIA REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16558', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16559', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16560', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16561', NULL, 'joselin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16562', NULL, 'joselin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16563', NULL, 'joselin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16564', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16565', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16566', NULL, 'DOMENICA MESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16567', NULL, 'WILLIANS CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16568', NULL, 'MARTIN CHIMIZU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16569', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16570', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16571', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16572', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16573', NULL, 'OLUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16574', NULL, 'REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16575', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16576', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16577', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16578', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16579', NULL, 'VIRGINIA ALDEA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16580', NULL, 'ERES VITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16581', NULL, 'ERES VITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16582', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16583', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16584', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16585', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16586', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16587', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16588', NULL, 'SAN JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16589', NULL, 'SAN JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16590', NULL, 'MARIA DEL PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16591', NULL, 'MARIA DEL PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16592', NULL, 'JESICA FARIAS', '25754331', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16593', NULL, 'dalila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16594', NULL, 'neli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16595', NULL, 'luz palacios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16596', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16597', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16598', NULL, 'yolanda gaspar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16599', NULL, 'manuel sosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16600', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16601', NULL, 'DIEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16602', NULL, 'yolnelson flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16603', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16604', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16605', NULL, 'COMINMAQ PERU S.A.C.', '', '20557464949', '', '', 'JR. HUAYUCCARI NRO. 190 COO. 27 DE ABRIL LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16606', NULL, 'ELVIRA', '00000000', '', '', '', 'JR. HUAYUCCARI NRO. 190 COO. 27 DE ABRIL LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16607', NULL, 'FRANCISCO', '00000000', '', '', '', 'JR. HUAYUCCARI NRO. 190 COO. 27 DE ABRIL LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16608', NULL, 'FRANCISCO', '00000000', '', '', '', 'JR. HUAYUCCARI NRO. 190 COO. 27 DE ABRIL LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16609', NULL, 'MIRIAN', '00000000', '', '', '', 'JR. HUAYUCCARI NRO. 190 COO. 27 DE ABRIL LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16610', NULL, 'MIRIAN', '00000000', '', '', '', 'JR. HUAYUCCARI NRO. 190 COO. 27 DE ABRIL LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16611', NULL, 'MIRIAN', '00000000', '', '', '', 'JR. HUAYUCCARI NRO. 190 COO. 27 DE ABRIL LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16612', NULL, 'MARTINEZ BOZA EFRAIN JULIAN', '', '10092763221', '', '', 'calle artesanos 150 int 182 - surco', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16613', NULL, 'MARTINEZ BOZA EFRAIN JULIAN', '', '10092763221', '', '', 'CALLAE ARTESANOS 150 INT182 SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16614', NULL, 'EDINSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16615', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16616', NULL, 'alejandro ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16617', NULL, 'alejandro ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16618', NULL, 'ALFREDO PAMPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16619', NULL, 'SULCA CURI NORMA CLARIS', '', '10285910710', '', '', 'jr san cristobal 1660 int 451 la victoria', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16620', NULL, 'SULCA CURI NORMA CLARIS', '', '10285910710', '', '', 'jr san cristobal 1660 int 451 la victoria', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16621', NULL, 'ELIZABETH', '00000000', '', '', '', 'jr san cristobal 1660 int 451 la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16622', NULL, 'ELIZABETH', '00000000', '', '', '', 'jr san cristobal 1660 int 451 la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16623', NULL, 'BERTILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16624', NULL, 'BERTILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16625', NULL, 'BERTILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16626', NULL, 'MARTHA LINARES', '00000000', '', '', '', 'jr san cristobal 1660 int 451 la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16627', NULL, 'MARTHA LINARES', '00000000', '', '', '', 'jr san cristobal 1660 int 451 la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16628', NULL, 'SOLEDAD HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16629', NULL, 'SOLEDAD HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16630', NULL, 'SOLEDAD HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16631', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16632', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16633', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16634', NULL, 'JUANA ANTON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16635', NULL, 'JUANA ANTON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16636', NULL, 'juan angelo', '00000000', '', '', '', 'jr san cristobal 1660 int 451 la victoria', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16637', NULL, 'CCOSI TTITO HELBER DAVID', '', '10296892993', '', '', 'AV FITZCARRLD PUERTO MALDONADO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16638', NULL, 'BETY OLIVARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16639', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16640', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16641', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16642', NULL, 'ELIANA HINOSTROZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16643', NULL, 'ELIANA HINOSTROZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16644', NULL, 'GONSALO ROSAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16645', NULL, 'GONSALO ROSAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16646', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16647', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16648', NULL, 'WILBER MERCADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16649', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16650', NULL, 'saby bautista', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16651', NULL, 'saby bautista', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16652', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16653', NULL, 'ALBERTO MODESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16654', NULL, 'ESPERANZA NONATO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16655', NULL, 'LUIS TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16656', NULL, 'LUIS TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16657', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16658', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16659', NULL, 'BILMA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16660', NULL, 'BILMA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16661', NULL, 'BILMA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16662', NULL, 'JUDITH PORTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16663', NULL, 'JUDITH PORTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16664', NULL, 'JUDITH PORTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16665', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16666', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16667', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16668', NULL, 'HECTOR LUIS NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16669', NULL, 'HECTOR LUIS NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16670', NULL, 'JOSEFINA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16671', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16672', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16673', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16674', NULL, 'SILVIA ESPINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16675', NULL, 'FERNANDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16676', NULL, 'FERNANDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16677', NULL, 'IBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16678', NULL, 'COPIAS &LIBRERÍA ANITA E.I.R.L.', '', '20600550153', '', '', 'JR. COMERCIO 152 MZA. K LOTE. 19 C.P. CAMANA AREQUIPA - CAMANA - CAMANA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16679', NULL, 'COPIAS &LIBRERÍA ANITA E.I.R.L.', '', '20600550153', '', '', 'JR. COMERCIO 152 MZA. K LOTE. 19 C.P. CAMANA AREQUIPA - CAMANA - CAMANA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16680', NULL, 'COPIAS &LIBRERÍA ANITA E.I.R.L.', '', '20600550153', '', '', 'JR. COMERCIO 152 MZA. K LOTE. 19 C.P. CAMANA AREQUIPA - CAMANA - CAMANA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16681', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16682', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16683', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16684', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16685', NULL, 'AMADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16686', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16687', NULL, 'KIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16688', NULL, 'jose arias', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16689', NULL, 'jose arias', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16690', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16691', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16692', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16693', NULL, 'fransua', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16694', NULL, 'fransua', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16695', NULL, 'benigno flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16696', NULL, 'benigno flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16697', NULL, 'benigno flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16698', NULL, 'JESUS TAPIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16699', NULL, 'D\'FITNESS S.A.C.', '', '20512898468', '', '', 'AV. PETIT THOUARS NRO. 5240 DPTO. 602 LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16700', NULL, 'ANA TOVAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16701', NULL, 'ANA TOVAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16702', NULL, 'ANA TOVAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16703', NULL, 'CONVICTO RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16704', NULL, 'CONVICTO RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16705', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16706', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16707', NULL, 'eduar gonzales carrasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16708', NULL, 'CHAVEZ', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16709', NULL, 'CHAVEZ', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16710', NULL, 'CHAVEZ', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16711', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16712', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16713', NULL, 'AUTOMATIZACION Y TECNOLOGIA ENERGY S.A.C. - ATEC ENERGY', '', '20603248130', '', '', 'CAL.1 MZA. D LOTE. 42 PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16714', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16715', NULL, 'vivian mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16716', NULL, 'vivian mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16717', NULL, 'vivian mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16718', NULL, 'ROGELIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16719', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16720', NULL, 'patricia contreras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16721', NULL, 'RAQUEL RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16722', NULL, 'yolanda mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16723', NULL, 'yolanda mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16724', NULL, 'patricia contreras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16725', NULL, 'patricia contreras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16726', NULL, 'iglesia cristiana pentecostes del peru', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16727', NULL, 'REPRESENTACIONES THIMOTHY SAC', '', '20516308401', '', '', 'JR. CARHUAZ NRO. 1232 INT. 201 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16728', NULL, 'REPRESENTACIONES THIMOTHY SAC', '', '20516308401', '', '', 'JR. CARHUAZ NRO. 1232 INT. 201 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16729', NULL, 'REPRESENTACIONES THIMOTHY SAC', '', '20516308401', '', '', 'JR. CARHUAZ NRO. 1232 INT. 201 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16730', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16731', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16732', NULL, 'norma falconi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16733', NULL, 'PAUL CORONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16734', NULL, 'PAUL CORONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16735', NULL, 'PAUL CORONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16736', NULL, 'EBER ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16737', NULL, 'ANA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16738', NULL, 'ANA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16739', NULL, 'luz marina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16740', NULL, 'luz marina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16741', NULL, 'fredy solis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16742', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16743', NULL, 'rosa romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16744', NULL, 'augusto huaraca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16745', NULL, 'maritza cercado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16746', NULL, 'debora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16747', NULL, 'SERGIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16748', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16749', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16750', NULL, 'LISET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16751', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16752', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16753', NULL, 'EVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16754', NULL, 'valentina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16755', NULL, 'valentina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16756', NULL, 'valentina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16757', NULL, 'diana guerrerpo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16758', NULL, 'JHONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16759', NULL, 'LI LIN SU GAN', '', '10421377621', '', '', 'AV. ANGAMOS 3 694 SURQUILLO -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16760', NULL, 'GYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16761', NULL, 'angelica merino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16762', NULL, 'angelica merino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16763', NULL, 'angelica merino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16764', NULL, 'yeni ponte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16765', NULL, 'raquel ramon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16766', NULL, 'raquel ramon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16767', NULL, 'raquel ramon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16768', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16769', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16770', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16771', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16772', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16773', NULL, 'CARLOS CAVERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16774', NULL, 'LIDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16775', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16776', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16777', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16778', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16779', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16780', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16781', NULL, 'ANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16782', NULL, 'lesly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16783', NULL, 'VICENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16784', NULL, 'JORGE BENITES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16785', NULL, 'JORGE BENITES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16786', NULL, 'JORGE BENITES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16787', NULL, 'JORGE BENITES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16788', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16789', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16790', NULL, 'JORGE PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16791', NULL, 'JORGE PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16792', NULL, 'JORGE PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16793', NULL, 'sonia magallanes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16794', NULL, 'sonia magallanes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16795', NULL, 'sonia magallanes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16796', NULL, 'OSCAR MALDONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16797', NULL, 'OSCAR MALDONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16798', NULL, 'alicia carnipti', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16799', NULL, 'ELVIRA ROSAS VALDIVIESO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16800', NULL, 'ELVIRA ROSAS VALDIVIESO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16801', NULL, 'LUZ DELIA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16802', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16803', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16804', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16805', NULL, 'JULIO MELGAREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16806', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16807', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16808', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16809', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16810', NULL, 'MASA PATIÑO ALCIRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16811', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16812', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16813', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16814', NULL, 'ELVIRA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16815', NULL, 'ELVIRA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16816', NULL, 'ELVIRA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16817', NULL, 'ARTURO CABRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16818', NULL, 'hernan tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16819', NULL, 'hernan tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16820', NULL, 'hernan tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16821', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16822', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16823', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16824', NULL, 'CORDOVA  MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16825', NULL, 'CORDOVA  MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16826', NULL, 'CORDOVA  MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16827', NULL, 'PRUDENCIA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16828', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16829', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16830', NULL, 'MARYORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16831', NULL, 'guisela alvarado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16832', NULL, 'KATIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16833', NULL, 'KATIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16834', NULL, 'KATIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16835', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16836', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16837', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16838', NULL, 'justina luna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16839', NULL, 'justina luna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16840', NULL, 'juan malca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16841', NULL, 'DISTRIBUCION Y SERVICIOS DE ENVASES DE VIDRIO EN GENERA', '', '20513315326', '', '', 'JR. ROSARIO NRO. 601 URB. CANTO REY ET 5 (ALT. CDRA. 10 AV. WIESE Y SAN MARTIN) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16842', NULL, 'DISTRIBUCION Y SERVICIOS DE ENVASES DE VIDRIO EN GENERA', '', '20513315326', '', '', 'JR. ROSARIO NRO. 601 URB. CANTO REY ET 5 (ALT. CDRA. 10 AV. WIESE Y SAN MARTIN) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16843', NULL, 'ANGIE', '00000000', '', '', '', 'JR. ROSARIO NRO. 601 URB. CANTO REY ET 5 (ALT. CDRA. 10 AV. WIESE Y SAN MARTIN) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16844', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16845', NULL, 'YESENIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16846', NULL, 'junior', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16847', NULL, 'LEYLA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16848', NULL, 'TORRES SAAVEDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16849', NULL, 'antony', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16850', NULL, 'CARLOS CAVERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16851', NULL, 'LUIS SALVATIERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16852', NULL, 'MELBA CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16853', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16854', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16855', NULL, 'MARIA HUACHACA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16856', NULL, 'RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16857', NULL, 'MARCELA CURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16858', NULL, 'GIANINA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16859', NULL, 'MOISES GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16860', NULL, 'LUZMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16861', NULL, 'ESMERALDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16862', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16863', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16864', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16865', NULL, 'NORESTI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16866', NULL, 'NORESTI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16867', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16868', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16869', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16870', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16871', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16872', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16873', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16874', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16875', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16876', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16877', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16878', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16879', NULL, 'JOEL PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16880', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16881', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16882', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16883', NULL, 'AIME VILLAREAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16884', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16885', NULL, 'ELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16886', NULL, 'yeni guillen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16887', NULL, 'moises escalante', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16888', NULL, 'moises escalante', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16889', NULL, 'ady gerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16890', NULL, 'ady gerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16891', NULL, 'patricia andrade', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16892', NULL, 'patricia andrade', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16893', NULL, 'maria gracia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16894', NULL, 'maria gracia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16895', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16896', NULL, 'MELANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16897', NULL, 'nieves', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16898', NULL, 'nieves', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16899', NULL, 'nieves', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16900', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16901', NULL, 'anais quevedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16902', NULL, 'sayuri', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16903', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16904', NULL, 'MARIA CABELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16905', NULL, 'LILI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16906', NULL, 'ENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16907', NULL, 'ELVIS LEON CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16908', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16909', NULL, 'PORTALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16910', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16911', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16912', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16913', NULL, 'EUGENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16914', NULL, 'EUGENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16915', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16916', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16917', NULL, 'RAUL DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16918', NULL, 'RAUL DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16919', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16920', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16921', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16922', NULL, 'BRANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16923', NULL, 'RUFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16924', NULL, 'MARIELENA ANTICONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16925', NULL, 'NESTOR GUERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16926', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16927', NULL, 'FRANCISCA MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16928', NULL, 'FRANCISCA MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16929', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16930', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16931', NULL, 'FLORES PAZ MAGARI', '', '10805050107', '', '', 'JR ASAMBLEA 251 CC VIA 7 4TO PISO -AYACUCHO - HUAMANGA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16932', NULL, 'GONZALES BEDOYA RICHARD WALTER', '', '10108809651', '', '', 'calie 67 # 188 urb. el pinar comas -lima-lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16933', NULL, 'GONZALES BEDOYA RICHARD WALTER', '', '10108809651', '', '', 'calle 67 # 188 urb. el pinar comas -lima-lima', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16934', NULL, 'PAOLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16935', NULL, 'PAOLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16936', NULL, 'PAOLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16937', NULL, 'PAOLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16938', NULL, 'ROSA VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16939', NULL, 'ana albujar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16940', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16941', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16942', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16943', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16944', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16945', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16946', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16947', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16948', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16949', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16950', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16951', NULL, 'bustos olertegui estaurofila', '45385508', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16952', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16953', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16954', NULL, 'NAEDRACK E.I.R.L', '', '20603104707', '', '', 'MZA. W LOTE. 04 BQ. SEÑOR DEL HUERTO (1 CDRA GRIFO ROBIN) AYACUCHO - HUAMANGA - AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16955', NULL, 'bertha bermudes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16956', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16957', NULL, 'oriani perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16958', NULL, 'fredy carrion', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16959', NULL, 'aaron quesada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16960', NULL, 'willi delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16961', NULL, 'willian delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16962', NULL, 'alicia horna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16963', NULL, 'omar barriga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16964', NULL, 'omar barriga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16965', NULL, 'omar barriga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16966', NULL, 'rosa hidalgo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16967', NULL, 'rosa hidalgo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16968', NULL, 'rosa hidalgo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16969', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16970', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16971', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16972', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16973', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16974', NULL, 'MERY ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16975', NULL, 'MERY ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16976', NULL, 'MERY ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16977', NULL, 'WARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16978', NULL, 'WARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16979', NULL, 'WARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16980', NULL, 'ARMANDO ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16981', NULL, 'ARMANDO ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16982', NULL, 'ARMANDO ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16983', NULL, 'elena casamayor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16984', NULL, 'elena casamayor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16985', NULL, 'SUCESION INDIVISA ARANDA LEVY ARMANDO JOSE', '', '10079295634', '', '', 'CAL.SIMON SALGUERO NRO. 507 URB. EL ROSAL (ALT. CDRA. 21 AV. BENAVIDES) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16986', NULL, 'ESTEBAN GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16987', NULL, 'ESTEFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16988', NULL, 'FRANCISCO NEGRETE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16989', NULL, 'ELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16990', NULL, 'ELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16991', NULL, 'rosa melendes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16992', NULL, 'rosa melendes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16993', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16994', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16995', NULL, 'MAGNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16996', NULL, 'MAGNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16997', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16998', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('16999', NULL, 'MARLENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17000', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17001', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17002', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17003', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17004', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17005', NULL, 'clarita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17006', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17007', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17008', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17009', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17010', NULL, 'MARLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17011', NULL, 'MARLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17012', NULL, 'IRMA CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17013', NULL, 'IRMA CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17014', NULL, 'IRMA CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17015', NULL, 'IRMA CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17016', NULL, 'JOSE NOLASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17017', NULL, 'CECILIA FERNADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17018', NULL, 'CECILIA FERNADEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17019', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17020', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17021', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17022', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17023', NULL, 'JUAN CARLOS SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17024', NULL, 'JUAN CARLOS SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17025', NULL, 'JUAN CARLOS SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17026', NULL, 'EMERSON PAEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17027', NULL, 'ALVAREZ CALDERON ROSA', '', '10078107931', '', '', 'JR MILITON CARBAJAL MZ D23 LOTE 17 SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17028', NULL, 'ALVAREZ CALDERON ROSA', '', '10078107931', '', '', 'JR MILITON CARBAJAL MZ D23 LOTE 17 SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17029', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17030', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17031', NULL, 'JULISA RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17032', NULL, 'JULISA RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17033', NULL, 'JULISA RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17034', NULL, 'MARISOL GLADIS CAPCHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17035', NULL, 'REBECA GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17036', NULL, 'MELISA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17037', NULL, 'yuliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17038', NULL, 'roy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17039', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17040', NULL, 'nandy arroyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17041', NULL, 'ivone mporeno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17042', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17043', NULL, 'ricardo velasquez hualpa', '72308178', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17044', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17045', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17046', NULL, 'isabel ma san', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17047', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17048', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17049', NULL, 'marlene flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17050', NULL, 'MAICOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17051', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17052', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17053', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17054', NULL, 'julio contreras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17055', NULL, 'julio contreras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17056', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17057', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17058', NULL, 'jesica lavado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17059', NULL, 'jesica lavado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17060', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17061', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17062', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17063', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17064', NULL, 'JULIO CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17065', NULL, 'MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17066', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17067', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17068', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17069', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17070', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17071', NULL, 'carlos cisneros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17072', NULL, 'carlos cisneros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17073', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17074', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17075', NULL, 'alejandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17076', NULL, 'alejandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17077', NULL, 'alejandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17078', NULL, 'alberto delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17079', NULL, 'alberto delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17080', NULL, 'alberto delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17081', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17082', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17083', NULL, 'MIRNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17084', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17085', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17086', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17087', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17088', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17089', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17090', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17091', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17092', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17093', NULL, 'BENJAMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17094', NULL, 'BENJAMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17095', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17096', NULL, 'ADELA LA CERNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17097', NULL, 'YOLANDA CIFUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17098', NULL, 'YOLANDA CIFUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17099', NULL, 'teodoro adolfo paccho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17100', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17101', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17102', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17103', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17104', NULL, 'fernanda chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17105', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17106', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17107', NULL, 'lucia zambrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17108', NULL, 'lucia zambrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17109', NULL, 'bacilio ramirez', '08509058', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17110', NULL, 'maria rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17111', NULL, 'maria rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17112', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17113', NULL, 'ana grados', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17114', NULL, 'ABRAHAM ulloa leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17115', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17116', NULL, 'SULLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17117', NULL, 'SULLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17118', NULL, 'SULLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17119', NULL, 'sully', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17120', NULL, 'sully', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17121', NULL, 'sully', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17122', NULL, 'BEATRIZ CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17123', NULL, 'DOMINGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17124', NULL, 'DOMINGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17125', NULL, 'DOMINGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17126', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17127', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17128', NULL, 'OLMEDO URBANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17129', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17130', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17131', NULL, 'ALBERTO SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17132', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17133', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17134', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17135', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17136', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17137', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17138', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17139', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17140', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17141', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17142', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17143', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17144', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17145', NULL, 'MALDONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17146', NULL, 'MALDONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17147', NULL, 'angelica chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17148', NULL, 'angelica chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17149', NULL, 'CARDENAS PEREZ ROSMIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17150', NULL, 'CARDENAS PEREZ ROSMIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17151', NULL, 'CARDENAS PEREZ ROSMIL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17152', NULL, 'MMARAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17153', NULL, 'MMARAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17154', NULL, 'GINA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17155', NULL, 'GINA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17156', NULL, 'GINA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17157', NULL, 'MERCEDES GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17158', NULL, 'MERCEDES GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17159', NULL, 'MERCEDES GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17160', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17161', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17162', NULL, 'luis carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17163', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17164', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17165', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17166', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17167', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17168', NULL, 'milagros puma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17169', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17170', NULL, 'OSWALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17171', NULL, 'OSWALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17172', NULL, 'OSWALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17173', NULL, 'OSWALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17174', NULL, 'gerson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17175', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17176', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17177', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17178', NULL, 'JAQUELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17179', NULL, 'JAQUELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17180', NULL, 'JAQUELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17181', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17182', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17183', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17184', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17185', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17186', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17187', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17188', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17189', NULL, 'delia quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17190', NULL, 'delia quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17191', NULL, 'carmen rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17192', NULL, 'carmen rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17193', NULL, 'martha chuquivalamas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17194', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17195', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17196', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17197', NULL, 'jhoni parra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17198', NULL, 'EBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17199', NULL, 'maria teresa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17200', NULL, 'manolo rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17201', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17202', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17203', NULL, 'nataly tejada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17204', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17205', NULL, 'christian masquez', '25839556', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17206', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17207', NULL, 'ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17208', NULL, 'REQUEZ VEGA MACEDONIO ANTONIO', '', '10327304467', '', '', 'JR. 6 DE JUNIO 226 SAN LUIS ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17209', NULL, 'CINTIA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17210', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17211', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17212', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17213', NULL, 'belen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17214', NULL, 'belen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17215', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17216', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17217', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17218', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17219', NULL, 'FLORESMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17220', NULL, 'FLORESMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17221', NULL, 'FLORESMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17222', NULL, 'ROSA PASCUAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17223', NULL, 'ROSA PASCUAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17224', NULL, 'ROSA PASCUAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17225', NULL, 'FLORESMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17226', NULL, 'FLORESMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17227', NULL, 'FLORESMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17228', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17229', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17230', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17231', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17232', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17233', NULL, 'KATHERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17234', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17235', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17236', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17237', NULL, 'JOVITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17238', NULL, 'JOVITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17239', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17240', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17241', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17242', NULL, 'GLORIA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17243', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17244', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17245', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17246', NULL, 'LUCIA DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17247', NULL, 'JHON ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17248', NULL, 'JHON ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17249', NULL, 'JHON ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17250', NULL, 'MANUEL CALDAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17251', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17252', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17253', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17254', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17255', NULL, 'JERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17256', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17257', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17258', NULL, 'HUMBERTO SIFUENTES ESTRADA', '07224641', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17259', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17260', NULL, 'ALAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17261', NULL, 'YULI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17262', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17263', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17264', NULL, 'MAQUIRED EXPORT SOCIEDAD ANONIMA CERRADA', '', '20525147119', '', '', 'CAL.DEMOCRACIA NRO. 168 INT. PIS3 (CRUCE AV PACIFICO CON AV CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17265', NULL, 'MARIA', '00000000', '', '', '', 'CAL.DEMOCRACIA NRO. 168 INT. PIS3 (CRUCE AV PACIFICO CON AV CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17266', NULL, 'MARIA', '00000000', '', '', '', 'CAL.DEMOCRACIA NRO. 168 INT. PIS3 (CRUCE AV PACIFICO CON AV CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17267', NULL, 'CARLOS VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17268', NULL, 'CARLOS VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17269', NULL, 'CARLOS VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17270', NULL, 'JULISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17271', NULL, 'JULISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17272', NULL, 'JULISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17273', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17274', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17275', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17276', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17277', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17278', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17279', NULL, 'CRISTHIAN aguado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17280', NULL, 'CRISTHIAN aguado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17281', NULL, 'ana bereche sernaque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17282', NULL, 'ana bereche sernaque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17283', NULL, 'ana bereche sernaque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17284', NULL, 'ana bereche sernaque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17285', NULL, 'ana tarazona', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17286', NULL, 'ana tarazona', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17287', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17288', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17289', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17290', NULL, 'sonia diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17291', NULL, 'sonia diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17292', NULL, 'sonia diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17293', NULL, 'SARA MATOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17294', NULL, 'SARA MATOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17295', NULL, 'nayeli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17296', NULL, 'nayeli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17297', NULL, 'ricardo vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17298', NULL, 'ricardo vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17299', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17300', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17301', NULL, 'SAAVEDRA DEL AGUILA JOSE RIVELINO', '', '10411271353', '', '', 'JR LAS GALITAS 580 SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17302', NULL, 'YULISA AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17303', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17304', NULL, 'PEDRO SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17305', NULL, 'PEDRO SOTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17306', NULL, 'BERNUY FLORES BERNARDO ABAD', '', '10324895880', '', '', 'MZ W LOTE 19 PROYECTO PILOTO SECTOR E4 VENTANILLA CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17307', NULL, 'CARLOSQUISPE', '00000000', '', '', '', 'MZ W LOTE 19 PROYECTO PILOTO SECTOR E4 VENTANILLA CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17308', NULL, 'CARLOSQUISPE', '00000000', '', '', '', 'MZ W LOTE 19 PROYECTO PILOTO SECTOR E4 VENTANILLA CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17309', NULL, 'CARLOSQUISPE', '00000000', '', '', '', 'MZ W LOTE 19 PROYECTO PILOTO SECTOR E4 VENTANILLA CALLAO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17310', NULL, 'MARCELINA LEGUIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17311', NULL, 'RENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17312', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17313', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17314', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17315', NULL, 'JESUS FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17316', NULL, 'JESUS FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17317', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17318', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17319', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17320', NULL, 'WILINTON DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17321', NULL, 'WILINTON DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17322', NULL, 'WILINTON DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17323', NULL, 'GIMY SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17324', NULL, 'ANAMELBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17325', NULL, 'conseccionrojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17326', NULL, 'maria ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17327', NULL, 'betha medina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17328', NULL, 'roman aibar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17329', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17330', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17331', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17332', NULL, 'JAIME LINARES', '08623378', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17333', NULL, 'FILKER LLACTAHUAMAN PEREZ', '74039484', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17334', NULL, 'MARICARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17335', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17336', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17337', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17338', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17339', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17340', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17341', NULL, 'YANINA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17342', NULL, 'YANINA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17343', NULL, 'YANINA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17344', NULL, 'ROCIO  GILVONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17345', NULL, 'LUIS MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17346', NULL, 'CIX CORPORATION SERVICIOS SOCIEDAD ANONIMA CERRADA', '', '20535727075', '', '', 'CAL.PUERTO ETEN NRO. 190 DPTO. 514 C.H. PUERTO ETEN BLOCK G LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17347', NULL, 'GLENDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17348', NULL, 'mariza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17349', NULL, 'mariza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17350', NULL, 'JUAN VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17351', NULL, 'JUAN VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17352', NULL, 'JUAN VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17353', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17354', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17355', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17356', NULL, 'NANCY SALAZAR SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17357', NULL, 'maria torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17358', NULL, 'maria torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17359', NULL, 'LUCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17360', NULL, 'LUCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17361', NULL, 'LUCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17362', NULL, 'LUCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17363', NULL, 'LUCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17364', NULL, 'LUCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17365', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17366', NULL, 'MARTHA HERRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17367', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17368', NULL, 'JUANA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17369', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17370', NULL, 'JHONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17371', NULL, 'JHONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17372', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17373', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17374', NULL, 'violeta oyarce', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17375', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17376', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17377', NULL, 'GEORGINA DEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17378', NULL, 'KATY ZARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17379', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17380', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17381', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17382', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17383', NULL, 'GERAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17384', NULL, 'GERALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17385', NULL, 'GERALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17386', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17387', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17388', NULL, 'IVAN TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17389', NULL, 'DAVID ASIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17390', NULL, 'JESUS MOLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17391', NULL, 'YOLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17392', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17393', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17394', NULL, 'LIZ ANGELES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17395', NULL, 'jesus cuevas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17396', NULL, 'NIELS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17397', NULL, 'NIELS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17398', NULL, 'NIELS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17399', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17400', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17401', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17402', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17403', NULL, 'JORGE SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17404', NULL, 'JORGE SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17405', NULL, 'JORGE SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17406', NULL, 'GIOVANA   GAMARRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17407', NULL, 'PILAR CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17408', NULL, 'PILAR CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17409', NULL, 'PILAR CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17410', NULL, 'COMACHAGUA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17411', NULL, 'COMACHAGUA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17412', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17413', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17414', NULL, 'yahandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17415', NULL, 'yahandra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17416', NULL, 'IRENE RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17417', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17418', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17419', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17420', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17421', NULL, 'MARIA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17422', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17423', NULL, 'esperanza tafur', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17424', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17425', NULL, 'ARANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17426', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17427', NULL, 'ANGELA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17428', NULL, 'LUZMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17429', NULL, 'JORGE VELES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17430', NULL, 'ROMAN JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17431', NULL, 'LOURDES CASTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17432', NULL, 'LUZMILA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17433', NULL, 'LUZMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17434', NULL, 'ENOE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17435', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17436', NULL, 'LILIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17437', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17438', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17439', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17440', NULL, 'SABOGAL ALVARO KAREN MELINA', '', '10104515229', '', '', 'EMETERIO PEREZ #360 S.M.P -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17441', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17442', NULL, 'SINCHITULLO LLANTOY AMADOR', '', '10277252240', '', '', 'AV. MESONES MESONES MURO #192 JAEN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17443', NULL, '- SINCHITULLO LLANTOY AMADOR', '--', '', '', '', 'AV. MESONES MESONES MURO #192 JAEN', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17444', NULL, 'SINCHITULLO LLANTOY AMADOR', '', '10277252240', '', '', 'AV. MESONES MESONES MURO #192 JAEN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17445', NULL, 'SINCHITULLO LLANTOY AMADOR', '', '10277252240', '', '', 'AV. MESONES MESONES MURO #192 JAEN', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17446', NULL, 'TERESA DIAZ', '00000000', '', '', '', 'JR. HUANCAVE', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17447', NULL, 'JOSE SOSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17448', NULL, 'EDUARDO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17449', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17450', NULL, 'NADIA IMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17451', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17452', NULL, 'YOLANDA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17453', NULL, 'MARIA JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17454', NULL, 'MARIA JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17455', NULL, 'MARIA JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17456', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17457', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17458', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17459', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17460', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17461', NULL, 'MARICARMEN RUEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17462', NULL, 'MARICARMEN RUEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17463', NULL, 'MARICARMEN RUEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17464', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17465', NULL, 'ERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17466', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17467', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17468', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17469', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17470', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17471', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17472', NULL, 'nely', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17473', NULL, 'nely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17474', NULL, 'raul romani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17475', NULL, 'raul romani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17476', NULL, 'susy rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17477', NULL, 'susy rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17478', NULL, 'susy rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17479', NULL, 'susy rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17480', NULL, 'carlos jarallo', '47898535', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17481', NULL, 'carlos jarallo', '47898535', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17482', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17483', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17484', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17485', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17486', NULL, 'SILVIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17487', NULL, 'TORRES PABLO FELIX CLEMENTE', '', '10040048354', '', '', 'JR HUAMACHUCHO 262A CERRO DE PASCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17488', NULL, 'JORGE GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17489', NULL, 'JORGE GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17490', NULL, 'JORGE GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17491', NULL, 'nori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17492', NULL, 'nori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17493', NULL, 'nori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17494', NULL, 'YAULI TACILLO MILAGROS', '', '10106449801', '', '', 'MZ B LOTE 01A A.H.HEROES DE SAN JUAN SC 06 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17495', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17496', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17497', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17498', NULL, 'PALOMINO LOZA LUZ LIDES', '', '10063621078', '', '', 'AV LAS AMERICAS 1404 PISCO- ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17499', NULL, 'PALOMINO LOZA LUZ LIDES', '', '10063621078', '', '', 'AV LAS AMERICAS 1404 PISCO- ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17500', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17501', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17502', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17503', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17504', NULL, 'WILLY', '00000000', '', '', '', 'AV LAS AMERICAS 1404 PISCO- ICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17505', NULL, 'WILLY', '00000000', '', '', '', 'AV LAS AMERICAS 1404 PISCO- ICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17506', NULL, 'WILLY', '00000000', '', '', '', 'AV LAS AMERICAS 1404 PISCO- ICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17507', NULL, 'WILLY', '00000000', '', '', '', 'AV LAS AMERICAS 1404 PISCO- ICA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17508', NULL, 'MATEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17509', NULL, 'MATEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17510', NULL, 'MATEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17511', NULL, 'MATEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17512', NULL, 'NELIDA OSPINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17513', NULL, 'MONICA INFANSON ALIAGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17514', NULL, 'ALEXANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17515', NULL, 'ALEXANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17516', NULL, 'ALEXANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17517', NULL, 'MILAGROS MARIBEL PLAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17518', NULL, 'YOLANA HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17519', NULL, 'YOLANA HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17520', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17521', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17522', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17523', NULL, 'JULIA PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17524', NULL, 'JULIA PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17525', NULL, 'JULIA PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17526', NULL, 'esteban gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17527', NULL, 'trujillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17528', NULL, 'pedro rodas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17529', NULL, 'juan palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17530', NULL, 'alison', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17531', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17532', NULL, 'jorge moran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17533', NULL, 'juliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17534', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17535', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17536', NULL, 'sotomayor alfredo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17537', NULL, 'DANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17538', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17539', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17540', NULL, 'mario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17541', NULL, 'ANI CADENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17542', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17543', NULL, 'MARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17544', NULL, 'ADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17545', NULL, 'brygith', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17546', NULL, 'INOCENCIO RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17547', NULL, 'ERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17548', NULL, 'mendoza cordova', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17549', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17550', NULL, 'ALVARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17551', NULL, 'rosa vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17552', NULL, 'sharo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17553', NULL, 'GIOANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17554', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17555', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17556', NULL, 'GIANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17557', NULL, 'ROSARIO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17558', NULL, 'ROSARIO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17559', NULL, 'ROSARIO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17560', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17561', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17562', NULL, 'vicky', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17563', NULL, 'vicky', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17564', NULL, 'vicky', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17565', NULL, 'VICKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17566', NULL, 'VICKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17567', NULL, 'jose asnaran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17568', NULL, 'jose asnaran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17569', NULL, 'jose asnaran', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17570', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17571', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17572', NULL, 'denis sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17573', NULL, 'denis sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17574', NULL, 'hugo salinas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17575', NULL, 'hugo salinas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17576', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17577', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17578', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17579', NULL, 'ROBERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17580', NULL, 'ROBERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17581', NULL, 'ROBERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17582', NULL, 'julia almeida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17583', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17584', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17585', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17586', NULL, 'azucena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17587', NULL, 'azucena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17588', NULL, 'azucena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17589', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17590', NULL, 'ISABEL LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17591', NULL, 'milagritos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17592', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17593', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17594', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17595', NULL, 'debora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17596', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17597', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17598', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17599', NULL, 'FELIX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17600', NULL, 'LAREDO MENDIETA ADLER NEMECIO', '', '10181659926', '', '', 'av. victor raul #387 mcdo sta rosa chao- viru', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17601', NULL, 'ROCIO ARIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17602', NULL, 'CARLOS LAZARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17603', NULL, 'CARLOS LAZARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17604', NULL, 'JOVITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17605', NULL, 'victor puya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17606', NULL, 'yahaira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17607', NULL, 'CARLOS PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17608', NULL, 'CARLOS PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17609', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17610', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17611', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17612', NULL, 'joseluis paredes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17613', NULL, 'MARIAmaribel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17614', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17615', NULL, 'TECNOLOGOS PERU E.I.R.L.', '', '20603504969', '', '', 'JR. CARLOS GUTIERREZ NRO. 421 (ALT. CUADRA 17 DE PARINACOCHAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17616', NULL, 'CESAR', '00000000', '', '', '', 'JR. CARLOS GUTIERREZ NRO. 421 (ALT. CUADRA 17 DE PARINACOCHAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17617', NULL, 'CESAR', '00000000', '', '', '', 'JR. CARLOS GUTIERREZ NRO. 421 (ALT. CUADRA 17 DE PARINACOCHAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17618', NULL, 'CESAR', '00000000', '', '', '', 'JR. CARLOS GUTIERREZ NRO. 421 (ALT. CUADRA 17 DE PARINACOCHAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17619', NULL, 'fernado cholan', '00000000', '', '', '', 'JR. CARLOS GUTIERREZ NRO. 421 (ALT. CUADRA 17 DE PARINACOCHAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17620', NULL, 'fernado cholan', '00000000', '', '', '', 'JR. CARLOS GUTIERREZ NRO. 421 (ALT. CUADRA 17 DE PARINACOCHAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17621', NULL, 'fernado cholan', '00000000', '', '', '', 'JR. CARLOS GUTIERREZ NRO. 421 (ALT. CUADRA 17 DE PARINACOCHAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17622', NULL, 'arcadio mena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17623', NULL, 'arcadio mena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17624', NULL, 'marco vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17625', NULL, 'sharo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17626', NULL, 'francisco malpartida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17627', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17628', NULL, 'FRANCISCO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17629', NULL, 'FRANCISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17630', NULL, 'JUAN ALMORA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17631', NULL, 'FREDY CERDAN', '43647711', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17632', NULL, 'romy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17633', NULL, 'HERDULFA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17634', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17635', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17636', NULL, 'SOLEDADA MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17637', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17638', NULL, 'PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17639', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17640', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17641', NULL, 'ALEX MAYLON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17642', NULL, 'ERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17643', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17644', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17645', NULL, 'SAUL VATGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17646', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17647', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17648', NULL, 'FLORINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17649', NULL, 'MIRIAM HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17650', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17651', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17652', NULL, 'AIDEE AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17653', NULL, 'ORTEGA MATOS ABEL CESAR', '', '10742343745', '', '', 'JR. HUALLAYCO CDRA 8 PUESTO 630 HUANUCO-HUANUCO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17654', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17655', NULL, 'MIRKA', '00000000', '', '', '', 'JR. HUALLAYCO CDRA 8 PUESTO 630 HUANUCO-HUANUCO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17656', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17657', NULL, 'LIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17658', NULL, 'NICOLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17659', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17660', NULL, 'MARIA INGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17661', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17662', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17663', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17664', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17665', NULL, 'ANGELICA BLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17666', NULL, 'JAQUELINE OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17667', NULL, 'JAQUELINE OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17668', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17669', NULL, 'SABINA MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17670', NULL, 'MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17671', NULL, 'MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17672', NULL, 'MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17673', NULL, 'SUCLLA LARTIGA EDGARD RENATO', '', '10467887519', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17674', NULL, 'fresia quispe', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17675', NULL, 'fresia quispe', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17676', NULL, 'fresia quispe', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17677', NULL, 'GUSTAVO', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17678', NULL, 'GUSTAVO', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17679', NULL, 'MARTIN MOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17680', NULL, 'nieves', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17681', NULL, 'ALEXANDRA VALERIA BOJORQUEZ CARLOS', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17682', NULL, 'CRISTEL', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17683', NULL, 'EDMUNDO RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17684', NULL, 'JORGE', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17685', NULL, 'ERICK', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17686', NULL, 'ERICK', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17687', NULL, 'ERICK', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17688', NULL, 'LILIANA HURTADO', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17689', NULL, 'LILIANA HURTADO', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17690', NULL, 'LILIANA HURTADO', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17691', NULL, 'JORGE SALVADOR', '00000000', '', '', '', 'CALLE PIEDRA REDONDA MZ C9 LT 14 LOS CEDROS DE VILLA CHORRILLOS- LIMA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17692', NULL, 'MARZANO FULL INJECTION S.A.C.', '', '20551106978', '', '', 'AV. IQUITOS NRO. 169 INT. 1 (TIENDA 10) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17693', NULL, 'MAURO', '00000000', '', '', '', 'AV. IQUITOS NRO. 169 INT. 1 (TIENDA 10) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17694', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17695', NULL, 'jovita de ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17696', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17697', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17698', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17699', NULL, 'luis almeida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17700', NULL, 'jose claros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17701', NULL, 'ester laureano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17702', NULL, 'OLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17703', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17704', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17705', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17706', NULL, 'ALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17707', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17708', NULL, 'michael velasque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17709', NULL, 'sonia marquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17710', NULL, 'patricia santillana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17711', NULL, 'ELBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17712', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17713', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17714', NULL, 'janeth montero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17715', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17716', NULL, 'OFELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17717', NULL, 'marlon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17718', NULL, 'roberto sotelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17719', NULL, 'pedro sotelo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17720', NULL, 'pamela rondon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17721', NULL, 'ALEJANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17722', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17723', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17724', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17725', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17726', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17727', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17728', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17729', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17730', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17731', NULL, 'kenya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17732', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17733', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17734', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17735', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17736', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17737', NULL, 'fortunata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17738', NULL, 'fortunata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17739', NULL, 'ana marin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17740', NULL, 'zenaida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17741', NULL, 'isada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17742', NULL, 'estelita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17743', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17744', NULL, 'rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17745', NULL, 'gionana  espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17746', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17747', NULL, 'aida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17748', NULL, 'rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17749', NULL, 'INDUSTRIA IMPERIAL S.A.C.', '', '20537036312', '', '', 'AV. ANDRÉS AVELINO CÁCERES MZA. B LOTE. 10 (A ESPALDA DE ELECTRO PERÚ) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17750', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17751', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17752', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17753', NULL, 'maria de cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17754', NULL, 'noemi suarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17755', NULL, 'noemi suarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17756', NULL, 'noemi suarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17757', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17758', NULL, 'paola quevedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17759', NULL, 'paola quevedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17760', NULL, 'jorge suarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17761', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17762', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17763', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17764', NULL, 'francisca leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17765', NULL, 'rosa orbeso', '04050044', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17766', NULL, 'DANITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17767', NULL, 'DANITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17768', NULL, 'CARLOS GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17769', NULL, 'VICTOR MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17770', NULL, 'iara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17771', NULL, 'MARIA GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17772', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17773', NULL, 'DIANA CHAUPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17774', NULL, 'VANESA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17775', NULL, 'VANESA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17776', NULL, 'MARCOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17777', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17778', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17779', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17780', NULL, 'LUBI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17781', NULL, 'IMPOT. GABY E.I.R.L', '', '20519938457', '', '', 'JR. PUNO 647 INT 107 LIMA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17782', NULL, 'cecilia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17783', NULL, 'marina gusman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17784', NULL, 'marina gusman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17785', NULL, 'josene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17786', NULL, 'josene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17787', NULL, 'josene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17788', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17789', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17790', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17791', NULL, 'FREDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17792', NULL, 'CHABELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17793', NULL, 'ena alegre', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17794', NULL, 'paola  chin', '44484843', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17795', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17796', NULL, 'oviedo luque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17797', NULL, 'luque oviedo', '42510999', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17798', NULL, 'VILMA INOCENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17799', NULL, 'MARIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17800', NULL, 'MARIA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17801', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17802', NULL, 'ana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17803', NULL, 'ronan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17804', NULL, 'ronan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17805', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17806', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17807', NULL, 'paulina cortez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17808', NULL, 'jhon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17809', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17810', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17811', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17812', NULL, 'andres luciano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17813', NULL, 'andres luciano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17814', NULL, 'VARGAS LAURENTE CONSTRUCTORA E.I.R.L.', '', '20568518102', '', '', 'CAL.GUILLERMO ALMENARA NRO. 171 (FRENTE A LA PUERTA DE EMERGENCIA ESSALUD) JUNIN - HUANCAYO - EL TAMBO', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17815', NULL, 'dan perez pinedo', '00000000', '', '', '', 'CAL.GUILLERMO ALMENARA NRO. 171 (FRENTE A LA PUERTA DE EMERGENCIA ESSALUD) JUNIN - HUANCAYO - EL TAMBO', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17816', NULL, 'lus alcantara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17817', NULL, 'lus alcantara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17818', NULL, 'edgar morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17819', NULL, 'patricia palacios', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17820', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17821', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17822', NULL, 'rolando mogollon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17823', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17824', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17825', NULL, 'DEVORA TEMPLE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17826', NULL, 'DEVORA TEMPLE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17827', NULL, 'marlene mejia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17828', NULL, 'MILAGRINA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17829', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17830', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17831', NULL, 'carlos calderon zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17832', NULL, 'carlos calderon zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17833', NULL, 'carlos calderon zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17834', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17835', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17836', NULL, 'ROGELIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17837', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17838', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17839', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17840', NULL, 'ROSA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17841', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17842', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17843', NULL, 'JENNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17844', NULL, 'gustavo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17845', NULL, 'MAGALY ACOSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17846', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17847', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17848', NULL, 'ELMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17849', NULL, 'ADA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '0', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17850', NULL, 'ada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17851', NULL, 'irina tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17852', NULL, 'MARLENE CORTEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17853', NULL, 'LUZ MARIA SEMINARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17854', NULL, 'ELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17855', NULL, 'DIANE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17856', NULL, 'ANA MAGALLANES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17857', NULL, 'ELIZABETH INFANTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17858', NULL, 'MARIA MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17859', NULL, 'CRISTINA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17860', NULL, 'CORPECH S.A.C.', '', '20545360200', '', '', 'AV. MEXICO NRO. 1930 INT. A LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17861', NULL, 'julissa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17862', NULL, 'LUIS TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17863', NULL, 'AMPARO BAZAN', '00000000', '', '', '', 'AV. MEXICO NRO. 1930 INT. A LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17864', NULL, 'ASCONA HERRERA EVELYN LIDIA', '', '10439527736', '', '', 'AV. SAN MARTIN # 129 CHINCHA ALTA-ICA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17865', NULL, 'HECTPR VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17866', NULL, 'GLADYS ZARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17867', NULL, 'GLENY HUARCAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17868', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17869', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17870', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17871', NULL, 'EDR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17872', NULL, 'EDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17873', NULL, 'ROCIO GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17874', NULL, 'INVESTMENTS RMB S.A.C.', '', '20603603681', '', '', 'CAL.ASUNCION NRO. 156 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17875', NULL, 'INVESTMENTS RMB S.A.C.', '', '20603603681', '', '', 'CAL.ASUNCION NRO. 156 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17876', NULL, 'MONICA', '00000000', '', '', '', 'CAL.ASUNCION NRO. 156 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17877', NULL, 'MONICA', '00000000', '', '', '', 'CAL.ASUNCION NRO. 156 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17878', NULL, 'INVESTMENTS RMB S.A.C.', '', '20603603681', '', '', 'CAL.ASUNCION NRO. 156 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17879', NULL, 'INVESTMENTS RMB S.A.C.', '', '20603603681', '', '', 'CAL.ASUNCION NRO. 156 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17880', NULL, 'INVESTMENTS RMB S.A.C.', '', '20603603681', '', '', 'CAL.ASUNCION NRO. 156 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17881', NULL, 'INVESTMENTS RMB S.A.C.', '', '20603603681', '', '', 'CAL.ASUNCION NRO. 156 URB. SANTA PATRICIA ET. UNO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17882', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17883', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17884', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17885', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17886', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17887', NULL, 'MARIA VASQUES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17888', NULL, 'JUAN GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17889', NULL, 'MIRIAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17890', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17891', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17892', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17893', NULL, 'JOSEPH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17894', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17895', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17896', NULL, 'FLORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17897', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17898', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17899', NULL, 'FLORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17900', NULL, 'YESI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17901', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17902', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17903', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17904', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17905', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17906', NULL, 'karin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17907', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17908', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17909', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17910', NULL, 'JOSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17911', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17912', NULL, 'HERMINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17913', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17914', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17915', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17916', NULL, 'FRANCISCO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17917', NULL, 'ROCIO GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17918', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17919', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17920', NULL, 'GIAN CARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17921', NULL, 'carmen escriba', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17922', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17923', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17924', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17925', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17926', NULL, 'LUIS PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17927', NULL, 'ESTRELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17928', NULL, 'yanet rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17929', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17930', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17931', NULL, 'genoveba', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17932', NULL, 'dina estrada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17933', NULL, 'JUANA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17934', NULL, 'azañero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17935', NULL, 'sergio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17936', NULL, 'eber', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17937', NULL, 'valentina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17938', NULL, 'carol', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17939', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17940', NULL, 'ONCOLOGIA GRUPO ESPECIALIZADO EN SALUD SOCIEDAD ANONIMA', '', '20543708497', '', '', 'JR. CONRAY GRANDE NRO. 4859 URB. PARQUE EL NARANJAL 2DA ET (AV NARANJAL CDRA 12) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17941', NULL, 'cira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17942', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17943', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17944', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17945', NULL, 'de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17946', NULL, 'de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17947', NULL, 'de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17948', NULL, 'de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17949', NULL, 'de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17950', NULL, 'JUAN LAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17951', NULL, 'JUAN LAZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17952', NULL, 'ANA LUZ CELIS VALDIVIA', '22498025', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17953', NULL, 'ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17954', NULL, 'wendy mateo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17955', NULL, 'mariza  raymundo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17956', NULL, 'doria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17957', NULL, 'cecilia cordova', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17958', NULL, 'zoila ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17959', NULL, 'juan carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17960', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17961', NULL, 'marco vera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17962', NULL, 'lourdes palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17963', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17964', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17965', NULL, 'robeth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17966', NULL, 'INGRID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17967', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17968', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17969', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17970', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17971', NULL, 'MARIA ELENA HINOSTROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17972', NULL, 'elio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17973', NULL, 'elio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17974', NULL, 'GISELA REYNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17975', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17976', NULL, 'alberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17977', NULL, 'ISABEL RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17978', NULL, 'PRISCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17979', NULL, 'PRISCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17980', NULL, 'JUA GUERRERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17981', NULL, 'JUAN GUERRERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17982', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17983', NULL, 'ARMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17984', NULL, 'AIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17985', NULL, 'victor venegas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17986', NULL, 'vanesa zuñiga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17987', NULL, 'enma ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17988', NULL, 'leonidas gil sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17989', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17990', NULL, 'maria ines aguilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17991', NULL, 'juan jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17992', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17993', NULL, 'celestial', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17994', NULL, 'diana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17995', NULL, 'OLGA SAMUDIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17996', NULL, 'MARCO BALDEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17997', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17998', NULL, 'CONSUELO CASAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('17999', NULL, 'NORMA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18000', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18001', NULL, 'CELESTIAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18002', NULL, 'ELENA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18003', NULL, 'JOSE LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18004', NULL, 'BLANCA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18005', NULL, 'OSWALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18006', NULL, 'ALFREDO ALTAMIRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18007', NULL, 'ELEAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18008', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18009', NULL, 'ROBLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18010', NULL, 'diana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18011', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18012', NULL, 'VICTOR PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18013', NULL, 'VICTOR PEÑA', '22307307', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18014', NULL, 'RITA PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18015', NULL, 'JUAN MORALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18016', NULL, 'LIZETH', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18017', NULL, 'andre nieto', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18018', NULL, 'andre nieto', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18019', NULL, 'andre nieto', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18020', NULL, 'KATHERIN', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18021', NULL, 'KATHERIN', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18022', NULL, 'KATHERIN', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18023', NULL, 'maria calvo', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18024', NULL, 'maria calvo', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18025', NULL, 'maria calvo', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18026', NULL, 'maria garcia', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18027', NULL, 'maria garcia', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18028', NULL, 'MEDALIT RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18029', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18030', NULL, 'ZELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18031', NULL, 'ROSA', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18032', NULL, 'ROSA', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18033', NULL, 'ROSA', '00000000', '', '', '', 'PISCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18034', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18035', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18036', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18037', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18038', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18039', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18040', NULL, 'melisa villan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18041', NULL, 'melisa villan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18042', NULL, 'melisa villan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18043', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18044', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18045', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18046', NULL, 'olga quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18047', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18048', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18049', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18050', NULL, 'MULTICENTRO EL OVALO DE WILLIAMS S.R.L', '', '20393294419', '', '', 'PJ. MARIANO CARDENAS NRO. 181 (ALTURA DEL HUEQUITO (JR.SUCRE CDRA 7)) UCAYALI - CORONEL PORTILLO - CALLERIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18051', NULL, 'MULTICENTRO EL OVALO DE WILLIAMS S.R.L', '', '20393294419', '', '', 'PJ. MARIANO CARDENAS NRO. 181 (ALTURA DEL HUEQUITO (JR.SUCRE CDRA 7)) UCAYALI - CORONEL PORTILLO - CALLERIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18052', NULL, 'samuel climaco herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18053', NULL, 'WOLFANG FREITANG', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18054', NULL, 'francisco cuba', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18055', NULL, 'fernando perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18056', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18057', NULL, 'fernando rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18058', NULL, 'vilfredo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18059', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18060', NULL, 'eduar vega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18061', NULL, 'jose huapalla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18062', NULL, 'renee', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18063', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18064', NULL, 'JANETH VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18065', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18066', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18067', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18068', NULL, 'SANDOVAL PACHECO JAIME', '', '10097389778', '', '', 'JR LOS TORNOS 224- NARANJAL- INDEPENDENCIA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18069', NULL, 'fernando perez', '00000000', '', '', '', 'JR LOS TORNOS 224- NARANJAL- INDEPENDENCIA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18070', NULL, 'fernando perez', '00000000', '', '', '', 'JR LOS TORNOS 224- NARANJAL- INDEPENDENCIA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18071', NULL, 'fernando perez', '00000000', '', '', '', 'JR LOS TORNOS 224- NARANJAL- INDEPENDENCIA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18072', NULL, 'yolanda', '00000000', '', '', '', 'JR LOS TORNOS 224- NARANJAL- INDEPENDENCIA- LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18073', NULL, 'MERY VILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18074', NULL, 'ORTENSIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18075', NULL, 'MERY VILCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18076', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18077', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18078', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18079', NULL, 'LUISA FERREYRO GUILLEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18080', NULL, 'LUISA FERREYRO GUILLEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18081', NULL, 'LUISA FERREYRO GUILLEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18082', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18083', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18084', NULL, 'wilian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18085', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18086', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18087', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18088', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18089', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18090', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18091', NULL, 'ALDEBARAN CATERING Y EVENTOS SOCIEDAD ANONIMA CERRADA -', '', '20521809885', '', '', 'AV. EL DERBY NRO. S/N (PUERTA 3 CENTRO DE ESPARCIMIENTO JCP) LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18092', NULL, 'EPIFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18093', NULL, 'EPIFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18094', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18095', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18096', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18097', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18098', NULL, 'BEJAMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18099', NULL, 'BEJAMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18100', NULL, 'BEJAMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18101', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18102', NULL, 'PERCY PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18103', NULL, 'PERCY PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18104', NULL, 'PERCY PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18105', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18106', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18107', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18108', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18109', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18110', NULL, 'luis herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18111', NULL, 'luis herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18112', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18113', NULL, 'DENNIS CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18114', NULL, 'FELIX ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18115', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18116', NULL, 'IDEAS PETROQUIMICAS Y DERIVADAS S.A.C', '', '20544307445', '', '', 'AV. LOS CISNES NRO. 336 URB. LOS HUERTOS DE HUACHIPA (ALTURA CEMENTERIO CAMPO FE) LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18117', NULL, 'GLADYS PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18118', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18119', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18120', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18121', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18122', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18123', NULL, 'GISELA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18124', NULL, 'GISELA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18125', NULL, 'GISELA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18126', NULL, 'JULIA VELA PATIÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18127', NULL, 'MARTHA MATTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18128', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18129', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18130', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18131', NULL, 'CESAR AUGUSTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18132', NULL, 'CESAR AUGUSTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18133', NULL, 'ROSA CASTAÑEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18134', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18135', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18136', NULL, 'IVONNE MAZZOTTI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18137', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18138', NULL, 'MAYUMI AQUINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18139', NULL, 'ESTHER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18140', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18141', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18142', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18143', NULL, 'MARIELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18144', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18145', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18146', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18147', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18148', NULL, 'TORIBIO BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18149', NULL, 'HOSPITAL SAN JOSE - CALLAO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18150', NULL, 'HOSPITAL SAN JOSE - CALLAO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18151', NULL, 'HOSPITAL SAN JOSE - CALLAO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18152', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18153', NULL, 'CINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18154', NULL, 'MUÑOZ ANGELES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18155', NULL, 'MUÑOZ ANGELES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18156', NULL, 'MUÑOZ ANGELES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18157', NULL, 'MARIA GONSALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18158', NULL, 'GABRIELA CHACHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18159', NULL, 'GABRIELA CHACHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18160', NULL, 'GABRIELA CHACHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18161', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18162', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18163', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18164', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18165', NULL, 'ronald castro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18166', NULL, 'jony salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18167', NULL, 'jony salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18168', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18169', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18170', NULL, 'laura cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18171', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18172', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18173', NULL, 'hugo morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18174', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18175', NULL, 'GIOVANA', '22103650', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18176', NULL, 'SUSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18177', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18178', NULL, 'nancy delgado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18179', NULL, 'anibal lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18180', NULL, 'ESTEPHANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18181', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18182', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18183', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18184', NULL, 'CELIA ARAUSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18185', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18186', NULL, 'ELIZABETH AVELLANEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18187', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18188', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18189', NULL, 'MANUEL GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18190', NULL, 'JEAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18191', NULL, 'ANGELO TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18192', NULL, 'alejandro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18193', NULL, 'alfredo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18194', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18195', NULL, 'giomi chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18196', NULL, 'victor montenegro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18197', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18198', NULL, 'jorge escriba', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18199', NULL, 'piero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18200', NULL, 'carolina estela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18201', NULL, 'jose', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18202', NULL, 'iris', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18203', NULL, 'BENJAMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18204', NULL, 'ANTONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18205', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18206', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18207', NULL, 'FREDY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18208', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18209', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18210', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18211', NULL, 'SUSY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18212', NULL, 'yolanda paniura', '42755503', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18213', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18214', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18215', NULL, 'amabel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18216', NULL, 'zevallos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18217', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18218', NULL, 'alicia avalos torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18219', NULL, 'BORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18220', NULL, 'boris', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18221', NULL, 'karina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18222', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18223', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18224', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18225', NULL, 'elva lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18226', NULL, 'ROJAS CAMPOS ROBIN', '', '10055818113', '', '', 'JR ARICA 322 YURIMAGUAS -LORETO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18227', NULL, 'ROJAS CAMPOS ROBIN', '', '10055818113', '', '', 'JR ARICA 320  YURIMAGUAS -LORETO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18228', NULL, 'willians santos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18229', NULL, 'LA FONTANA SAZON S.A.C.', '', '20605439056', '', '', 'AV. CANADA NRO. 1503 SANTA CATALINA LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18230', NULL, 'LA FONTANA SAZON S.A.C.', '', '20605439056', '', '', 'AV. CANADA NRO. 1503 SANTA CATALINA LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18231', NULL, 'LA FONTANA SAZON S.A.C', '', '20605439056', '', '', 'AV. CANADA NRO. 1503 SANTA CATALINA LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18232', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18233', NULL, 'gloria pariona', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18234', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18235', NULL, 'LINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18236', NULL, 'LINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18237', NULL, 'VICKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18238', NULL, 'pedro boza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18239', NULL, 'VICKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18240', NULL, 'katty', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18241', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18242', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18243', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18244', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18245', NULL, 'LEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18246', NULL, 'LEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18247', NULL, 'karla', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18248', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18249', NULL, 'ERIKA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18250', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18251', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18252', NULL, 'ANA CORDOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18253', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18254', NULL, 'maribel espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18255', NULL, 'maribel espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18256', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18257', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18258', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18259', NULL, 'MARIANELA  ZAPANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18260', NULL, 'MIGUEL DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18261', NULL, 'MIGUEL DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18262', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18263', NULL, 'KETERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18264', NULL, 'teodoro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18265', NULL, 'KATERINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18266', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18267', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18268', NULL, 'MATILLDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18269', NULL, 'joselyn', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18270', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18271', NULL, 'YAJANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18272', NULL, 'YAJANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18273', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18274', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18275', NULL, 'MARILYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18276', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18277', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18278', NULL, 'JULIO PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18279', NULL, 'JULIO PAUCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18280', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18281', NULL, 'RENE LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18282', NULL, 'RENE LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18283', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18284', NULL, 'mirian moncada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18285', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18286', NULL, 'QUISPE PALLANO', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18287', NULL, 'luder', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18288', NULL, 'luder', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18289', NULL, 'MILAGROS', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18290', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18291', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18292', NULL, 'isael sanchez dias', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18293', NULL, 'marcelina santiago', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18294', NULL, 'CAFE - RESTAURANT ALOCASIA S.A.C.', '', '20603811497', '', '', 'AV. PASEO DEL BOSQUE NRO. 389 URB. PASEO DEL BOSQUE (ALTURA CUADRA 29 AV. SAN LUIS) LIMA - LIMA - SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18295', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18296', NULL, 'MARIA BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18297', NULL, 'MARIA BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18298', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18299', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18300', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18301', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18302', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18303', NULL, 'PEREZ RIVERA DE CHAVEZ BETSABETH ROSA', '', '10095013932', '', '', 'CALLE MARISCAL SUCRE  # 100 URB SAN CAYETANO - EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18304', NULL, 'MANUEL MINCHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18305', NULL, 'INVERANDES PERU S.A.C.', '', '20534112824', '', '', 'CAL.ARISTIDES SOLOGUREN NRO. 110 URB. VILLA SOL ET. CUATRO LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18306', NULL, 'MARITZA BLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18307', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18308', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18309', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18310', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18311', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18312', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18313', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18314', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18315', NULL, 'ADA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18316', NULL, 'MARGARITA NAPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18317', NULL, 'FERNANDA MINAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18318', NULL, 'FREDDY ABANTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18319', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18320', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18321', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18322', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18323', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18324', NULL, 'EUGENIO ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18325', NULL, 'EUGENIO ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18326', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18327', NULL, 'MAMANI EUGENIO ENRIQUE', '', '10411949091', '', '', 'AV LA MOLINA 853 - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18328', NULL, 'ASTRID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18329', NULL, 'ERICKA', '00000000', '', '', '', 'AV LA MOLINA 853 - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18330', NULL, 'BERTHA HONDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18331', NULL, 'BERTHA HONDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18332', NULL, 'BERTHA HONDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18333', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18334', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18335', NULL, 'FLORENTINO DEL CASTILLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18336', NULL, 'FLORENTINO DEL CASTILLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18337', NULL, 'FLORENTINO DEL CASTILLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18338', NULL, 'ALICIA LAVADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18339', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18340', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18341', NULL, 'FELIX MEDRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18342', NULL, 'FELIX MEDRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18343', NULL, 'ROSA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18344', NULL, 'GRISELDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18345', NULL, 'GRISELDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18346', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18347', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18348', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18349', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18350', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18351', NULL, 'GISSELL PADILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18352', NULL, 'ROSA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18353', NULL, 'ANDRES CASTAÑEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18354', NULL, 'BRENDA TARAZONA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18355', NULL, 'ESMELDA VILLACORTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18356', NULL, 'ADELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18357', NULL, 'ADELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18358', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18359', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18360', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18361', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18362', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18363', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18364', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18365', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18366', NULL, 'miguel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18367', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18368', NULL, 'ESTEFANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18369', NULL, 'MERY', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18370', NULL, 'enrrique', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18371', NULL, 'BERTA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18372', NULL, 'ROSA', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18373', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18374', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18375', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18376', NULL, 'IRIS CARRILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18377', NULL, 'PILAR', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18378', NULL, 'ABRAHM LAGOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18379', NULL, 'MILAGROS', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18380', NULL, 'GUISELA', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18381', NULL, 'FRANCISCO CRESPO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18382', NULL, 'NELIDA  MERGE FLORES', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18383', NULL, 'LUISA  CHAVEZ', '32300146', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18384', NULL, 'BETSY', '43904931', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18385', NULL, 'LLUISA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18386', NULL, 'LUISA  CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18387', NULL, 'LUDMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18388', NULL, 'SONIA CHAMBI', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18389', NULL, 'CAFE - RESTAURANT ALOCASIA S.A.C.', '', '20603811497', '', '', 'AV. PASEO DEL BOSQUE NRO. 389 URB. PASEO DEL BOSQUE (ALTURA CUADRA 29 AV. SAN LUIS) LIMA - LIMA - SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18390', NULL, 'juana soto', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18391', NULL, 'EDWIN NEYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18392', NULL, 'FLORO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18393', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18394', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18395', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18396', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18397', NULL, 'GUISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18398', NULL, 'FLOR RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18399', NULL, 'FLOR RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18400', NULL, 'FLOR RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18401', NULL, 'JACKELINE JACOBI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18402', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18403', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18404', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18405', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18406', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18407', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18408', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18409', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18410', NULL, 'ruben torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18411', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18412', NULL, 'comercial urpi e.i.r.l', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18413', NULL, 'comercial urpi e.i.r.l', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18414', NULL, 'comercial urpi e.i.r.l', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18415', NULL, 'olinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18416', NULL, 'olinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18417', NULL, 'olinda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18418', NULL, 'JHON HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18419', NULL, 'JHON HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18420', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18421', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18422', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18423', NULL, 'milagros miranda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18424', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18425', NULL, 'alejandrina condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18426', NULL, 'sonia bolivar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18427', NULL, 'francis paredes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18428', NULL, 'PAMELA CARRERA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18429', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18430', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18431', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18432', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18433', NULL, 'CONSTANTINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18434', NULL, 'CONSTANTINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18435', NULL, 'ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18436', NULL, 'ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18437', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18438', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18439', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18440', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18441', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18442', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18443', NULL, 'LUZ MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18444', NULL, 'LUZ MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18445', NULL, 'LUZ MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18446', NULL, 'LILIANA RODRIGUES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18447', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18448', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18449', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18450', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18451', NULL, 'GERSON ZULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18452', NULL, 'ANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18453', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18454', NULL, 'cayo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18455', NULL, 'junior malpartida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18456', NULL, 'margori rocio peralta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18457', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18458', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18459', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18460', NULL, 'alicia LUCANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18461', NULL, 'JIANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18462', NULL, 'ELENA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18463', NULL, 'ELENA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18464', NULL, 'PSA COMERCIALIZADORA Y SERVICIOS E.I.R.L.', '', '20600813146', '', '', 'AV. II ETAPA MZA. F LOTE. 07 URB. EL ROSARIO (URB. EL ROSARIO II ETAPA) AREQUIPA - AREQUIPA - CERRO COLORADO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18465', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18466', NULL, 'AMANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18467', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18468', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18469', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18470', NULL, 'MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18471', NULL, 'RENZO MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18472', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18473', NULL, 'MATILDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18474', NULL, 'DAILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18475', NULL, 'DORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18476', NULL, 'PRICILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18477', NULL, 'DORA TORREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18478', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18479', NULL, 'MAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18480', NULL, 'ANGY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18481', NULL, 'WALTER MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18482', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18483', NULL, 'LUIS ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18484', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18485', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18486', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18487', NULL, 'HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18488', NULL, 'RISAR INGENIEROS ESTRUCTURALES S.A.C.', '', '20565856481', '', '', 'CAL.LIBRA NRO. 1100 URB. MERCURIO LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18489', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18490', NULL, 'EFRAIN TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18491', NULL, 'FREDY TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18492', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18493', NULL, 'FREDY TELLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18494', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18495', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18496', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18497', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18498', NULL, 'ALBERTO MALDONADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18499', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18500', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18501', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18502', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18503', NULL, 'BEATRIZ MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18504', NULL, 'BEATRIZ MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18505', NULL, 'BEATRIZ MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18506', NULL, 'BEATRIZ MAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18507', NULL, 'MERLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18508', NULL, 'NATIVIDAD VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18509', NULL, 'NATIVIDAD VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18510', NULL, 'NATIVIDAD VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18511', NULL, 'NATIVIDAD VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18512', NULL, 'LEDY ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18513', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18514', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18515', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18516', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18517', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18518', NULL, 'NANCY ESPIRITU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18519', NULL, 'LEDY ESCOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18520', NULL, 'NEFTALI PULIDO GOMEZ', '10667314', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18521', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18522', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18523', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18524', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18525', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18526', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18527', NULL, 'CLAUDIO AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18528', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18529', NULL, 'EDUARDO TINEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18530', NULL, 'EDUARDO TINEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18531', NULL, 'PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18532', NULL, 'pachas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18533', NULL, 'maruja', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18534', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18535', NULL, 'MAGDALENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18536', NULL, 'MARTHA', '00000000', '', '', '', '', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18537', NULL, 'DORIS', '00000000', '', '', '', 'LIMA', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18538', NULL, 'CLAUDIO', '00000000', '', '', '', 'LIMA', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18539', NULL, 'rita', '00000000', '', '', '', 'LIMA', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18540', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18541', NULL, 'VIVIANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18542', NULL, 'rodrigo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18543', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18544', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18545', NULL, 'GUZMAN CONTRERAS MAYARLI AMFEES', '00000000', '10740419116', '', '', 'JR JORGE EZETA 496 - SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18546', NULL, 'GUZMAN CONTRERAS MAYARLI AMFEES', '', '10740419116', '', '', 'JR JORGE ZETA 496 - SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18547', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18548', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18549', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18550', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18551', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18552', NULL, 'TANYA MASI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18553', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18554', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18555', NULL, 'NIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18556', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18557', NULL, 'GLORIA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18558', NULL, 'NELIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18559', NULL, 'LITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18560', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18561', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18562', NULL, 'BLANCA SULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18563', NULL, 'BLANCA SULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18564', NULL, 'BLANCA SULCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18565', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18566', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18567', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18568', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18569', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18570', NULL, 'IRMA ESTRADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18571', NULL, 'MFI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18572', NULL, 'EJ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18573', NULL, 'SUSANA FLORIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18574', NULL, 'JOSE MORAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18575', NULL, 'ALINA SOBERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18576', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18577', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18578', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18579', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18580', NULL, 'NOELIA VALDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18581', NULL, 'AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18582', NULL, 'AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18583', NULL, 'ELISA ROES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18584', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18585', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18586', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18587', NULL, 'ruth perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18588', NULL, 'MIRNA MONTERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18589', NULL, 'ROCIO PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18590', NULL, 'TEOFILO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18591', NULL, 'TORIBIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18592', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18593', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18594', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18595', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18596', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18597', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18598', NULL, 'ALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18599', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18600', NULL, 'LILIANA PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18601', NULL, 'DIANA CASTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18602', NULL, 'GUILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18603', NULL, 'ANAHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18604', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18605', NULL, 'IRENE GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18606', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18607', NULL, 'LUZ MARINA FERNANDEZ VILLAREAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18608', NULL, 'FRANCISCO GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18609', NULL, 'NELIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18610', NULL, 'JOSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18611', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18612', NULL, 'BUSTINZA MAMANI JAVIER SALOMON', '', '10435308240', '', '', 'AV MARISCAL CASTILLA # 845 MOYENDO  AREQUIPA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18613', NULL, 'ERIKA RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18614', NULL, 'JANETH FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18615', NULL, 'FREDY RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18616', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18617', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18618', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18619', NULL, 'MERINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18620', NULL, 'MERINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18621', NULL, 'MERINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18622', NULL, 'AIMEE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18623', NULL, 'JUANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18624', NULL, 'ROSA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18625', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18626', NULL, 'DANTE RAMIRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18627', NULL, 'mahli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18628', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18629', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18630', NULL, 'SUCLLA LARTIGA EDGARD RENATO', '', '10467887519', '', '', 'JR PIEDRA REDONDA MZ C 9 LT 14 LOS CEDROS DE VILLA- CHORILLOS - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18631', NULL, 'luzberta flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18632', NULL, 'rali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18633', NULL, 'rali', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18634', NULL, 'ivana rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18635', NULL, 'ivana rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18636', NULL, 'JENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18637', NULL, 'SUCLLA LARTIGA EDGARD RENATO', '', '10467887519', '', '', 'jr piedra redonda mz c 9 lote 14 los cedros de villa -chorrillos -lima', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18638', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18639', NULL, 'MANUEL MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18640', NULL, 'MANUEL MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18641', NULL, 'MANUEL MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18642', NULL, 'HERNAN LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18643', NULL, 'HERNAN LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18644', NULL, 'saida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18645', NULL, 'selene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18646', NULL, 'selene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18647', NULL, 'selene', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18648', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18649', NULL, 'FR SYSTEM S.A.C.', '', '20601579317', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1260 INT. 6 URB. LIMA CERCADO LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18650', NULL, 'FR SYSTEM S.A.C.', '', '20601579317', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1260 INT. 6 URB. LIMA CERCADO LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18651', NULL, 'FR SYSTEM S.A.C.', '', '20601579317', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1260 INT. 6 URB. LIMA CERCADO LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18652', NULL, 'FR SYSTEM S.A.C.', '', '20601579317', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1260 INT. 6 URB. LIMA CERCADO LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18653', NULL, 'FR SYSTEM S.A.C.', '', '20601579317', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1260 INT. 6 URB. LIMA CERCADO LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18654', NULL, 'MIRIAN TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18655', NULL, 'MIRIAN TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18656', NULL, 'MIRIAN TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18657', NULL, 'MIRIAN TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18658', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18659', NULL, 'CATALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18660', NULL, 'CANDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18661', NULL, 'CONSUELO CASANE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18662', NULL, 'CONSUELO CASANE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18663', NULL, 'CONSUELO CASANE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18664', NULL, 'IRIS GUERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18665', NULL, 'magaly herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18666', NULL, 'mariel herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18667', NULL, 'jacob', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18668', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18669', NULL, 'JACOB', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18670', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18671', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18672', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18673', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18674', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18675', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18676', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18677', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18678', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18679', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18680', NULL, 'nora reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18681', NULL, 'nora reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18682', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18683', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18684', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18685', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18686', NULL, 'CINTHYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18687', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18688', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18689', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18690', NULL, 'antonio perz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18691', NULL, 'zenovia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18692', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18693', NULL, 'anairis torre alba', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18694', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18695', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18696', NULL, 'thiago', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18697', NULL, 'anderson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18698', NULL, 'BUSINESS MANAGEMENT TRADING SOCIEDAD ANONIMA CERRADA', '', '20523498186', '', '', 'MZA. Q1 LOTE. 14 URB. VILLA MARINA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18699', NULL, 'PATRICIA', '00000000', '', '', '', 'MZA. Q1 LOTE. 14 URB. VILLA MARINA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18700', NULL, 'PATRICIA', '00000000', '', '', '', 'MZA. Q1 LOTE. 14 URB. VILLA MARINA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18701', NULL, 'PATRICIA', '00000000', '', '', '', 'MZA. Q1 LOTE. 14 URB. VILLA MARINA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18702', NULL, 'PATRICIA', '00000000', '', '', '', 'MZA. Q1 LOTE. 14 URB. VILLA MARINA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18703', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18704', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18705', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18706', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18707', NULL, 'jacoba flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18708', NULL, 'eduardo murillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18709', NULL, 'eduardo murillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18710', NULL, 'eduardo murillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18711', NULL, 'erasmo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18712', NULL, 'erasmo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18713', NULL, 'erasmo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18714', NULL, 'CALLEGARI SILVA ENNIA MARIA', '', '10447269738', '', '', 'JR JOSE DIAZ 446 SAN JUAN DE MIRAFLORES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18715', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18716', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18717', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18718', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18719', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18720', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18721', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18722', NULL, 'vilma llanos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18723', NULL, 'mari', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18724', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18725', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18726', NULL, 'juan flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18727', NULL, 'alan arevalo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18728', NULL, 'alan arevalo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18729', NULL, 'alan arevalo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18730', NULL, 'alan arevalo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18731', NULL, 'naison', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18732', NULL, 'nela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18733', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18734', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18735', NULL, 'aderiana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18736', NULL, 'SOFIA', '00000000', '', '', '', '', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18737', NULL, 'SOFIA', '00000000', '', '', '', '', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18738', NULL, 'SOFIA', '00000000', '', '', '', '', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18739', NULL, 'SOFIA', '00000000', '', '', '', '', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18740', NULL, 'susana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18741', NULL, 'yesenia rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18742', NULL, 'SUSANA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18743', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18744', NULL, 'MARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18745', NULL, 'roy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18746', NULL, 'CINTYA', '00000000', '', '', '', 'LIMA', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18747', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18748', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18749', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18750', NULL, 'TINTAY T UXPA S.A.C', '', '20600788486', '', '', 'PSJ. PEDRO PAULET #111 RESIDENCIAL TORRES DE SAN BORJA- SAN BORJA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18751', NULL, 'CATALINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18752', NULL, 'RICARDO ROJAS HINOSTROZA', '07385849', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18753', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18754', NULL, 'LUIS ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18755', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18756', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18757', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18758', NULL, 'simon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18759', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18760', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18761', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18762', NULL, 'LIZBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18763', NULL, 'berlanga asmad giancarlo', '10721453', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18764', NULL, 'ethel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18765', NULL, 'CARLOS PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18766', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18767', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18768', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18769', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18770', NULL, 'BELINDA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18771', NULL, 'BELINDA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18772', NULL, 'BELINDA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18773', NULL, 'AMBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18774', NULL, 'ROSARIO DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18775', NULL, 'TIOFILA ZAMORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18776', NULL, 'LUCIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18777', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18778', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18779', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18780', NULL, 'ESTER', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18781', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18782', NULL, 'VICTOR FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18783', NULL, 'VICTOR FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18784', NULL, 'VICTOR FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18785', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18786', NULL, 'MAYCOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18787', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18788', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18789', NULL, 'EDITH  PICHARRA ORIHUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18790', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18791', NULL, 'TERESA RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18792', NULL, 'nela rivas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18793', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18794', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18795', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18796', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18797', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18798', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18799', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18800', NULL, 'renzo guerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18801', NULL, 'renzo guerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18802', NULL, 'renzo guerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18803', NULL, 'renzo guerra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18804', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18805', NULL, 'MORI BURGA SCARLETT GUILLIETTE', '', '10480884961', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18806', NULL, 'silvia sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18807', NULL, 'ESTEFANY', '00000000', '', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18808', NULL, 'ESTEFANY', '00000000', '', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18809', NULL, 'ESTEFANY', '00000000', '', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18810', NULL, 'ESTEFANY', '00000000', '', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18811', NULL, 'ROSALIO QUISPE CORDOVA', '00000000', '', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18812', NULL, 'ROSALIO QUISPE CORDOVA', '00000000', '', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18813', NULL, 'ROSALIO QUISPE CORDOVA', '00000000', '', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18814', NULL, 'ROSALIO QUISPE CORDOVA', '00000000', '', '', '', 'condominiolos alamos edificio k dpto 707 el agustino', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18815', NULL, 'angel cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18816', NULL, 'HINOJOSA NAVARRO CRISTIAN ALBERTO', '', '10081556283', '', '', 'JR TEODORO CARDENAS 340 SANTA BEATRIZ-CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18817', NULL, 'HINOJOSA NAVARRO CRISTIAN ALBERTO', '', '10081556283', '', '', 'JR TEODORO CARDENAS 340 SANTA BEATRIZ-CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18818', NULL, 'DACIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18819', NULL, 'IBETH', '00000000', '', '', '', 'JR TEODORO CARDENAS 340 SANTA BEATRIZ-CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18820', NULL, 'IBETH', '00000000', '', '', '', 'JR TEODORO CARDENAS 340 SANTA BEATRIZ-CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18821', NULL, 'IBETH', '00000000', '', '', '', 'JR TEODORO CARDENAS 340 SANTA BEATRIZ-CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18822', NULL, 'RODOLFO', '00000000', '', '', '', 'JR TEODORO CARDENAS 340 SANTA BEATRIZ-CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18823', NULL, 'RODOLFO', '00000000', '', '', '', 'JR TEODORO CARDENAS 340 SANTA BEATRIZ-CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18824', NULL, 'PATRICIA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18825', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18826', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18827', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18828', NULL, 'QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18829', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18830', NULL, 'alexander aguilar', '42542580', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18831', NULL, 'ANTONIETA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18832', NULL, 'antonieta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18833', NULL, 'jesus  julca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18834', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18835', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18836', NULL, 'DEILI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18837', NULL, 'DEILI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18838', NULL, 'DEILI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18839', NULL, 'MEDALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18840', NULL, 'MEDALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18841', NULL, 'MEDALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18842', NULL, 'monica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18843', NULL, 'monica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18844', NULL, 'monica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18845', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18846', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18847', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18848', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18849', NULL, 'robertina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18850', NULL, 'jimy quiroz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18851', NULL, 'jimy quiroz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18852', NULL, 'jimy quiroz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18853', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18854', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18855', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18856', NULL, 'miguel lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18857', NULL, 'orlando herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18858', NULL, 'orlando herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18859', NULL, 'orlando herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18860', NULL, 'ryan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18861', NULL, 'ryan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18862', NULL, 'ryan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18863', NULL, 'JOSE GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18864', NULL, 'JOSE GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18865', NULL, 'JOSE GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18866', NULL, 'ELOISA INDIGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18867', NULL, 'ELOISA INDIGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18868', NULL, 'ELOISA INDIGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18869', NULL, 'nelida romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18870', NULL, 'CACERES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18871', NULL, 'CACERES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18872', NULL, 'CACERES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18873', NULL, 'JUDITH CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18874', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18875', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18876', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18877', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18878', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18879', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18880', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18881', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18882', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18883', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18884', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18885', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18886', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18887', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18888', NULL, 'ABRAHAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18889', NULL, 'yusi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18890', NULL, 'pedro ore', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18891', NULL, 'LILIANA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18892', NULL, 'ONORATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18893', NULL, 'ONORATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18894', NULL, 'ONORATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18895', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18896', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18897', NULL, 'YACKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18898', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18899', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18900', NULL, 'CARLOS MOGOLLON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18901', NULL, 'CARLOS MOGOLLON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18902', NULL, 'CARLOS MOGOLLON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18903', NULL, 'TENORIO REQUEJO CARLOS MIGUEL', '', '10093064572', '', '', 'AV.BENAVIDES #212 MIRAFLORES-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18904', NULL, 'PAULINA CORTEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18905', NULL, 'AIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18906', NULL, 'IRMA', '00000000', '', '', '', 'AV.BENAVIDES #212 MIRAFLORES-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18907', NULL, 'IRMA', '00000000', '', '', '', 'AV.BENAVIDES #212 MIRAFLORES-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18908', NULL, 'IRMA', '00000000', '', '', '', 'AV.BENAVIDES #212 MIRAFLORES-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18909', NULL, 'OFELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18910', NULL, 'OFELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18911', NULL, 'OFELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18912', NULL, 'LUIS ALBERTO ZAPATA VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18913', NULL, 'HERMON REVOREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18914', NULL, 'HERMON REVOREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18915', NULL, 'HERMON REVOREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18916', NULL, 'MOMENTOS PERU S.A.C', '', '20554269029', '', '', 'JR. VISTA ALEGRE MZA. N LOTE. 01 URB. LOS PARRALES DE SURCO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18917', NULL, 'ROGER GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18918', NULL, 'ROGER GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18919', NULL, 'LUIS APAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18920', NULL, 'LUIS APAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18921', NULL, 'LUIS APAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18922', NULL, 'MARIA FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18923', NULL, 'MACARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18924', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18925', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18926', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18927', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18928', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18929', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18930', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18931', NULL, 'carlos levano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18932', NULL, 'carlos levano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18933', NULL, 'carlos levano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18934', NULL, 'SONIA', '00000000', '', '', '', 'lima', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18935', NULL, 'DIANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18936', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18937', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18938', NULL, 'CLAUDIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18939', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18940', NULL, 'SUSY castañeda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18941', NULL, 'SUSY castañeda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18942', NULL, 'SUSY castañeda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18943', NULL, 'JORGE santamaria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18944', NULL, 'JORGE santamaria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18945', NULL, 'JORGE santamaria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18946', NULL, 'BRITNEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18947', NULL, 'BRITNEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18948', NULL, 'BRITNEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18949', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18950', NULL, 'carmen minaya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18951', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18952', NULL, 'ERIKA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18953', NULL, 'ELSA ALVARES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18954', NULL, 'FLORENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18955', NULL, 'CARMENTORBISCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18956', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18957', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18958', NULL, 'MARGARITA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18959', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18960', NULL, 'KAROINA MORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18961', NULL, 'JIMENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18962', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18963', NULL, 'BRITTA GRANADOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18964', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18965', NULL, 'LUDMILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18966', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18967', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18968', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18969', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18970', NULL, 'PERCY ZAMUIDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18971', NULL, 'MAX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18972', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18973', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18974', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18975', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18976', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18977', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18978', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18979', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18980', NULL, 'lidia herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18981', NULL, 'lopez paredes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18982', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18983', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18984', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18985', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18986', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18987', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18988', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18989', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18990', NULL, 'katy espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18991', NULL, 'CARMELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18992', NULL, 'CARMELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18993', NULL, 'CARMELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18994', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18995', NULL, 'JESUS GAVILAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18996', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18997', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18998', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('18999', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19000', NULL, 'ROSA PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19001', NULL, 'PEDRO MARQUEZ', '06543443', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19002', NULL, 'CLUB PROVINCIAL CANCHIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19003', NULL, 'RUBI CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19004', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19005', NULL, 'RICARDO ROCEROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19006', NULL, 'ROBERTO PONCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19007', NULL, 'isabel sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19008', NULL, 'MARILUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19009', NULL, 'YALUD MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19010', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19011', NULL, 'JUAN CARLOS PENAGOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19012', NULL, 'RAQUEOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19013', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19014', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19015', NULL, 'JULIA CLEMENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19016', NULL, 'NANCY CARRASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19017', NULL, 'maria choque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19018', NULL, 'aquiles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19019', NULL, 'POWERGROUP LATAM E.I.R.L', '', '20604694711', '', '', 'AV. LAS PALMERAS #3855 LOS OLIVOS-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19020', NULL, 'CESAR RUBIÑOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19021', NULL, 'VERONICA CARREÑO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19022', NULL, 'DORIS CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19023', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19024', NULL, 'melani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19025', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19026', NULL, 'ROSA SALVADOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19027', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19028', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19029', NULL, 'EDUARDO ALDANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19030', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19031', NULL, 'MARIO IBAÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19032', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19033', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19034', NULL, 'INVERSIONES GENERALES Z&P-PERU S.R.L', '', '20490461541', '', '', 'CAL.8 MZA. F LOTE. 2 URB. EL PORTAL DE SANTA CLARA (AL FRENTE DEL CONDOMINIO CAMPUS STA CLAR) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19035', NULL, 'EDITH RODRIGUES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19036', NULL, 'CORTEZ RAMOS JUAN CARLOS', '', '10099343619', '', '', 'PASAJE OLAVIDE 248 CERCADO DE LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19037', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19038', NULL, 'MELANIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19039', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19040', NULL, 'JACKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19041', NULL, 'CORIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19042', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19043', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19044', NULL, 'SUSSANA BEDOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19045', NULL, 'MARGOTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19046', NULL, 'GAAM INVESTORS S.R.L', '', '20600218531', '', '', 'CAL.LA FLORIDA NRO. 598 URB. SANTA VICTORIA LAMBAYEQUE - CHICLAYO - CHICLAYO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19047', NULL, 'augusto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19048', NULL, 'PAREDES AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19049', NULL, 'FELICITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19050', NULL, 'ELENA IBAÑEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19051', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19052', NULL, 'GUILLERMO FON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19053', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19054', NULL, 'MARIA MELGAREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19055', NULL, 'ROXANA CHAVES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19056', NULL, 'VILA AGUERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19057', NULL, 'DARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19058', NULL, 'PETRONILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19059', NULL, 'GINA IPARRAGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19060', NULL, 'RENATO RADAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19061', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19062', NULL, 'SILVIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19063', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19064', NULL, 'DURAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19065', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19066', NULL, 'FLORENTINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19067', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19068', NULL, 'GRECIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19069', NULL, 'GUADALUPE ESTRELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19070', NULL, 'YOLANDA COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19071', NULL, 'zonia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19072', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19073', NULL, 'pino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19074', NULL, 'TORVISCO TORO LIDIA ERIKA', '', '10100927816', '', '', 'JR.  EUGENIO #101 V.M.T-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19075', NULL, 'erle rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19076', NULL, 'PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19077', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19078', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19079', NULL, 'eulogia vilca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19080', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19081', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19082', NULL, 'angel romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19083', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19084', NULL, 'MAQUINARIAS PARA CAFE & CACAO J.R. S.A.C.', '', '20573894511', '', '', 'PJ. TUPAC AMARU NRO. S/N URB. VILLA RICA (S72789162 A 1 CDRA DE IE PEDRO RUIZ GALL) PASCO - OXAPAMPA - VILLA RICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19085', NULL, 'yolanda hinojasa de castro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19086', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19087', NULL, 'diana lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19088', NULL, 'diana sangai', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19089', NULL, 'betha', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19090', NULL, 'RENZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19091', NULL, 'elena garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19092', NULL, 'elena garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19093', NULL, 'elena garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19094', NULL, 'GIAN MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19095', NULL, 'GIAN MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19096', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19097', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19098', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19099', NULL, 'viviana centeno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19100', NULL, 'ROSA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19101', NULL, 'ROSA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19102', NULL, 'ROSA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19103', NULL, 'domitila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19104', NULL, 'domitila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19105', NULL, 'domitila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19106', NULL, 'domitila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19107', NULL, 'DESARROLLO REGULATORIO S.A.C. - DERESAC', '', '20600326865', '', '', 'CAL.LAS ORQUIDEAS NRO. 675 INT. 701 URB. JARDIN LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19108', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19109', NULL, 'antony', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19110', NULL, 'katerine martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19111', NULL, 'DESARROLO REGULATORIO S.A.C.', '', '20600326865', '', '', 'CAL. LAS ORQUIDEAS # 675 INT. 701 URB. JARDIN LIMA-LIMA-SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19112', NULL, 'CARLOS REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19113', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19114', NULL, 'MAJU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19115', NULL, 'ANGELICA CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19116', NULL, 'SARI CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19117', NULL, 'SARI CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19118', NULL, 'SARI CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19119', NULL, 'LIZBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19120', NULL, 'LEONICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19121', NULL, 'AMELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19122', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19123', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19124', NULL, 'SILVIA ANTUNEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19125', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19126', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19127', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19128', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19129', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19130', NULL, 'MIGUEL  ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19131', NULL, 'MIGUEL  ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19132', NULL, 'MIGUEL  ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19133', NULL, 'ROLANDO ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19134', NULL, 'ROLANDO ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19135', NULL, 'daysi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19136', NULL, 'UNIVERSIDAD PERUANA CAYETANO HEREDIA', '', '20110768151', '', '', 'AV. HONORIO DELGADO NRO. 430 URB. URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19137', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19138', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19139', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19140', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19141', NULL, 'HARRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19142', NULL, 'HARRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19143', NULL, 'FELIPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19144', NULL, 'SEBASTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19145', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19146', NULL, 'JACIENTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19147', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19148', NULL, 'isabel bustamante', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19149', NULL, 'AIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19150', NULL, 'gloria osco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19151', NULL, 'lupe perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19152', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19153', NULL, 'sacarias', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19154', NULL, 'cristina rios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19155', NULL, 'jaime ortiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19156', NULL, 'rosalina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19157', NULL, 'monica cubas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19158', NULL, 'monica cubas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19159', NULL, 'monica cubas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19160', NULL, 'andi saldaño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19161', NULL, 'andi saldaño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19162', NULL, 'andi saldaño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19163', NULL, 'DIONISIAALFONSO TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19164', NULL, 'ana reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19165', NULL, 'ana reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19166', NULL, 'ana reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19167', NULL, 'JAIME', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19168', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19169', NULL, 'claudia leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19170', NULL, 'eugenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19171', NULL, 'eugenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19172', NULL, 'eugenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19173', NULL, 'eugenia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19174', NULL, 'ELSA MARTINES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19175', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19176', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19177', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19178', NULL, 'hipolito sarnaque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19179', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19180', NULL, 'elva cirilo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19181', NULL, 'beatris jove  mamani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19182', NULL, 'celi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19183', NULL, 'JOSUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19184', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19185', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19186', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19187', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19188', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19189', NULL, 'FAUSTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19190', NULL, 'FAUSTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19191', NULL, 'CRISTINA CURO', '07503662', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19192', NULL, 'JERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19193', NULL, 'JERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19194', NULL, 'JERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19195', NULL, 'PEREZ TORRES LUIS ERNESTO', '', '10488695253', '', '', 'CALLE ALBERTO GUILLEN 324 AREQUIPA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19196', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19197', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19198', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19199', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19200', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19201', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19202', NULL, 'NORA BARRAZA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19203', NULL, 'NORA BARRAZA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19204', NULL, 'NORA BARRAZA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19205', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19206', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19207', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19208', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19209', NULL, 'joseph rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19210', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19211', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19212', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19213', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19214', NULL, 'doris gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19215', NULL, 'carmela castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19216', NULL, 'LUIS CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19217', NULL, 'LUIS CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19218', NULL, 'LUIS CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19219', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19220', NULL, 'martin saldaña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19221', NULL, 'GRUPO ARI SI YES SOCIEDAD ANONIMA CERRADA - GRUPO ASY S', '', '20519341132', '', '', 'JR. LAS PERLAS NRO. 1894 URB. FLORES 78 LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19222', NULL, 'sherly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19223', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19224', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19225', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19226', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19227', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19228', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19229', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19230', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19231', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19232', NULL, 'jean', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19233', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19234', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19235', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19236', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19237', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19238', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19239', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19240', NULL, 'WILLIAN LEIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19241', NULL, 'daniel menendez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19242', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19243', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19244', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19245', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19246', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19247', NULL, 'marco saens', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19248', NULL, 'maria maza', '42732862', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19249', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19250', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19251', NULL, 'BILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19252', NULL, 'MAURA gaslac', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19253', NULL, 'MAURA gaslac', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19254', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19255', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19256', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19257', NULL, 'LUISA MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19258', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19259', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19260', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19261', NULL, 'CHOQUENEYRA ESPINOZA JAKELINE', '', '10401760879', '', '', 'JIRON LIBERTAD 350 COMAS - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19262', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19263', NULL, 'vilma rojas', '20674367', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19264', NULL, 'ROSARIO', '00000000', '', '', '', 'JIRON LIBERTAD 350 COMAS - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19265', NULL, 'ROSi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19266', NULL, 'jesica alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19267', NULL, 'berta torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19268', NULL, 'willy romero', '00000000', '', '', '', 'lima', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19269', NULL, 'merli', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19270', NULL, 'CONSUELO areas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19271', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19272', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19273', NULL, 'oliver figueroa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19274', NULL, 'herlin mosquera arevalo', '07526762', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19275', NULL, 'huber ortiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19276', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19277', NULL, 'roxana diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19278', NULL, 'idelsa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19279', NULL, 'rosario anaya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19280', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19281', NULL, 'jorge miranda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19282', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19283', NULL, 'yenifer retamozo ccorahua', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19284', NULL, 'yenifer retamozo ccorahua', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19285', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19286', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19287', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19288', NULL, 'ELENA CERNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19289', NULL, 'ROSARIO LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19290', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19291', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19292', NULL, 'ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19293', NULL, 'INVERSIONES KORIDRILLING S.A.C.', '00000000', '20565454171', '', '', 'CAL.YEN ESCOBEDO GARRO NRO. 362 URB. LA VIÑA (ALT. ROSA TORO CON AV. EL AIRE) LIMA - LIMA - SAN LUIS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19294', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19295', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19296', NULL, 'carmen fernandes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19297', NULL, 'AHREN CONTRATISTAS GENERALES S.A.C', '', '20494637074', '', '', 'AV. DEL EJERCITO NRO. 931 URB. SANTA CRUZ LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19298', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19299', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19300', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19301', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19302', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19303', NULL, 'luis torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19304', NULL, 'TERESA  LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19305', NULL, 'inokyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19306', NULL, 'SHIRLEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19307', NULL, 'morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19308', NULL, 'ORLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19309', NULL, 'HEISI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19310', NULL, 'RAQUEL FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19311', NULL, 'ELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19312', NULL, 'jesica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19313', NULL, 'PORTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19314', NULL, 'PORTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19315', NULL, 'PORTILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19316', NULL, 'TEOFILA TURCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19317', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19318', NULL, 'milagros rodrigues', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19319', NULL, 'INOCENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19320', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19321', NULL, 'yurico porta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19322', NULL, 'jordan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19323', NULL, 'DYSMART S.A.C.', '', '20602298583', '', '', 'AV. DOMINGO ORUE NRO. 794 INT. 303 LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19324', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19325', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19326', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19327', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19328', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19329', NULL, 'TERESA QUIROGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19330', NULL, 'GLADIS MARTEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19331', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19332', NULL, 'MARIA cotrina rios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19333', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19334', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19335', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19336', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19337', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19338', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19339', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19340', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19341', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19342', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19343', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19344', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19345', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19346', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19347', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19348', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19349', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19350', NULL, 'jose navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19351', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19352', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19353', NULL, 'faustino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19354', NULL, 'faustino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19355', NULL, 'faustino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19356', NULL, 'raulo torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19357', NULL, 'allison', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19358', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19359', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19360', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19361', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19362', NULL, 'EMMA CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19363', NULL, 'EMMA CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19364', NULL, 'DANAI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19365', NULL, 'JONSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19366', NULL, 'ZENAIDA VILLANUEVA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19367', NULL, 'ZENAIDA VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19368', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19369', NULL, 'ARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19370', NULL, 'ARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19371', NULL, 'ARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19372', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19373', NULL, 'jean', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19374', NULL, 'JUDITH CARRANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19375', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19376', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19377', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19378', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19379', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19380', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19381', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19382', NULL, 'carmen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19383', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19384', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19385', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19386', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19387', NULL, 'LILI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19388', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19389', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19390', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19391', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19392', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19393', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19394', NULL, 'ILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19395', NULL, 'ILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19396', NULL, 'ILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19397', NULL, 'GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19398', NULL, 'GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19399', NULL, 'GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19400', NULL, 'GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19401', NULL, 'GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19402', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19403', NULL, 'GUSTAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19404', NULL, 'REYNA', '00000000', '', '', '', 'LIMA', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19405', NULL, 'sarid', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19406', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19407', NULL, 'adelaida romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19408', NULL, 'edelmira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19409', NULL, 'FUKUHARA FUKUHARA ALEJANDRO', '', '10094559061', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19410', NULL, 'MARY', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19411', NULL, 'MARY', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19412', NULL, 'MARY', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19413', NULL, 'MARY', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19414', NULL, 'NEIVER', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19415', NULL, 'DARIA', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19416', NULL, 'DARIA', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19417', NULL, 'demetria condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19418', NULL, 'FRANCISCO ROJAS', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19419', NULL, 'FRANCISCO ROJAS', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19420', NULL, 'FRANCISCO ROJAS', '00000000', '', '', '', 'AV. URUGUAY 435 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19421', NULL, 'OMAR SANTAMARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19422', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19423', NULL, 'IRMA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19424', NULL, 'IRMA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19425', NULL, 'IRMA VEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19426', NULL, 'omar santamaria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19427', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19428', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19429', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19430', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19431', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19432', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19433', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19434', NULL, 'jenny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19435', NULL, 'jenny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19436', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19437', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19438', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19439', NULL, 'JUDITH VALVERDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19440', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19441', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19442', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19443', NULL, 'moana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19444', NULL, 'moana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19445', NULL, 'moana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19446', NULL, 'SANTIAGO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19447', NULL, 'SANTIAGO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19448', NULL, 'SANTIAGO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19449', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19450', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19451', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19452', NULL, 'JOSE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19453', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19454', NULL, 'ADRIANA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19455', NULL, 'ADRIANA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19456', NULL, 'ADRIANA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19457', NULL, 'ADIANA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19458', NULL, 'ADIANA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19459', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19460', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19461', NULL, 'yolanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19462', NULL, 'ana farfan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19463', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19464', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19465', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19466', NULL, 'cleo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19467', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19468', NULL, 'mario guevara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19469', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19470', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19471', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19472', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19473', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19474', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19475', NULL, 'jonathan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19476', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19477', NULL, 'libia mejia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19478', NULL, 'libia mejia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19479', NULL, 'libia mejia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19480', NULL, 'rosa ayala', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19481', NULL, 'norma jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19482', NULL, 'nolber pasache', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19483', NULL, 'teresa carrillo', '20028565', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19484', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19485', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19486', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19487', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19488', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19489', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19490', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19491', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19492', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19493', NULL, 'JASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19494', NULL, 'JASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19495', NULL, 'JASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19496', NULL, 'JASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19497', NULL, 'JASMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19498', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19499', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19500', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19501', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19502', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19503', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19504', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19505', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19506', NULL, 'OTILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19507', NULL, 'OTILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19508', NULL, 'OTILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19509', NULL, 'ANDRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19510', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19511', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19512', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19513', NULL, 'lucero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19514', NULL, 'lucero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19515', NULL, 'lucero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19516', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19517', NULL, 'SHEYLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19518', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19519', NULL, 'jessica zevallos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19520', NULL, 'OSCAR', '00000000', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19521', NULL, 'ROSA ESTRADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19522', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19523', NULL, 'luz correa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19524', NULL, 'vilma diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19525', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19526', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19527', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19528', NULL, 'ABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19529', NULL, 'MIREYA castillo davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19530', NULL, 'MIREYA castillo davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19531', NULL, 'MIREYA castillo davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19532', NULL, 'MIREYA castillo davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19533', NULL, 'MIREYA castillo davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19534', NULL, 'MIREYA castillo davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19535', NULL, 'HERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19536', NULL, 'IRENE MELENDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19537', NULL, 'IRENE MELENDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19538', NULL, 'IRENE MELENDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19539', NULL, 'OSCAR GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19540', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19541', NULL, 'max castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19542', NULL, 'max castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19543', NULL, 'ALEXANDRA FAJARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19544', NULL, 'ACASO PERU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19545', NULL, 'ACASO PERU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19546', NULL, 'ACASO PERU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19547', NULL, 'ACASO PERU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19548', NULL, 'ROBERTO  QUIBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19549', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19550', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19551', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19552', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19553', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19554', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19555', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19556', NULL, 'BRYAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19557', NULL, 'ana hidalgo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19558', NULL, 'CARMEN RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19559', NULL, 'CARMEN RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19560', NULL, 'CARMEN RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19561', NULL, 'job martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19562', NULL, 'MONICA TAYPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19563', NULL, 'MONICA TAYPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19564', NULL, 'MONICA TAYPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19565', NULL, 'rocio pilar yurivilca', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19566', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19567', NULL, 'juan jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19568', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19569', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19570', NULL, 'DIAR LOGISTIC S.A.C.', '', '20601924812', '', '', 'CAL.MANUEL WAGNER NRO. 681 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19571', NULL, 'lidelma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19572', NULL, 'lidelma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19573', NULL, 'lidelma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19574', NULL, 'lidelma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19575', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19576', NULL, 'DIAR LOGISTIC S.A.C.', '', '20601924812', '', '', 'CAL.MANUEL WAGNER NRO. 681 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19577', NULL, 'VICTORINA', '00000000', '', '', '', 'CAL.MANUEL WAGNER NRO. 681 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19578', NULL, 'VICTORINA', '00000000', '', '', '', 'CAL.MANUEL WAGNER NRO. 681 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19579', NULL, 'VICTORINA', '00000000', '', '', '', 'CAL.MANUEL WAGNER NRO. 681 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19580', NULL, 'VICTORINA', '00000000', '', '', '', 'CAL.MANUEL WAGNER NRO. 681 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19581', NULL, 'anabel inciso', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19582', NULL, 'ALEXANDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19583', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19584', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19585', NULL, 'LISETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19586', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19587', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19588', NULL, 'WILDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19589', NULL, 'PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19590', NULL, 'PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19591', NULL, 'PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19592', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19593', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19594', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19595', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19596', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19597', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19598', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19599', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19600', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19601', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19602', NULL, 'IRMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19603', NULL, 'BERTA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19604', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19605', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19606', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19607', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19608', NULL, 'HERMANAS DOMINICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19609', NULL, 'HERMANAS DOMINICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19610', NULL, 'HERMANAS DOMINICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19611', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19612', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19613', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19614', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19615', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19616', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19617', NULL, 'SOLEDAD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19618', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19619', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19620', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19621', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19622', NULL, 'DIAR LOGISTIC S.A.C.', '', '20601924812', '', '', 'CAL.MANUEL WAGNER NRO. 681 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19623', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19624', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19625', NULL, 'VIRGINIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19626', NULL, 'JAIME SAAVEDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19627', NULL, 'artemia alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19628', NULL, 'juan palacios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19629', NULL, 'JHONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19630', NULL, 'proyecto 454', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19631', NULL, 'PEDRO ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19632', NULL, 'PEDRO ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19633', NULL, 'PEDRO ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19634', NULL, 'PEDRO ALVAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19635', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19636', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19637', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19638', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19639', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19640', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19641', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19642', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19643', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19644', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19645', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19646', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19647', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19648', NULL, 'claudia ruesta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19649', NULL, 'hernan canchari', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19650', NULL, 'francisco mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19651', NULL, 'francisco mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19652', NULL, 'francisco mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19653', NULL, 'francisco mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19654', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19655', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19656', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19657', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19658', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19659', NULL, 'TEODORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19660', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19661', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19662', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19663', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19664', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19665', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19666', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19667', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19668', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19669', NULL, 'jeferson rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19670', NULL, 'jeferson rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19671', NULL, 'rosa conde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19672', NULL, 'rosa conde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19673', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19674', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19675', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19676', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19677', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19678', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19679', NULL, 'rosa jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19680', NULL, 'rosa jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19681', NULL, 'rosa jimenez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19682', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19683', NULL, 'FISIOLIBRERIA E.I.R.L.', '', '20604120498', '', '', 'CAL.LAS TURMALINAS NRO. 558 URB. LA HUAYRONA LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19684', NULL, 'FISIOLIBRERIA E.I.R.L.', '', '20604120498', '', '', 'CAL.LAS TURMALINAS NRO. 558 URB. LA HUAYRONA LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19685', NULL, 'FISIOLIBRERIA E.I.R.L.', '', '20604120498', '', '', 'CAL.LAS TURMALINAS NRO. 558 URB. LA HUAYRONA LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19686', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19687', NULL, 'PATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19688', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19689', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19690', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19691', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19692', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19693', NULL, 'ELSA', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19694', NULL, 'ELSA', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19695', NULL, 'ELSA', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19696', NULL, 'ELSA', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19697', NULL, 'ELSA', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19698', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19699', NULL, 'GIANMARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19700', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19701', NULL, 'rosvelt  cabrera diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19702', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19703', NULL, 'rosa camarena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19704', NULL, 'rosa camarena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19705', NULL, 'rosa camarena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19706', NULL, 'rosa camarena', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19707', NULL, 'AIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19708', NULL, 'dorotea leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19709', NULL, 'rosa ortega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19710', NULL, 'rosa ortega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19711', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19712', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19713', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19714', NULL, 'CARMEN CHECA', '07299261', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19715', NULL, 'elelna montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19716', NULL, 'elelna montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19717', NULL, 'elelna montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19718', NULL, 'manuel roman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19719', NULL, 'manuel roman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19720', NULL, 'manuel roman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19721', NULL, 'manuel roman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19722', NULL, 'DIAR LOGISTIC S.A.C.', '', '20601924812', '', '', 'CAL.MANUEL WAGNER NRO. 681 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19723', NULL, 'gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19724', NULL, 'MARIA HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19725', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19726', NULL, 'nely lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19727', NULL, 'nely lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19728', NULL, 'gleida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19729', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19730', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19731', NULL, 'isbeth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19732', NULL, 'isbeth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19733', NULL, 'isbeth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19734', NULL, 'luis enrrique vilchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19735', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19736', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19737', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19738', NULL, 'mirna canela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19739', NULL, 'tula', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19740', NULL, 'susan rosales', '47799632', '', '', '', 'lima', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19741', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19742', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19743', NULL, 'tula', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19744', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19745', NULL, 'CAPRICHITOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19746', NULL, 'BREAD AND CAKES S.A.C', '', '20602779999', '', '', 'CAL.LOS HUERTOS NRO. 1715 URB. SAN HILARION ET. DOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19747', NULL, 'BREAD AND CAKES S.A.C', '', '20602779999', '', '', 'CAL.LOS HUERTOS NRO. 1715 URB. SAN HILARION ET. DOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19748', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19749', NULL, 'ROSA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19750', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19751', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19752', NULL, 'MELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19753', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19754', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19755', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19756', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19757', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19758', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19759', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19760', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19761', NULL, 'FELIPA BERROCAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19762', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19763', NULL, 'ROGER SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19764', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19765', NULL, 'MARICIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19766', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19767', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19768', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19769', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19770', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19771', NULL, 'ROSA ALARCON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19772', NULL, 'JND BUSSINES CORPORATION S.A.C.', '', '20550933188', '', '', 'JR. FLOR DE LOTO MZA. H LOTE. 09 ASOC PRO DE VIV MONTERREY LIMA - LIMA - SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19773', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19774', NULL, 'ALMOS & ASOCIADOS S.A.C.', '', '20600769961', '', '', 'JR. ZAMORA 370 U3 MZA. J LOTE. 03 URB. LA CAPILLA (ALT CDRA 27 DE AV ALAMEDA DEL CORREGIDOR) LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19775', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19776', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19777', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19778', NULL, 'MIRIAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19779', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19780', NULL, 'JUSTO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19781', NULL, 'JUSTO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19782', NULL, 'JUSTO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19783', NULL, 'JUSTO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19784', NULL, 'VICTOR AMAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19785', NULL, 'VICTOR AMAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19786', NULL, 'VICTOR AMAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19787', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19788', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19789', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19790', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19791', NULL, 'AULA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19792', NULL, 'AULA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19793', NULL, 'AULA MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19794', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19795', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19796', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19797', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19798', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19799', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19800', NULL, 'BUSTAMANTE QUIROZ ELSABE ALVINA', '', '10739945475', '', '', 'JR. JOSE CARLOS MAREATEGUI 373- INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19801', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19802', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19803', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19804', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19805', NULL, 'daniel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19806', NULL, 'JORGE FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19807', NULL, 'karin bustamante', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19808', NULL, 'AIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19809', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19810', NULL, 'ARMANDO BALDEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19811', NULL, 'EDGAR VERASTEGUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19812', NULL, 'GIANFRANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19813', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19814', NULL, 'DEYSI ANGULO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19815', NULL, 'MANUEL MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19816', NULL, 'MANUEL MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19817', NULL, 'MANUEL MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19818', NULL, 'MANUEL MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19819', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19820', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19821', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19822', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19823', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19824', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19825', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19826', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19827', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19828', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19829', NULL, 'SONIA FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19830', NULL, 'EDWIN TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19831', NULL, 'EDWIN TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19832', NULL, 'EDWIN TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19833', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19834', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19835', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19836', NULL, 'SABINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19837', NULL, 'JORDAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19838', NULL, 'KATERINE CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19839', NULL, 'MFI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19840', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19841', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19842', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19843', NULL, 'DINO FABIAN PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19844', NULL, 'DINO FABIAN PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19845', NULL, 'NILDA SILUETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19846', NULL, 'NILDA SILUETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19847', NULL, 'NILDA SILUETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19848', NULL, 'NILDA SILUETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19849', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19850', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19851', NULL, 'MIRNA PRIMO RAMIREZ', '', '10440867613', '', '', 'AV SAN ENRRIQUE MZD LT50 URB LOS HUERTOS DE TUNGASUCA COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19852', NULL, 'PRIMO RAMIREZ MIRNA MARGARITA', '', '10440867613', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19853', NULL, 'CARMEN YANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19854', NULL, 'HERRERA REYNOSO DE CASTRO NILDA SOLEDAD', '', '10087436921', '', '', 'CALLE 4 MZE LT9 MARANGA -SAN MIGUEL -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19855', NULL, 'maria elena villanueva', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19856', NULL, 'maria elena villanueva', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19857', NULL, 'maria elena villanueva', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19858', NULL, 'CRISTIAN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19859', NULL, 'CRISTIAN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19860', NULL, 'CRISTIAN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19861', NULL, 'CRISTIAN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19862', NULL, 'VALERIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19863', NULL, 'ELIZABETH', '00000000', '', '', '', '', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19864', NULL, 'ABRAHAM', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19865', NULL, 'ABRAHAM', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19866', NULL, 'ABRAHAM', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19867', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19868', NULL, 'SOILA', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19869', NULL, 'SOILA', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19870', NULL, 'SOILA', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19871', NULL, 'SOILA', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19872', NULL, 'MAXIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19873', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19874', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19875', NULL, 'alonso', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19876', NULL, 'alonso', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19877', NULL, 'alonso', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19878', NULL, 'alonso', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19879', NULL, 'CRISTIAN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19880', NULL, 'CRISTIAN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19881', NULL, 'CRISTIAN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19882', NULL, 'CRISTIAN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19883', NULL, 'ROSA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19884', NULL, 'CARMEN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19885', NULL, 'CARMEN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19886', NULL, 'CARMEN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19887', NULL, 'CARMEN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19888', NULL, 'CARMEN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19889', NULL, 'CARMEN', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19890', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19891', NULL, 'maricarmen flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19892', NULL, 'maricarmen flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19893', NULL, 'maricarmen flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19894', NULL, 'maricarmen flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19895', NULL, 'maricarmen flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19896', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19897', NULL, 'AIDE PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19898', NULL, 'AIDE PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19899', NULL, 'AIDE PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19900', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19901', NULL, 'ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19902', NULL, 'ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19903', NULL, 'ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19904', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19905', NULL, 'victoria velasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19906', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19907', NULL, 'luis perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19908', NULL, 'GIANCARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19909', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19910', NULL, 'ZANELLI YSLA GIANCARLO PAOLO', '', '10419969031', '', '', 'SAN RODOLFO MZ O1 LOTE 4 VILLA MARINA- CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19911', NULL, 'ZANELLI YSLA GIANCARLO PAOLO', '', '10419969031', '', '', 'SAN RODOLFO MZ O1 LOTE 4 VILLA MARINA- CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19912', NULL, 'LEONOR', '00000000', '', '', '', 'SAN RODOLFO MZ O1 LOTE 4 VILLA MARINA- CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19913', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19914', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19915', NULL, 'CESAR', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19916', NULL, 'CESAR', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19917', NULL, 'CESAR', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19918', NULL, 'CESAR', '00000000', '', '', '', 'AV SAN ENRIQUE MZ D LOTE 50 URB LOS HUERTOS DE TUNGA SUCA -COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19919', NULL, 'VIVIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19920', NULL, 'katerine montalvo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19921', NULL, 'felicitas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19922', NULL, 'mari', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19923', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19924', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19925', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19926', NULL, 'HELEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19927', NULL, 'jaim3', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19928', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19929', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19930', NULL, 'EDITH GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19931', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19932', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19933', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19934', NULL, 'LUCY martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19935', NULL, 'ie 265 -huamatangp', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19936', NULL, 'ie 265 -huamatangp', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19937', NULL, 'LADY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19938', NULL, 'julio ortiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19939', NULL, 'julio ortiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19940', NULL, 'julio ortiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19941', NULL, 'julio ortiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19942', NULL, 'CLAUDIA', '44129158', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19943', NULL, 'ENMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19944', NULL, 'aracely reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19945', NULL, 'aracely reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19946', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19947', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19948', NULL, 'BORA IMPORT S.A.C.', '', '20566396328', '', '', 'JR. PARURO NRO. 1353 INT. 102 LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19949', NULL, 'BORA IMPORT S.A.C.', '', '20566396328', '', '', 'JR. PARURO NRO. 1353 INT. 102 LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19950', NULL, 'BORA IMPORT S.A.C.', '', '20566396328', '', '', 'JR. PARURO NRO. 1353 INT. 102 LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19951', NULL, 'ROSALINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19952', NULL, 'MARIBEL VALENTINO', '00000000', '', '', '', 'JR. PARURO NRO. 1353 INT. 102 LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19953', NULL, 'manuel vilchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19954', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19955', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19956', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19957', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19958', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19959', NULL, 'SOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19960', NULL, 'sol', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19961', NULL, 'sol', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19962', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19963', NULL, 'MARTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19964', NULL, 'RICHARD', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19965', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19966', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19967', NULL, 'KETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19968', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19969', NULL, 'GINA PARPAN', '42193606', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19970', NULL, 'ELENA FARFAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19971', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19972', NULL, 'JESSICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19973', NULL, 'CATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19974', NULL, 'DIOSES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19975', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19976', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19977', NULL, 'giancarlo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19978', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19979', NULL, 'ESTHER HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19980', NULL, 'ESTHER HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19981', NULL, 'ESTHER HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19982', NULL, 'ESTHER HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19983', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19984', NULL, 'BALTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19985', NULL, 'MERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19986', NULL, 'MERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19987', NULL, 'MERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19988', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19989', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19990', NULL, 'CAROLINA MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19991', NULL, 'CAROLINA MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19992', NULL, 'CAROLINA MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19993', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19994', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19995', NULL, 'JEAN PIERE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19996', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19997', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19998', NULL, 'JASMIN BUSTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('19999', NULL, 'SHEYLA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20000', NULL, 'SHEYLA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20001', NULL, 'SHEYLA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20002', NULL, 'SHEYLA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20003', NULL, 'VICTOR PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20004', NULL, 'VICTORIA SOLANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20005', NULL, 'jakeline', '45543074', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20006', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20007', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20008', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20009', NULL, 'MARTIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20010', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20011', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20012', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20013', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20014', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20015', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20016', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20017', NULL, 'ELMER LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20018', NULL, 'ELMER LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20019', NULL, 'ELMER LEON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20020', NULL, 'MARIA ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20021', NULL, 'MARIA ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20022', NULL, 'MARIA ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20023', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20024', NULL, 'patricia perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20025', NULL, 'ABAD CASAS MAGALI IVONNE', '', '10106412893', '', '', 'JR GAMARRA 1160 SEGUNDO PISO STAND 12A LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20026', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20027', NULL, 'macondo comunicaciones eirl', '', '20565897838', '', '', 'av nicolas arriola 953 dpto 301 c.h. rumihuasi cerca al ovalo de arriola- la victoria- lima', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20028', NULL, 'diego alonso muñoz guevara', '42244502', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20029', NULL, 'antonio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20030', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20031', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20032', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20033', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20034', NULL, 'SILVIA', '00000000', '', '', '', 'av nicolas arriola 953 dpto 301 c.h. rumihuasi cerca al ovalo de arriola- la victoria- lima', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20035', NULL, 'walter peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20036', NULL, 'mayra chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20037', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20038', NULL, 'VANESSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20039', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20040', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20041', NULL, 'LUIS ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20042', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20043', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20044', NULL, 'ABIMAEL APOLINARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20045', NULL, 'ABIMAEL APOLINARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20046', NULL, 'ABIMAEL APOLINARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20047', NULL, 'carlos rivera aguilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20048', NULL, 'carlos rivera aguilar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20049', NULL, 'CARMELA', '00000000', '', '', '', 'LIMA', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20050', NULL, 'carmen barbosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20051', NULL, 'carmen barbosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20052', NULL, 'carmen barbosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20053', NULL, 'carmen barbosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20054', NULL, 'CARMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20055', NULL, 'maritza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20056', NULL, 'maritza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20057', NULL, 'maritza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20058', NULL, 'elsa sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20059', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20060', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20061', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20062', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20063', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20064', NULL, 'ALBERTINA NAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20065', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20066', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20067', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20068', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20069', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20070', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20071', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20072', NULL, 'elita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20073', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20074', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20075', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20076', NULL, 'noire', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20077', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20078', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20079', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20080', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20081', NULL, 'DAVID MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20082', NULL, 'DAVID MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20083', NULL, 'DAVID MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20084', NULL, 'MARGORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20085', NULL, 'ANIBAL CHIQUILLANQUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20086', NULL, 'ANIBAL CHIQUILLANQUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20087', NULL, 'ANIBAL CHIQUILLANQUI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20088', NULL, 'vicky MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20089', NULL, 'vicky MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20090', NULL, 'vicky MEZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20091', NULL, 'LUIS ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20092', NULL, 'LUIS ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20093', NULL, 'LUIS ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20094', NULL, 'VICKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20095', NULL, 'vicki meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20096', NULL, 'vicki meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20097', NULL, 'vicki meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20098', NULL, 'isabel meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20099', NULL, 'isabel meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20100', NULL, 'isabel meza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20101', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20102', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20103', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20104', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20105', NULL, 'ERICK bravo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20106', NULL, 'ERICK bravo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20107', NULL, 'ERICK bravo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20108', NULL, 'ERICK bravo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20109', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20110', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20111', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20112', NULL, 'monica alvarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20113', NULL, 'monica alvarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20114', NULL, 'monica alvarez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20115', NULL, 'FLORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20116', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20117', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20118', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20119', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20120', NULL, 'JUAN GUTIERREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20121', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20122', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20123', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20124', NULL, 'VICTORIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20125', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20126', NULL, 'SIMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20127', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20128', NULL, 'GRUPO CASTLE S.A.C.', '', '20566543134', '', '', 'AV. BOLIVIA NRO. 222 INT. 111 GALERIA COMERC. LA ESKINA (ENTRE AV. BOLIVIA Y GARCILASO DE LA VEGA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20129', NULL, 'luis sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20130', NULL, 'luis sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20131', NULL, 'luis sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20132', NULL, 'luis sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20133', NULL, 'luis sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20134', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20135', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20136', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20137', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20138', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20139', NULL, 'CATALINA', '00000000', '', '', '', 'AV. BOLIVIA NRO. 222 INT. 111 GALERIA COMERC. LA ESKINA (ENTRE AV. BOLIVIA Y GARCILASO DE LA VEGA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20140', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20141', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20142', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20143', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20144', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20145', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20146', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20147', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20148', NULL, 'DANIXA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20149', NULL, 'DANIXA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20150', NULL, 'DANIXA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20151', NULL, 'DANIXA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20152', NULL, 'DANIXA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20153', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20154', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20155', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20156', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20157', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20158', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20159', NULL, 'castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20160', NULL, 'castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20161', NULL, 'junior', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20162', NULL, 'juana lucero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20163', NULL, 'ADRIEL TAYPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20164', NULL, 'ROGER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20165', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20166', NULL, 'roger', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20167', NULL, 'MARINA DE GUERRA DEL PERU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20168', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20169', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20170', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20171', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20172', NULL, 'VALENTINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20173', NULL, 'reyna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20174', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20175', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20176', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20177', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20178', NULL, 'ROBERTO LLOSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20179', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20180', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20181', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20182', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20183', NULL, 'EI ANDRES BELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20184', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20185', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20186', NULL, 'gladys gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20187', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20188', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20189', NULL, 'GLADIS gonsales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20190', NULL, 'GLADIS gonsales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20191', NULL, 'GLADIS gonsales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20192', NULL, 'FERNANDO JIMENEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20193', NULL, 'GISELA  RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20194', NULL, 'haide', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20195', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20196', NULL, 'irlanda lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20197', NULL, 'irlanda lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20198', NULL, 'irlanda lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20199', NULL, 'irlanda lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20200', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20201', NULL, 'daisy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20202', NULL, 'yulisa carrion', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20203', NULL, 'ENAFUSTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20204', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20205', NULL, 'ADOLFO CERNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20206', NULL, 'angel barrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20207', NULL, 'JONATHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20208', NULL, 'maria moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20209', NULL, 'maria moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20210', NULL, 'maria moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20211', NULL, 'maria moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20212', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20213', NULL, 'lucila mendoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20214', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20215', NULL, 'mari a mina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20216', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20217', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20218', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20219', NULL, 'YANINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20220', NULL, 'carmen vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20221', NULL, 'martin canavaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20222', NULL, 'martin canavaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20223', NULL, 'martin canavaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20224', NULL, 'martin canavaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20225', NULL, 'martin canavaro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20226', NULL, 'liceida diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20227', NULL, 'FANNY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20228', NULL, 'FANNY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20229', NULL, 'luciano choquehuanca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20230', NULL, 'luciano choquehuanca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20231', NULL, 'clenith crdenas barrera', '10626530', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20232', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20233', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20234', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20235', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20236', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20237', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20238', NULL, 'americo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20239', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20240', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20241', NULL, 'ERNESTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20242', NULL, 'ana cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20243', NULL, 'JORGE RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20244', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20245', NULL, 'JENNY GUEVARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20246', NULL, 'GREGORIANA OROSCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20247', NULL, 'JORGE APARICIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20248', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20249', NULL, 'WENDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20250', NULL, 'GUADALUPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20251', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20252', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20253', NULL, 'CARLA BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20254', NULL, 'ARTURO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20255', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20256', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20257', NULL, 'MERCEDES MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20258', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20259', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20260', NULL, 'ROSA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20261', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20262', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20263', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20264', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20265', NULL, 'ingrid', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20266', NULL, 'ingrid', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20267', NULL, 'ingrid', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20268', NULL, 'OSVALDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20269', NULL, 'ZELMIRA TOLENTINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20270', NULL, 'celmira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20271', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20272', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20273', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20274', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20275', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20276', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20277', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20278', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20279', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20280', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20281', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20282', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20283', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20284', NULL, 'clever', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20285', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20286', NULL, 'VALENZUELA MUNAYCO NELLY TERESA', '', '10218022761', '', '', 'AV FRAY MARTIN N111 PUEBLO NUEVO- CHINCHA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20287', NULL, 'VALENZUELA MUNAYCO NELLY TERESA', '', '10218022761', '', '', 'AV FRAY MARTIN N111 PUEBLO NUEVO- CHINCHA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20288', NULL, 'KARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20289', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20290', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20291', NULL, 'NORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20292', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20293', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20294', NULL, 'vivian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20295', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20296', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20297', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20298', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20299', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20300', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20301', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20302', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20303', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20304', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20305', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20306', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20307', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20308', NULL, 'cvirilo arroyo leon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20309', NULL, 'CECELIA MENDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20310', NULL, 'SUJEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20311', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20312', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20313', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20314', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20315', NULL, 'INES CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20316', NULL, 'GUILLERMO AREVALO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20317', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20318', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20319', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20320', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20321', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20322', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20323', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20324', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20325', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20326', NULL, 'JOSUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20327', NULL, 'JULI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20328', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20329', NULL, 'MARIA EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20330', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20331', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20332', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20333', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20334', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20335', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20336', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20337', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20338', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20339', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20340', NULL, 'OSCAR BAZALAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20341', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20342', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20343', NULL, 'RUTH GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20344', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20345', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20346', NULL, 'RUSSEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20347', NULL, 'ANDRADE URRA ROMEL CARLO', '', '10101811129', '', '', 'PSJE TESORO #609 URB TUPAC AMARU SAN LUIS-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20348', NULL, 'MAXIMA SACHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20349', NULL, 'EDUARDO SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20350', NULL, 'DENISSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20351', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20352', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20353', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20354', NULL, 'FRANCIS RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20355', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20356', NULL, 'MARITZA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20357', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20358', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20359', NULL, 'JESICA', '00000000', '', '', '', 'PSJE TESORO #609 URB TUPAC AMARU SAN LUIS-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20360', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20361', NULL, 'THALIA SALAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20362', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20363', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20364', NULL, 'MARIA CABRERA', '21788249', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20365', NULL, 'FANY CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20366', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20367', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20368', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20369', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20370', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20371', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20372', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20373', NULL, 'VERONICA HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20374', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20375', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20376', NULL, 'DAYANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20377', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20378', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20379', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20380', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20381', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20382', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20383', NULL, 'luz mariela montalvo', '42681872', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20384', NULL, 'VILMA ARISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20385', NULL, 'JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20386', NULL, 'MILAGROS CHICANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20387', NULL, 'ALAIN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20388', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20389', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20390', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20391', NULL, 'BERTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20392', NULL, 'oscar chavez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20393', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20394', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20395', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20396', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20397', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20398', NULL, 'CRIS PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20399', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20400', NULL, 'hector garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20401', NULL, 'pablo ventura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20402', NULL, 'GUSTAVO  QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20403', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20404', NULL, 'teresa alarcon', '09916011', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20405', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20406', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20407', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20408', NULL, 'celeste napa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20409', NULL, 'CARMEN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20410', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20411', NULL, 'DIAZ COLLANTES GUADALUPE ALANNA', '', '10414434440', '', '', 'MZB LT9 ASOC. DE VIVIENDA SANTA MARIA DEL VALLE S.M.P-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20412', NULL, 'herminio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20413', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20414', NULL, 'gladys torees', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20415', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20416', NULL, 'rosa cabrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20417', NULL, 'rosa cabrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20418', NULL, 'rosa cabrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20419', NULL, 'alberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20420', NULL, 'alberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20421', NULL, 'alberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20422', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20423', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20424', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20425', NULL, 'JOSE LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20426', NULL, 'JOSE LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20427', NULL, 'FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20428', NULL, 'FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20429', NULL, 'FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20430', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20431', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20432', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20433', NULL, 'DEYVIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20434', NULL, 'DEYVIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20435', NULL, 'DEYVIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20436', NULL, 'DEYVIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20437', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20438', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20439', NULL, 'irina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20440', NULL, 'irina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20441', NULL, 'irina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20442', NULL, 'irina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20443', NULL, 'romi garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20444', NULL, 'romi garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20445', NULL, 'romi garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20446', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20447', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20448', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20449', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20450', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20451', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20452', NULL, 'uberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20453', NULL, 'uberto garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20454', NULL, 'uberto garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20455', NULL, 'uberto garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20456', NULL, 'uberto garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20457', NULL, 'uberto garrido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20458', NULL, 'ROSAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20459', NULL, 'ROSAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20460', NULL, 'ROSAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20461', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20462', NULL, 'amid', '20087347', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20463', NULL, 'francisco cuba', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20464', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20465', NULL, 'maria valverde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20466', NULL, 'maria valverde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20467', NULL, 'maria valverde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20468', NULL, 'ROSA  ECHEVARRIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20469', NULL, 'ROSA  ECHEVARRIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20470', NULL, 'CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20471', NULL, 'ROSA ECHEVARRIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20472', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20473', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20474', NULL, 'CRISTOBAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20475', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20476', NULL, 'MARIA CHACON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20477', NULL, 'katy sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20478', NULL, 'katia sanchez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20479', NULL, 'KARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20480', NULL, 'YANG', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20481', NULL, 'patrick perez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20482', NULL, 'JORGE ORELLANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20483', NULL, 'maria villanueva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20484', NULL, 'HILDA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20485', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20486', NULL, 'HILDA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20487', NULL, 'HILDA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20488', NULL, 'HILDA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20489', NULL, 'HILDA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20490', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20491', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20492', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20493', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20494', NULL, 'GUIDO CUBILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20495', NULL, 'GUIDO CUBILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20496', NULL, 'GUIDO CUBILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20497', NULL, 'GUIDO CUBILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20498', NULL, 'GUIDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20499', NULL, 'GUIDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20500', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20501', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20502', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20503', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20504', NULL, 'ROBERTO ORELLANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20505', NULL, 'ROBERTO ORELLANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20506', NULL, 'ROBERTO ORELLANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20507', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20508', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20509', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20510', NULL, 'JULIA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20511', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20512', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20513', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20514', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20515', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20516', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20517', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20518', NULL, 'URSULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20519', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20520', NULL, 'ELDER SARMIENTO', '44330219', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20521', NULL, 'RUBEN HUAMANI GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20522', NULL, 'ALEXANDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20523', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20524', NULL, 'NESTOR ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20525', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20526', NULL, 'clotilde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20527', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20528', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20529', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20530', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20531', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20532', NULL, 'alex', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20533', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20534', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20535', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20536', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20537', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20538', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20539', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20540', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20541', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20542', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20543', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20544', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20545', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20546', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20547', NULL, 'JAZMIN VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20548', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20549', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20550', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20551', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20552', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20553', NULL, 'GIOVANI RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20554', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20555', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20556', NULL, 'fernanda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20557', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20558', NULL, 'MANUEL CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20559', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20560', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20561', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20562', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20563', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20564', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20565', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20566', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20567', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20568', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20569', NULL, 'choca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20570', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20571', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20572', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20573', NULL, 'brigit', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20574', NULL, 'brigit', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20575', NULL, 'HORACIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20576', NULL, 'HORACIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20577', NULL, 'HORACIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20578', NULL, 'HORACIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20579', NULL, 'ZULMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20580', NULL, 'ZULMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20581', NULL, 'ZULMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20582', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20583', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20584', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20585', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20586', NULL, 'mirian alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20587', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20588', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20589', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20590', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20591', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20592', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20593', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20594', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20595', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20596', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20597', NULL, 'hildira aguado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20598', NULL, 'hildira aguado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20599', NULL, 'hildira aguado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20600', NULL, 'hildira aguado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20601', NULL, 'hildira aguado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20602', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20603', NULL, 'sonia flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20604', NULL, 'sonia flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20605', NULL, 'sonia flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20606', NULL, 'sonia flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20607', NULL, 'socrates', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20608', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20609', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20610', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20611', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20612', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20613', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20614', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20615', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20616', NULL, 'GRACIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20617', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20618', NULL, 'evita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20619', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20620', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20621', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20622', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20623', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20624', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20625', NULL, 'roy carbajal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20626', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20627', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20628', NULL, 'LUIS CERVANTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20629', NULL, 'CLORINDA DOMINGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20630', NULL, 'MILAGROS MEJIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20631', NULL, 'GIOVANNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20632', NULL, 'MERCEDES CAMACHO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20633', NULL, 'MELANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20634', NULL, 'MARIA OLANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20635', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20636', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20637', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20638', NULL, 'AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20639', NULL, 'AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20640', NULL, 'AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20641', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20642', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20643', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20644', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20645', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20646', NULL, 'SONIA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20647', NULL, 'SONIA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20648', NULL, 'SONIA MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20649', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20650', NULL, 'roger vsquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20651', NULL, 'CRISTIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20652', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20653', NULL, 'PEDRO OLIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20654', NULL, 'PEDRO OLIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20655', NULL, 'PEDRO OLIVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20656', NULL, 'ANITA CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20657', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20658', NULL, 'DAVID CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20659', NULL, 'DAVID CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20660', NULL, 'DAVID CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20661', NULL, 'DAVID CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20662', NULL, 'GIMY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20663', NULL, 'BEATRIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20664', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20665', NULL, 'KARLA DIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20666', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20667', NULL, 'KELLY DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20668', NULL, 'KELLY DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20669', NULL, 'KELLY DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20670', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20671', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20672', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20673', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20674', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20675', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20676', NULL, 'BERNARDINA HUAMAN CONDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20677', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20678', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20679', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20680', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20681', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20682', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20683', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20684', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20685', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20686', NULL, 'SORAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20687', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20688', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20689', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20690', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20691', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20692', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20693', NULL, 'MADELEINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20694', NULL, 'MADELEINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20695', NULL, 'MADELEINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20696', NULL, 'elio', '44642978', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20697', NULL, 'ROJAS DAZA JULIO', '', '10062816029', '', '', 'cañete 5640- tienda 48- cercado de lima', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20698', NULL, 'ROSA SOLIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20699', NULL, 'OMAR BAILON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20700', NULL, 'OMAR CHAVEZ TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20701', NULL, 'OMAR CHAVEZ TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20702', NULL, 'OMAR CHAVEZ TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20703', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20704', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20705', NULL, 'LIDIA ALFARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20706', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20707', NULL, 'nataly ignacio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20708', NULL, 'MANCORA BEACH S.A.C.', '', '20504464416', '', '', 'AV. GRAU NRO. 350 RES. MIRAFLORES LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20709', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20710', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20711', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20712', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20713', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20714', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20715', NULL, 'ELIAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20716', NULL, 'MANCORA BEACH S.A.C.', '', '20504464416', '', '', 'AV. GRAU NRO. 350 RES. MIRAFLORES LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20717', NULL, 'JORGE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20718', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20719', NULL, 'ENIT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20720', NULL, 'MARLENE SOSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20721', NULL, 'MARIO MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20722', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20723', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20724', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20725', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20726', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20727', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20728', NULL, 'josef', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20729', NULL, 'ANDREINA ARAIZ RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20730', NULL, 'ANDREINA ARAIZ RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20731', NULL, 'ALONSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20732', NULL, 'ERICK GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20733', NULL, 'ERICK GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20734', NULL, 'ERICK GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20735', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20736', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20737', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20738', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20739', NULL, 'SANTOS CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20740', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20741', NULL, '- CORDOVA GENERAL SERVICE S.A.C', '', '20600261666', '', '', 'CAL.PUERTO VIEJO NRO. 116 URB. MARANGA ET. CUATRO (ALTURA DE LA CUADRA 8 DE AV. PRECURSORES) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20742', NULL, 'CORDOVA GENERAL SERVICE S.A.C', '', '20600261666', '', '', 'CAL.PUERTO VIEJO NRO. 116 URB. MARANGA ET. CUATRO (ALTURA DE LA CUADRA 8 DE AV. PRECURSORES) LIMA - LIMA - SAN MIGUEL', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20743', NULL, 'ANA VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20744', NULL, 'ANA VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20745', NULL, 'ANA VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20746', NULL, 'ANA VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20747', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20748', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20749', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20750', NULL, 'SILVIA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20751', NULL, 'SILVIA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20752', NULL, 'SILVIA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20753', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20754', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20755', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20756', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20757', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20758', NULL, 'MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20759', NULL, 'MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20760', NULL, 'MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20761', NULL, 'MARIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20762', NULL, 'SALLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20763', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20764', NULL, 'RAMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20765', NULL, 'RAMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20766', NULL, 'RAMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20767', NULL, 'JHONATHAN AGUIRRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20768', NULL, 'ELIZABETH PALCIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20769', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20770', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20771', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20772', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20773', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20774', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20775', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20776', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20777', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20778', NULL, 'CRISTOFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20779', NULL, 'CRISTOFER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20780', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20781', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20782', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20783', NULL, 'nilton davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20784', NULL, 'nilton davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20785', NULL, 'nilton davila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20786', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20787', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20788', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20789', NULL, 'pilar  geronimo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20790', NULL, 'esteban borda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20791', NULL, 'rafael montalvo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20792', NULL, 'marcianela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20793', NULL, 'rosa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20794', NULL, 'valeria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20795', NULL, 'gladeis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20796', NULL, 'rafael montalvo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20797', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20798', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20799', NULL, 'lino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20800', NULL, 'manuel ulloa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20801', NULL, 'petronila hilario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20802', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20803', NULL, 'bertha crispin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20804', NULL, 'luis angel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20805', NULL, 'INVERSIONES DE AMERICA DE SUR SOCIEDAD ANONIMA CERRADA ', '', '20519277299', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20806', NULL, 'INVERSIONES DE AMERICA DE SUR SOCIEDAD ANONIMA CERRADA ', '', '20519277299', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20807', NULL, 'INVERSIONES DE AMERICA DE SUR SOCIEDAD ANONIMA CERRADA ', '', '20519277299', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20808', NULL, 'MARIA', '00000000', '', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20809', NULL, 'cecilia nicho', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20810', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20811', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20812', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20813', NULL, 'MIRIAN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20814', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20815', NULL, 'MARGARITA', '00000000', '', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20816', NULL, 'MARGARITA', '00000000', '', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20817', NULL, 'MARGARITA', '00000000', '', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20818', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20819', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20820', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20821', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20822', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20823', NULL, 'israel atencio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20824', NULL, 'BERTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20825', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20826', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20827', NULL, 'VANESA', '00000000', '', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20828', NULL, 'VANESA', '00000000', '', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20829', NULL, 'VANESA', '00000000', '', '', '', 'AV. 2 DE MAYO NRO. 165 (FRENTE AL COLEGIO EL CARMEN) LIMA - HUARAL - HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20830', NULL, 'roxana rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20831', NULL, 'mery', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20832', NULL, 'rosabel zambrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20833', NULL, 'rosabel zambrano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20834', NULL, 'IRENE herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20835', NULL, 'IRENE herrera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20836', NULL, 'jose condory', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20837', NULL, 'DANIEL ESTRELLA GUERRA', '46298904', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20838', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20839', NULL, 'DORALISA SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20840', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20841', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20842', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20843', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20844', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20845', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20846', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20847', NULL, 'ENRRIQUE ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20848', NULL, 'mirsa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20849', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20850', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20851', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20852', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20853', NULL, 'JUAN VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20854', NULL, 'JUAN VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20855', NULL, 'JUAN VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20856', NULL, 'DOMINGO HERNANDEZ PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20857', NULL, 'DOMINGO HERNANDEZ PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20858', NULL, 'DOMINGO HERNANDEZ PALACIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20859', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20860', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20861', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20862', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20863', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20864', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20865', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20866', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20867', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20868', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20869', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20870', NULL, 'KIARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20871', NULL, 'KIARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20872', NULL, 'KIARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20873', NULL, 'KIARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20874', NULL, 'KIARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20875', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20876', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20877', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20878', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20879', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20880', NULL, 'JOSEFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20881', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20882', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20883', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20884', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20885', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20886', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20887', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20888', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20889', NULL, 'GLADYS PACHAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20890', NULL, 'GLADYS PACHAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20891', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20892', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20893', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20894', NULL, 'sullca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20895', NULL, 'sullca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20896', NULL, 'walter samanamud', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20897', NULL, 'albina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20898', NULL, 'zorayda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20899', NULL, 'bartolome serda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20900', NULL, 'alfaro reyes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20901', NULL, 'julia vera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20902', NULL, 'ana castillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20903', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20904', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20905', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20906', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20907', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20908', NULL, 'edil', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20909', NULL, 'edil', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20910', NULL, 'edil', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20911', NULL, 'edil', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20912', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20913', NULL, 'BENITO CHOQUE VILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20914', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20915', NULL, 'lesly navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20916', NULL, 'lesly navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20917', NULL, 'lesly navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20918', NULL, 'lesly navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20919', NULL, 'lesly navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20920', NULL, 'PERCY miranda peña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20921', NULL, 'lucy moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20922', NULL, 'lucy moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20923', NULL, 'lucy moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20924', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20925', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20926', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20927', NULL, 'MONICA OSORIO SAENS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20928', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20929', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20930', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20931', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20932', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20933', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20934', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20935', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20936', NULL, 'JULIO CESAR AYTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20937', NULL, 'JULIO CESAR AYTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20938', NULL, 'JULIO CESAR AYTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20939', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20940', NULL, 'KATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20941', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20942', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20943', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20944', NULL, 'MUNARIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20945', NULL, 'MUNARIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20946', NULL, 'ESPINOZA VILLEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20947', NULL, 'ESPINOZA VILLEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20948', NULL, 'ESPINOZA VILLEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20949', NULL, 'ESPINOZA VILLEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20950', NULL, 'rosana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20951', NULL, 'rosana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20952', NULL, 'rosana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20953', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20954', NULL, 'martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20955', NULL, 'martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20956', NULL, 'martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20957', NULL, 'martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20958', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20959', NULL, 'ALFREDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20960', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20961', NULL, 'MEDINA USCAMAYTA TANIA LUZ', '', '10476111884', '', '', 'ASENT.H. SEÑOR DE LOS MILAGROS MZ. C LT. 16', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20962', NULL, 'BORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20963', NULL, 'FABIOLA PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20964', NULL, 'JENNY GARCIA BARRIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20965', NULL, 'JENNY GARCIA BARRIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20966', NULL, 'ezel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20967', NULL, 'ezel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20968', NULL, 'ezel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20969', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20970', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20971', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20972', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20973', NULL, 'LILIANA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20974', NULL, 'LILIANA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20975', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20976', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20977', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20978', NULL, 'LUCI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20979', NULL, 'LUCI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20980', NULL, 'EBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20981', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20982', NULL, 'ROBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20983', NULL, 'richard contreras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20984', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20985', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20986', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20987', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20988', NULL, 'luisa contras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20989', NULL, 'luisa contras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20990', NULL, 'luisa contras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20991', NULL, 'luisa contras', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20992', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20993', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20994', NULL, 'justo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20995', NULL, 'justo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20996', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20997', NULL, 'rodrigo villavicencio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20998', NULL, 'rodrigo villavicencio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('20999', NULL, 'rodrigo villavicencio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21000', NULL, 'rodrigo villavicencio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21001', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21002', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21003', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21004', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21005', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21006', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21007', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21008', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21009', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21010', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21011', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21012', NULL, 'PABLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21013', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21014', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21015', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21016', NULL, 'MARIA BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21017', NULL, 'MARIA BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21018', NULL, 'MARIA BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21019', NULL, 'MARIA BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21020', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21021', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21022', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21023', NULL, 'ERICK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21024', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21025', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21026', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21027', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21028', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21029', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21030', NULL, 'juan manuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21031', NULL, 'juan manuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21032', NULL, 'juan manuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21033', NULL, 'juan manuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21034', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21035', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21036', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21037', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21038', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21039', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21040', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21041', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21042', NULL, 'PERUNOVO ARQUITECTURA & CONSTRUCCION S.A.C.', '', '20602120831', '', '', '-EL CORTIJO NRO. 523 DPTO. 301 URB. FUNDO MONTERRICO CHICO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21043', NULL, 'PERUNOVO ARQUITECTURA & CONSTRUCCION S.A.C.', '', '20602120831', '', '', '-EL CORTIJO NRO. 523 DPTO. 301 URB. FUNDO MONTERRICO CHICO LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21044', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21045', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21046', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21047', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21048', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21049', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21050', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21051', NULL, 'SAMUEL TOVAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21052', NULL, 'SAMUEL TOVAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21053', NULL, 'SAMUEL TOVAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21054', NULL, 'SAMUEL TOVAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21055', NULL, 'SAMUEL TOVAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21056', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21057', NULL, 'ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21058', NULL, 'ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21059', NULL, 'ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21060', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21061', NULL, 'antonia quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21062', NULL, 'antonia quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21063', NULL, 'antonia quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21064', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21065', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21066', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21067', NULL, 'GLADIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21068', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21069', NULL, 'TRAIN PRODUCCION E.I.R.L.', '', '20492724565', '', '', 'CAL.CALLE 5 MZA. D LOTE. 39 EL ASESOR II (ENTRE AVENIDA METROPOLITANA Y HUAROCHIRI) LIMA - LIMA - SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21070', NULL, 'paula moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21071', NULL, 'paula moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21072', NULL, 'paula moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21073', NULL, 'paula moreno', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21074', NULL, 'rafael bendezu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21075', NULL, 'rafael bendezu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21076', NULL, 'rafael bendezu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21077', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21078', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21079', NULL, 'PUBLICIDAD ODEESE S.A.C.- RADIO LIMA', '', '20101850171', '', '', 'JR. GRAL. PEDRO MORALES BERMUDEZ NRO. 140 URB. CIRCOLO (ENTRE LA CDRA 13 Y 14 AV. BRASIL) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21080', NULL, 'PATRICIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21081', NULL, 'PATRICIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21082', NULL, 'PATRICIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21083', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21084', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21085', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21086', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21087', NULL, 'maria esther', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21088', NULL, 'maria esther', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21089', NULL, 'maria esther', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21090', NULL, 'maria elena ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21091', NULL, 'maria elena ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21092', NULL, 'maria elena ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21093', NULL, 'maria elena ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21094', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21095', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21096', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21097', NULL, 'MARTHA ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21098', NULL, 'MARTHA ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21099', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21100', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21101', NULL, 'karol arango', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21102', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21103', NULL, 'GREGORIANA OROSCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21104', NULL, 'GUILLEN SOTOMAYOR RAFAEL GERARDO', '', '10256345647', '', '', 'av. julio c. tello # 832 carmen de la legua- callao-callao', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21105', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21106', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21107', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21108', NULL, 'WILLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21109', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21110', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21111', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21112', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21113', NULL, 'CINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21114', NULL, 'CINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21115', NULL, 'CINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21116', NULL, 'jenny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21117', NULL, 'jenny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21118', NULL, 'jenny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21119', NULL, 'nelly bello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21120', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21121', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21122', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21123', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21124', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21125', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21126', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21127', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21128', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21129', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21130', NULL, 'cesar tejada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21131', NULL, 'cesar tejada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21132', NULL, 'cesar tejada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21133', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21134', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21135', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21136', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21137', NULL, 'sully', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21138', NULL, 'gimy lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21139', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21140', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21141', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21142', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21143', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21144', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21145', NULL, 'RONALD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21146', NULL, 'IRMA ESTRELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21147', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21148', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21149', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21150', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21151', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21152', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21153', NULL, 'JUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21154', NULL, 'PILAR pretell', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21155', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21156', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21157', NULL, 'joel vasquez palma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21158', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21159', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21160', NULL, 'petronila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21161', NULL, 'bBLASS ESTRELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21162', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21163', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21164', NULL, 'eylin garcia', '40443641', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21165', NULL, 'daniela ferrari', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21166', NULL, 'jhon garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21167', NULL, 'BIERHAUS', '', '20600173724', '', '', 'PJ. FAUSTINO SANCHEZ CARRION NRO. 108 LIMA - LIMA - BARRANCO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21168', NULL, 'BIERHAUS', '', '20600173724', '', '', 'PJ. FAUSTINO SANCHEZ CARRION NRO. 108 LIMA - LIMA - BARRANCO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21169', NULL, 'enrique quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21170', NULL, 'soila montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21171', NULL, 'soila montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21172', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21173', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21174', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21175', NULL, 'rebeca ruiz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21176', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21177', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21178', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21179', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21180', NULL, 'junior', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21181', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21182', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21183', NULL, 'macondo comunicaciones eirlk', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21184', NULL, 'macondo comunicaciones eirlk', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21185', NULL, 'macondo comunicaciones eirlk', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21186', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21187', NULL, 'nelly  gomero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21188', NULL, 'MARIA LOUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21189', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21190', NULL, 'CRISTHIAN CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21191', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21192', NULL, 'daniel romero cordova', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21193', NULL, 'jesy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21194', NULL, 'jesy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21195', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21196', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21197', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21198', NULL, 'ALEXANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21199', NULL, 'amalia ramos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21200', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21201', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21202', NULL, 'salvador', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21203', NULL, 'CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21204', NULL, 'CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21205', NULL, 'CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21206', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21207', NULL, 'ROJAS CRUZ CRISTINA LUCIA', '', '10074662540', '', '', 'JR MANUEL CISNEROS 1164 BLOCK C- INT 43- LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21208', NULL, 'fresia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21209', NULL, 'deisy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21210', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21211', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21212', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21213', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21214', NULL, 'jose aquiño', '08600044', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21215', NULL, 'GRACIELA BUENDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21216', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21217', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21218', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21219', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21220', NULL, 'LENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21221', NULL, 'miguel flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21222', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21223', NULL, 'GABRIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21224', NULL, 'YENI MARLENE AMAO AREAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21225', NULL, 'CELESTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21226', NULL, 'zuleima', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21227', NULL, 'IRENE', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21228', NULL, 'IRENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21229', NULL, 'JENY BAILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21230', NULL, 'MARRIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21231', NULL, 'TITO MACHADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21232', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21233', NULL, 'GERARDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21234', NULL, 'DIANA TRIGOSO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21235', NULL, 'YESICA TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21236', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21237', NULL, 'LUCIY RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21238', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21239', NULL, 'EDUARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21240', NULL, 'EDUARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21241', NULL, 'EDUARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21242', NULL, 'EDUARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21243', NULL, 'EDUARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21244', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21245', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21246', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21247', NULL, 'EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21248', NULL, 'marlon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21249', NULL, 'marlon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21250', NULL, 'marlon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21251', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21252', NULL, 'JOS4E LUIS MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21253', NULL, 'JOS4E LUIS MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21254', NULL, 'JENY VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21255', NULL, 'JENY VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21256', NULL, 'JENY VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21257', NULL, 'EDERLYN GUISELLA BALDARRAGO FLORES', '40282561', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21258', NULL, 'EDERLYN GUISELLA BALDARRAGO FLORES', '40282561', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21259', NULL, 'EDERLYN GUISELLA BALDARRAGO FLORES', '40282561', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21260', NULL, 'ursula', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21261', NULL, 'AZUNTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21262', NULL, 'JIMY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21263', NULL, 'JIMY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21264', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21265', NULL, 'jimmy', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21266', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21267', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21268', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21269', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21270', NULL, 'miguel andrade', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21271', NULL, 'miguel andrade', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21272', NULL, 'miguel andrade', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21273', NULL, 'miguel andrade', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21274', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21275', NULL, 'xiomi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21276', NULL, 'MOISES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21277', NULL, 'mesias', '41275568', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21278', NULL, 'carlos nieto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21279', NULL, 'matilde soto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21280', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21281', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21282', NULL, 'JULY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21283', NULL, 'nelso garcia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21284', NULL, 'ANA BENAVENTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21285', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21286', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21287', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21288', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21289', NULL, 'JONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21290', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21291', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21292', NULL, 'segura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21293', NULL, 'segura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21294', NULL, 'segura', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21295', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21296', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21297', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21298', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21299', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21300', NULL, 'jovita martinez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21301', NULL, 'ZAMORA GALINDO ESTHER', '', '10417228999', '', '', 'CALLE LOS FLAMENCOS 186 SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21302', NULL, 'ZAMORA GALINDO ESTHER', '', '10417228999', '', '', 'CALLE LOS FLAMENCOS 186 SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21303', NULL, 'ZAMORA GALINDO ESTHER', '', '10417228999', '', '', 'CALLE LOS FLAMENCOS 186 SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21304', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21305', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21306', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21307', NULL, 'COCINA NATURAL S.A.C.', '', '20602384081', '', '', 'AV. GENERAL LUIS MIGUEL SANCHEZ CERRO NRO. 2160 LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21308', NULL, 'liz huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21309', NULL, 'liz huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21310', NULL, 'liz huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21311', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21312', NULL, 'wilson rodriguz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21313', NULL, 'SANCHEZ MENDOZA ELLA ELIZABETH', '', '10066957441', '', '', 'JR PABLO FERNANDINI N975 2DO PISO- BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21314', NULL, 'MARIA', '00000000', '', '', '', 'JR PABLO FERNANDINI N975 2DO PISO- BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21315', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21316', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21317', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21318', NULL, 'hugo navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21319', NULL, 'hugo navarro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21320', NULL, 'STEPHANY', '00000000', '', '', '', 'CALLE LOS FLAMENCOS 186 SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21321', NULL, 'ELINOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21322', NULL, 'ELINOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21323', NULL, 'ELINOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21324', NULL, 'GIOVA DORADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21325', NULL, 'GIOVA DORADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21326', NULL, 'GIOVA DORADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21327', NULL, 'GIOVA DORADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21328', NULL, 'ANGELA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21329', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21330', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21331', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21332', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21333', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21334', NULL, 'zoraida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21335', NULL, 'DEYSI ALBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21336', NULL, 'SORAIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21337', NULL, 'MARIANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21338', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21339', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21340', NULL, 'IVAN HURTADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21341', NULL, 'BERTHA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21342', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21343', NULL, 'ALEJANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21344', NULL, 'anderson', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21345', NULL, 'RAUL MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21346', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21347', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21348', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21349', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21350', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21351', NULL, 'RICARDO OYOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21352', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21353', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21354', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21355', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21356', NULL, 'CORPORACION FRUTOS DEL MAR S.A.C.', '', '20544125681', '', '', 'JR. MINERIA NRO. 177 (PARALELA AL MALL AVENTURA SANTA ANITA) LIMA - LIMA - SANTA ANITA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21357', NULL, 'KARINA CHUMPITAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21358', NULL, 'KARINA CHUMPITAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21359', NULL, 'KARINA CHUMPITAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21360', NULL, 'angela cordero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21361', NULL, 'angela cordero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21362', NULL, 'angela cordero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21363', NULL, 'angela cordero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21364', NULL, 'karina chumpitas pastrana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21365', NULL, 'AA PUBLICIDAD Y SERVICIOS GENERALES S.A.C', '', '20600477570', '', '', 'CAL.JORGE LUIS BORGES MZA. Ñ LOTE. 1 (ALT CDRA 5 Y 6 TOMAS MARZANO) LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21366', NULL, 'flor de maria', '00000000', '', '', '', 'CAL.JORGE LUIS BORGES MZA. Ñ LOTE. 1 (ALT CDRA 5 Y 6 TOMAS MARZANO) LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21367', NULL, 'flor de maria', '00000000', '', '', '', 'CAL.JORGE LUIS BORGES MZA. Ñ LOTE. 1 (ALT CDRA 5 Y 6 TOMAS MARZANO) LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21368', NULL, 'flor de maria', '00000000', '', '', '', 'CAL.JORGE LUIS BORGES MZA. Ñ LOTE. 1 (ALT CDRA 5 Y 6 TOMAS MARZANO) LIMA - LIMA - SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21369', NULL, 'CENTRO DE CAPACITACION Y NEGOCIOS CECAN S.A.C.', '', '20602282555', '', '', 'MZA. H LOTE. 24 COO. PRIMAVERA LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21370', NULL, 'CENTRO DE CAPACITACION Y NEGOCIOS CECAN S.A.C.', '', '20602282555', '', '', 'MZA. H LOTE. 24 COO. PRIMAVERA LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21371', NULL, 'CENTRO DE CAPACITACION Y NEGOCIOS CECAN S.A.C.', '', '20602282555', '', '', 'MZA. H LOTE. 24 COO. PRIMAVERA LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21372', NULL, 'CENTRO DE CAPACITACION Y NEGOCIOS CECAN S.A.C.', '', '20602282555', '', '', 'MZA. H LOTE. 24 COO. PRIMAVERA LIMA - LIMA - COMAS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21373', NULL, 'amircar tribeño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21374', NULL, 'amircar tribeño', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21375', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21376', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21377', NULL, 'FIORELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21378', NULL, 'JUAN CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21379', NULL, 'SALLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21380', NULL, 'SALLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21381', NULL, 'SALLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21382', NULL, 'SALLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21383', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21384', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21385', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21386', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21387', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21388', NULL, 'MANUELA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21389', NULL, 'MANUELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21390', NULL, 'paula venegas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21391', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21392', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21393', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21394', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21395', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21396', NULL, 'aracely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21397', NULL, 'aracely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21398', NULL, 'aracely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21399', NULL, 'aracely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21400', NULL, 'aracely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21401', NULL, 'aracely', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21402', NULL, 'felipe ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21403', NULL, 'LINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21404', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21405', NULL, 'felipe ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21406', NULL, 'pawel tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21407', NULL, 'pawel tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21408', NULL, 'pawel tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21409', NULL, 'pawel tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21410', NULL, 'MARCELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21411', NULL, 'MARCELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21412', NULL, 'MARCELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21413', NULL, 'MARCELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21414', NULL, 'AQUINO RIVERA MARCELINA ERASMA', '', '10097884965', '', '', 'jose saco rojas mz a4 lote 14 san antonio carabayllo', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21415', NULL, 'ferdinan pinares', '23847723', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21416', NULL, 'EDGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21417', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21418', NULL, 'reyes delfin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21419', NULL, 'rosita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21420', NULL, 'YUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21421', NULL, 'ROBERTO PADILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21422', NULL, 'JUAN GUERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21423', NULL, 'valentina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21424', NULL, 'AURY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21425', NULL, 'JESUS LEVIZACA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21426', NULL, 'EDER LEVIZACA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21427', NULL, 'isabel arteaga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21428', NULL, 'isabel arteaga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21429', NULL, 'isabel arteaga', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21430', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21431', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21432', NULL, 'ivan romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21433', NULL, 'ivan romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21434', NULL, 'ivan romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21435', NULL, 'ROBERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21436', NULL, 'ROBERT', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21437', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21438', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21439', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21440', NULL, 'luis carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21441', NULL, 'luis carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21442', NULL, 'luis carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21443', NULL, 'luis carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21444', NULL, 'luis carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21445', NULL, 'GUISELA MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21446', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21447', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21448', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21449', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21450', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21451', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21452', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21453', NULL, 'MARTHA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21454', NULL, 'MARTHA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21455', NULL, 'MARTHA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21456', NULL, 'ESTEBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21457', NULL, 'ESTEBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21458', NULL, 'ESTEBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21459', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21460', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21461', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21462', NULL, 'PAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21463', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21464', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21465', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21466', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21467', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21468', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21469', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21470', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21471', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21472', NULL, 'CARLOS RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21473', NULL, 'CARLOS RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21474', NULL, 'CARLOS RIVERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21475', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21476', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21477', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21478', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21479', NULL, 'ZULEMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21480', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21481', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21482', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21483', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21484', NULL, 'paola janet vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21485', NULL, 'paola janet vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21486', NULL, 'paola janet vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21487', NULL, 'paola janet vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21488', NULL, 'HENRY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21489', NULL, 'VIOLETA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21490', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21491', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21492', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21493', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21494', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21495', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21496', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21497', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21498', NULL, 'yanira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21499', NULL, 'miguel la torre', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21500', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21501', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21502', NULL, 'FERREDIANA E.I.R.L.', '', '20552264151', '', '', 'JR. PARURO NRO. 1279 INT. 203 URB. BARRIOS ALTOS (JIRON PARURO 1279 INTERIOR 203- 204) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21503', NULL, 'EUGENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21504', NULL, 'EUGENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21505', NULL, 'flor sigueña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21506', NULL, 'marcial espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21507', NULL, 'seminario', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21508', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21509', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21510', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21511', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21512', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21513', NULL, 'carmen aranda huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21514', NULL, 'carmen aranda huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21515', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21516', NULL, 'faustina guillen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21517', NULL, 'faustina guillen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21518', NULL, 'faustina guillen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21519', NULL, 'faustina guillen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21520', NULL, 'edith pinto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21521', NULL, 'nilton', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21522', NULL, 'FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21523', NULL, 'SILVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21524', NULL, 'delia tello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21525', NULL, 'paty ticona', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21526', NULL, 'teofilo rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21527', NULL, 'teofilo rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21528', NULL, 'teofilo rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21529', NULL, 'maximila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21530', NULL, 'maximila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21531', NULL, 'AGRONEGOCIOS LA GRAMA S.A.C.', '', '20513328495', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21532', NULL, 'georgina', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21533', NULL, 'georgina', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21534', NULL, 'georgina', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21535', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21536', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21537', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21538', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21539', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21540', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21541', NULL, 'chela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21542', NULL, 'chela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21543', NULL, 'chela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21544', NULL, 'chela', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21545', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21546', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21547', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21548', NULL, 'soila', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21549', NULL, 'soila', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21550', NULL, 'soila', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21551', NULL, 'ANA TERRONES', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21552', NULL, 'ANA TERRONES', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21553', NULL, 'JOSE DELGADO', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21554', NULL, 'JOSE DELGADO', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21555', NULL, 'JOSE DELGADO', '00000000', '', '', '', 'AV. GENERAL TRINIDAD MORAN NRO. 1111 (A UNA CUADRA DE LA AV. DOS DE MAYO) LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21556', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21557', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21558', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21559', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21560', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21561', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21562', NULL, 'NORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21563', NULL, 'mauricio rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21564', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21565', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21566', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21567', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21568', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21569', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21570', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21571', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21572', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21573', NULL, 'HILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21574', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21575', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21576', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21577', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21578', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21579', NULL, 'ALICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21580', NULL, 'MARCELINO QUILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21581', NULL, 'MARCELINO QUILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21582', NULL, 'MARCELINO QUILLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21583', NULL, 'GABIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21584', NULL, 'marcelino quillos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21585', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21586', NULL, 'luciano cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21587', NULL, 'ELENA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21588', NULL, 'ELENA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21589', NULL, 'ELENA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21590', NULL, 'ELENA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21591', NULL, 'ELENA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21592', NULL, 'lorenzo diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21593', NULL, 'lorenzo diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21594', NULL, 'lorenzo diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21595', NULL, 'lorenzo diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21596', NULL, 'lorenzo diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21597', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21598', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21599', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21600', NULL, 'julia ore', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21601', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21602', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21603', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21604', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21605', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21606', NULL, 'CESAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21607', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21608', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21609', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21610', NULL, 'fanny villa rubia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21611', NULL, 'fanny villa rubia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21612', NULL, 'fanny villa rubia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21613', NULL, 'fanny villa rubia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21614', NULL, 'fanny villa rubia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21615', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21616', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21617', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21618', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21619', NULL, 'liliam lopez', '07255601', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21620', NULL, 'su', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21621', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21622', NULL, 'kelly alarcon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21623', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21624', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21625', NULL, 'blanca', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21626', NULL, 'emmy yahuara', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21627', NULL, 'patricia quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21628', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21629', NULL, 'luis parian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21630', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21631', NULL, 'toledo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21632', NULL, 'toledo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21633', NULL, 'toledo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21634', NULL, 'toledo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21635', NULL, 'humberto naval', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21636', NULL, 'humberto naval', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21637', NULL, 'humberto naval', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21638', NULL, 'humberto naval', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21639', NULL, 'LITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21640', NULL, 'RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21641', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21642', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21643', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21644', NULL, 'eddy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21645', NULL, 'eddy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21646', NULL, 'eddy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21647', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21648', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21649', NULL, 'RICHARD', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21650', NULL, 'yomaira', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21651', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21652', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21653', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21654', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21655', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21656', NULL, 'RAQUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21657', NULL, 'doria rodriguez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21658', NULL, 'sorayda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21659', NULL, 'gian carlos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21660', NULL, 'aoide', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21661', NULL, 'JOSE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21662', NULL, 'JOSE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21663', NULL, 'JOSE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21664', NULL, 'JOSE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21665', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21666', NULL, 'GARRO VELASQUEZ MERCEDES', '', '10061964849', '', '', 'JR PEREZ DE TUDELA 2556 MIRONES BAJOS- CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21667', NULL, 'GARRO VELASQUEZ MERCEDES', '', '10061964849', '', '', 'JR PEREZ DE TUDELA 2556 MIRONES BAJOS- CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21668', NULL, 'REGINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21669', NULL, 'jose paucar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21670', NULL, 'DIEGO QUISPE CACERES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21671', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21672', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21673', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21674', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21675', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21676', NULL, 'ANABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21677', NULL, 'ANABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21678', NULL, 'ANABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21679', NULL, 'CESAR TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21680', NULL, 'CESAR TUESTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21681', NULL, 'DARIO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21682', NULL, 'DARIO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21683', NULL, 'DARIO FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21684', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21685', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21686', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21687', NULL, 'tino areas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21688', NULL, 'ERICK REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21689', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21690', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21691', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21692', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21693', NULL, 'ESTER  GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21694', NULL, 'ESTER  GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21695', NULL, 'ESTER  GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21696', NULL, 'MARTIN MESA HUANUCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21697', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21698', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21699', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21700', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21701', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21702', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21703', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21704', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21705', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21706', NULL, 'MARIA GAVILAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21707', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21708', NULL, 'YPOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21709', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21710', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21711', NULL, 'GINO ARONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21712', NULL, 'GINO ARONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21713', NULL, 'GINO ARONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21714', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21715', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21716', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21717', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21718', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21719', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21720', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21721', NULL, 'anny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21722', NULL, 'ANNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21723', NULL, 'ANNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21724', NULL, 'ANNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21725', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21726', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21727', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21728', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21729', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21730', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21731', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21732', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21733', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21734', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21735', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21736', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21737', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21738', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21739', NULL, 'ANTONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21740', NULL, 'magdaleno  oria condor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21741', NULL, 'magdaleno  oria condor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21742', NULL, 'magdaleno  oria condor', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21743', NULL, 'julia neyra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21744', NULL, 'julia neyra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21745', NULL, 'julia neyra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21746', NULL, 'MARIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21747', NULL, 'MARIA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21748', NULL, 'sara hurtado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21749', NULL, 'sara hurtado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21750', NULL, 'sara hurtado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21751', NULL, 'sara hurtado', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21752', NULL, 'sefora calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21753', NULL, 'sefora calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21754', NULL, 'sefora calderon', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21755', NULL, 'jose vigo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21756', NULL, 'jose vigo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21757', NULL, 'jose vigo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21758', NULL, 'lucila flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21759', NULL, 'lucila flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21760', NULL, 'NIEVES AYBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21761', NULL, 'NIEVES AYBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21762', NULL, 'CARLOTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21763', NULL, 'INES FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21764', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21765', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21766', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21767', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21768', NULL, 'GERSON NIETO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21769', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21770', NULL, 'ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21771', NULL, 'rafael', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21772', NULL, 'rafael', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21773', NULL, 'rafael', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21774', NULL, 'rafael', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21775', NULL, 'GREGORIANA OROZCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21776', NULL, 'GREGORIANA OROZCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21777', NULL, 'GREGORIANA OROZCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21778', NULL, 'ana robles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21779', NULL, 'ana robles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21780', NULL, 'ana robles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21781', NULL, 'ana robles', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21782', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21783', NULL, 'EDWIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21784', NULL, 'WILLIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21785', NULL, 'WILLIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21786', NULL, 'WILLIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21787', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21788', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21789', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21790', NULL, 'TEODORO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21791', NULL, 'TEODORO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21792', NULL, 'TEODORO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21793', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21794', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21795', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21796', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21797', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21798', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21799', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21800', NULL, 'carolina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21801', NULL, 'carolina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21802', NULL, 'carolina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21803', NULL, 'mosquera  flores alejandro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21804', NULL, 'mosquera  flores alejandro', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21805', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21806', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21807', NULL, 'antonio pacheco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21808', NULL, 'PAOLA VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21809', NULL, 'MAURA OBREGON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21810', NULL, 'TORIBIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21811', NULL, 'TORIBIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21812', NULL, 'TORIBIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21813', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21814', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21815', NULL, 'BETTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21816', NULL, 'andy ames', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21817', NULL, 'andy ames', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21818', NULL, 'andy ames', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21819', NULL, 'andy ames', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21820', NULL, 'jesus', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21821', NULL, 'DARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21822', NULL, 'carlos cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21823', NULL, 'alberto huaman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21824', NULL, 'carlos marquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21825', NULL, 'guissella', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21826', NULL, 'clotilde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21827', NULL, 'clotilde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21828', NULL, 'clotilde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21829', NULL, 'clotilde', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21830', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21831', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21832', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21833', NULL, 'LETICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21834', NULL, 'LETICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21835', NULL, 'LETICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21836', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21837', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21838', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21839', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21840', NULL, 'ABRAHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21841', NULL, 'ABRAHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21842', NULL, 'ABRAHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21843', NULL, 'rojas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21844', NULL, 'ADELA TOBAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21845', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21846', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21847', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21848', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21849', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21850', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21851', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21852', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21853', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21854', NULL, 'ELISA  CHILQUILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21855', NULL, 'EMERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21856', NULL, 'EMERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21857', NULL, 'EMERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21858', NULL, 'nelson ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21859', NULL, 'nelson ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21860', NULL, 'nelson ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21861', NULL, 'juan torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21862', NULL, 'juan torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21863', NULL, 'juan torres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21864', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21865', NULL, 'irma morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21866', NULL, 'irma morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21867', NULL, 'irma morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21868', NULL, 'irma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21869', NULL, 'irma', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21870', NULL, 'JESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21871', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21872', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21873', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21874', NULL, 'ESTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21875', NULL, 'nieves ariende', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21876', NULL, 'quiñones', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21877', NULL, 'quiñones', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21878', NULL, 'quiñones', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21879', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21880', NULL, 'RITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21881', NULL, 'juana roque', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21882', NULL, 'PJA RIO SUR E.I.R.L.', '', '20491409917', '', '', 'AV. SANTA ROSA NRO. SN INT. 42 MERCADO MODELO (FRENTE AL COLEGIO MEDALLA MILAGROSA) LIMA - CAÑETE - SAN VICENTE DE CAÑETE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21883', NULL, 'luis', '00000000', '', '', '', 'AV. SANTA ROSA NRO. SN INT. 42 MERCADO MODELO (FRENTE AL COLEGIO MEDALLA MILAGROSA) LIMA - CAÑETE - SAN VICENTE DE CAÑETE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21884', NULL, 'luis', '00000000', '', '', '', 'AV. SANTA ROSA NRO. SN INT. 42 MERCADO MODELO (FRENTE AL COLEGIO MEDALLA MILAGROSA) LIMA - CAÑETE - SAN VICENTE DE CAÑETE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21885', NULL, 'luis', '00000000', '', '', '', 'AV. SANTA ROSA NRO. SN INT. 42 MERCADO MODELO (FRENTE AL COLEGIO MEDALLA MILAGROSA) LIMA - CAÑETE - SAN VICENTE DE CAÑETE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21886', NULL, 'luis', '00000000', '', '', '', 'AV. SANTA ROSA NRO. SN INT. 42 MERCADO MODELO (FRENTE AL COLEGIO MEDALLA MILAGROSA) LIMA - CAÑETE - SAN VICENTE DE CAÑETE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21887', NULL, 'luis', '00000000', '', '', '', 'AV. SANTA ROSA NRO. SN INT. 42 MERCADO MODELO (FRENTE AL COLEGIO MEDALLA MILAGROSA) LIMA - CAÑETE - SAN VICENTE DE CAÑETE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21888', NULL, 'joselyn', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21889', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21890', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21891', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21892', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21893', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21894', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21895', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21896', NULL, 'GIANCARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21897', NULL, 'VIVIANA MARITZA GALVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21898', NULL, 'DIONICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21899', NULL, 'DIONICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21900', NULL, 'DIONICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21901', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21902', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21903', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21904', NULL, 'viviana rivera', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21905', NULL, 'BORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21906', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21907', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21908', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21909', NULL, 'rosa chero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21910', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21911', NULL, 'maria venero campana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21912', NULL, 'milagritos salas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21913', NULL, 'amanda vallejos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21914', NULL, 'LINSAY GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21915', NULL, 'RECSE CACHI ROGER MICHAEL', '', '10421122313', '', '', 'JR HIPOLITO UNANUE 1822 PSTO 38- LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21916', NULL, 'MEYTEM SAC', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21917', NULL, 'TORRES GAMARRA CARLOS ALEXANDER', '', '10435994976', '', '', 'JR. LUCANAS #295 LA VICTORIA- LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21918', NULL, 'ELIZABETH MIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21919', NULL, 'ALFONSO DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21920', NULL, 'LOS PORTALES S.A', '', '20301837896', '', '', 'JR. MARISCAL LA MAR NRO. 991 (ESQ.AV. EJERCITO.SALAVERRY PISOS 5, 6, 7) LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21921', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21922', NULL, 'nella', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21923', NULL, 'cesar salazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21924', NULL, 'HOLLER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21925', NULL, 'CESAR SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21926', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21927', NULL, 'ADRIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21928', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21929', NULL, 'WILFREDO FERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21930', NULL, 'LEONARDO ANDRADE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21931', NULL, 'ELINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21932', NULL, 'AGUEDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21933', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21934', NULL, 'JORGE FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21935', NULL, 'SILVIA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21936', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21937', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21938', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21939', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21940', NULL, 'EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21941', NULL, 'EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21942', NULL, 'EMILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21943', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21944', NULL, 'ROSARIO VALENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21945', NULL, 'ROSA CAHUANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21946', NULL, 'ROSA', '00000000', '', '', '', 'JR HIPOLITO UNANUE 1822 PSTO 38- LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21947', NULL, 'ERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21948', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21949', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21950', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21951', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21952', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21953', NULL, 'NELSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21954', NULL, 'NELSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21955', NULL, 'EBISUO E.I.R.L.', '', '20557795112', '', '', 'MZA. E LOTE. 10 APV. ASOC PROP 29 DE AGOSTO (EX SANTA ROSITA) LIMA - LIMA - CARABAYLLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21956', NULL, 'EBISUO E.I.R.L.', '', '20557795112', '', '', 'MZA. E LOTE. 10 APV. ASOC PROP 29 DE AGOSTO (EX SANTA ROSITA) LIMA - LIMA - CARABAYLLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21957', NULL, 'EBISUO E.I.R.L.', '', '20557795112', '', '', 'MZA. E LOTE. 10 APV. ASOC PROP 29 DE AGOSTO (EX SANTA ROSITA) LIMA - LIMA - CARABAYLLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21958', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21959', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21960', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21961', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21962', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21963', NULL, 'yacki', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21964', NULL, 'sabina tito', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21965', NULL, 'SABINA TITO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21966', NULL, 'ZOILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21967', NULL, 'NICOLAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21968', NULL, 'HEYDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21969', NULL, 'HEYDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21970', NULL, 'HEYDI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21971', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21972', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21973', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21974', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21975', NULL, 'YACKELINE SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21976', NULL, 'ANGELICA MIRANDA', '08862748', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21977', NULL, 'JORGE FIGUEROA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21978', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21979', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21980', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21981', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21982', NULL, 'MARGYORY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21983', NULL, 'DIEGO SANCHEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21984', NULL, 'angel villegas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21985', NULL, 'luz marina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21986', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21987', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21988', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21989', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21990', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21991', NULL, 'PERCY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21992', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21993', NULL, 'gloria gomes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21994', NULL, 'angelica  cardenas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21995', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21996', NULL, 'glenda chambi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21997', NULL, 'glenda chambi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21998', NULL, 'glenda chambi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('21999', NULL, 'glenda chambi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22000', NULL, 'INVERSIONES Y REPRESENTACIONES CABRERA S.A.C.', '', '20600183941', '', '', 'CAL.JORGE DE BARBIERI NRO. 261 ASC. EL PEDREGAL BAJO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22001', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22002', NULL, 'MARTHA OZORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22003', NULL, 'MARTHA OZORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22004', NULL, 'MARTHA OZORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22005', NULL, 'MARTHA OZORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22006', NULL, 'MARTHA OZORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22007', NULL, 'PATRICIA', '00000000', '', '', '', 'CAL.JORGE DE BARBIERI NRO. 261 ASC. EL PEDREGAL BAJO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22008', NULL, 'BERTHA', '00000000', '', '', '', 'CAL.JORGE DE BARBIERI NRO. 261 ASC. EL PEDREGAL BAJO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22009', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22010', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22011', NULL, 'VICTOR FIGUEROA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22012', NULL, 'EVENTOS MAVI E.I.R.L.', '', '20600832400', '', '', 'CAL.QUIPACOCHA NRO. 291 URB. TUPAC AMARU (ALTURA DE LA CUADRA 4 DE AV JOSE GABRIEL) LIMA - LIMA - INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22013', NULL, 'EVENTOS MAVI E.I.R.L.', '', '20600832400', '', '', 'CAL.QUIPACOCHA NRO. 291 URB. TUPAC AMARU (ALTURA DE LA CUADRA 4 DE AV JOSE GABRIEL) LIMA - LIMA - INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22014', NULL, 'EVENTOS MAVI E.I.R.L.', '', '20600832400', '', '', 'CAL.QUIPACOCHA NRO. 291 URB. TUPAC AMARU (ALTURA DE LA CUADRA 4 DE AV JOSE GABRIEL) LIMA - LIMA - INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22015', NULL, 'EVENTOS MAVI E.I.R.L.', '', '20600832400', '', '', 'CAL.QUIPACOCHA NRO. 291 URB. TUPAC AMARU (ALTURA DE LA CUADRA 4 DE AV JOSE GABRIEL) LIMA - LIMA - INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22016', NULL, 'ALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22017', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22018', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22019', NULL, 'JORGE BARREDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22020', NULL, 'FABIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22021', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22022', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22023', NULL, 'EDUARDO', '00000000', '', '', '', 'CAL.QUIPACOCHA NRO. 291 URB. TUPAC AMARU (ALTURA DE LA CUADRA 4 DE AV JOSE GABRIEL) LIMA - LIMA - INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22024', NULL, 'sara carruitero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22025', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22026', NULL, 'DANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22027', NULL, 'ARACELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22028', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22029', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22030', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22031', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22032', NULL, 'DEDIOS AYALA JOSE ALEXANDER', '', '10106739396', '', '', 'JR MADRID MZ N 8 LT 6 AAHH 5 DE NOVIEMBRE SAN JUAN DE LURIGANCHO - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22033', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22034', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22035', NULL, 'LUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22036', NULL, 'rumaldo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22037', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22038', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22039', NULL, 'GLORIA CIRLOPU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22040', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22041', NULL, 'guido', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22042', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22043', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22044', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22045', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22046', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22047', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22048', NULL, 'MERCEDES CAMPOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22049', NULL, 'CINEPLEX S.A', '', '20429683581', '', '', 'AV. JOSE LARCO NRO. 663 INT. 401 (PISOS 4-5) LIMA - LIMA - MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22050', NULL, 'CAROLINA CERONI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22051', NULL, 'CAROLINA CERONI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22052', NULL, 'CAROLINA CERONI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22053', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22054', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22055', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22056', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22057', NULL, 'RENE CARPIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22058', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22059', NULL, 'BETZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22060', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22061', NULL, 'JESICA CARRION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22062', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22063', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22064', NULL, 'ENMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22065', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22066', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22067', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22068', NULL, 'DIABNA CORNETERO', '76573350', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22069', NULL, 'CARMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22070', NULL, 'LILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22071', NULL, 'LILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22072', NULL, 'LILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22073', NULL, 'INVERSIONES REIXA S.A.C.', '', '20386489263', '', '', 'JR. BARTOLOME HERRERA NRO. 858 LIMA - LIMA - LINCE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22074', NULL, 'EVITA EIRLTDA', '', '20396454832', '', '', 'NRO. LL5 INT. 3 URB. LOS ROSALES DE SN ANDRES LA LIBERTAD - TRUJILLO - TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22075', NULL, 'SERGIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22076', NULL, 'ESTEBAN CASTIÑLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22077', NULL, 'ESTEBAN CASTIÑLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22078', NULL, 'ESTEBAN CASTIÑLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22079', NULL, 'ESTEBAN CASTIÑLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22080', NULL, 'ESTEBAN CASTIÑLLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22081', NULL, 'ABIGAIL OTERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22082', NULL, 'ESTEBAN CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22083', NULL, 'KATHY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22084', NULL, 'HECTOR LUNA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22085', NULL, 'ALBERTO URRUCHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22086', NULL, 'PATRICIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22087', NULL, 'CRISTINA MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22088', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22089', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22090', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22091', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22092', NULL, 'LORENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22093', NULL, 'LORENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22094', NULL, 'LORENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22095', NULL, 'LORENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22096', NULL, 'DARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22097', NULL, 'DARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22098', NULL, 'DARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22099', NULL, 'DARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22100', NULL, 'ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22101', NULL, 'JONATHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22102', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22103', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22104', NULL, 'ANA CARRANZA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22105', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22106', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22107', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22108', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22109', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22110', NULL, 'CYNTHIA YANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22111', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22112', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22113', NULL, 'MARCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22114', NULL, 'ALEJANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22115', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22116', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22117', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22118', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22119', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22120', NULL, 'ALEXANDER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22121', NULL, 'raul', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22122', NULL, 'raul', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22123', NULL, 'raul', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22124', NULL, 'CINTIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22125', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22126', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22127', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22128', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22129', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22130', NULL, 'dauri', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22131', NULL, 'samuel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22132', NULL, 'soledad fernandez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22133', NULL, 'flor sombra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22134', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22135', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22136', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22137', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22138', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22139', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22140', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22141', NULL, 'lupe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22142', NULL, 'carla alegria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22143', NULL, 'angela gonzales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22144', NULL, 'charo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22145', NULL, 'charo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22146', NULL, 'LUQUE HUAMAN VICTORIA YOLANDA', '', '10255459053', '', '', 'AV SANTA ROSA MZ C LOTE 8 B -CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22147', NULL, 'NANCY NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22148', NULL, 'AQUILINA NAVARRO', '00000000', '', '', '', 'AV SANTA ROSA MZ C LOTE 8 B -CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22149', NULL, 'EMILY RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22150', NULL, 'EMILY RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22151', NULL, 'EMILY RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22152', NULL, 'EMILY RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22153', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22154', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22155', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22156', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22157', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22158', NULL, 'WILMER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22159', NULL, 'JAIRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22160', NULL, 'gino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22161', NULL, 'gino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22162', NULL, 'GRUPO GAIA S.A.C.', '', '20604033277', '', '', 'AV. LOS CONQUISTADORES NRO. 396 INT. S102 URB. FUNDO CONDE DE SAN ISIDRO LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22163', NULL, 'JHENIFER MARCOS MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22164', NULL, 'TITO AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22165', NULL, 'TITO AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22166', NULL, 'TITO AYALA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22167', NULL, 'guillermina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22168', NULL, 'guillermina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22169', NULL, 'guillermina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22170', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22171', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22172', NULL, 'DORA HIDALGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22173', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22174', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22175', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22176', NULL, 'ROCIO GRADOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22177', NULL, 'gina veron', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22178', NULL, 'gina veron', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22179', NULL, 'gina veron', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22180', NULL, 'gina veron', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22181', NULL, 'ANGEL', '00000000', '', '', '', 'AV. LOS CONQUISTADORES NRO. 396 INT. S102 URB. FUNDO CONDE DE SAN ISIDRO LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22182', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22183', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22184', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22185', NULL, 'angel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22186', NULL, 'benita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22187', NULL, 'luis salvador', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22188', NULL, 'janeth', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22189', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22190', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22191', NULL, 'JOEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22192', NULL, 'IVET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22193', NULL, 'IVET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22194', NULL, 'IVET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22195', NULL, 'MARITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22196', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22197', NULL, 'ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22198', NULL, 'ORTEGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22199', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22200', NULL, 'YBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22201', NULL, 'MARGOTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22202', NULL, 'ALVARO MUÑOZ', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22203', NULL, 'ALVARO MUÑOZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22204', NULL, 'LENIN PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22205', NULL, 'MANUEL VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22206', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22207', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22208', NULL, 'AMABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22209', NULL, 'HEMILDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22210', NULL, 'LIZ PAITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22211', NULL, 'MARIA DE JESUS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22212', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22213', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22214', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22215', NULL, 'WILLIANS COCA DURAND', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22216', NULL, 'SABINA GIRON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22217', NULL, 'ALIDA HIDALGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22218', NULL, 'HELENA TENORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22219', NULL, 'SONIA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22220', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22221', NULL, 'LUCI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22222', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22223', NULL, 'DEBORA CUYA', '42837749', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22224', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22225', NULL, 'BLADIMIR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22226', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22227', NULL, 'YENI PAQREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22228', NULL, 'SARA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22229', NULL, 'JACOOB FLOREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22230', NULL, 'ARACELI HUANILO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22231', NULL, 'SARA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22232', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22233', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22234', NULL, 'GLADYS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22235', NULL, 'JACKELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22236', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22237', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22238', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22239', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22240', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22241', NULL, 'MARIA ELENA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22242', NULL, 'CARMEN ROSA VICENTE RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22243', NULL, 'ORLANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22244', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22245', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22246', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22247', NULL, 'FELICITAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22248', NULL, 'MARIBEL LA ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22249', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22250', NULL, 'JOSEEY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22251', NULL, 'CRISTIAN REYNOSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22252', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22253', NULL, 'INES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22254', NULL, 'DANIKSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22255', NULL, 'ines', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22256', NULL, 'ines', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22257', NULL, 'ines', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22258', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22259', NULL, 'GABRIELA MALASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22260', NULL, 'ROSARIO HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22261', NULL, 'AUGUSTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22262', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22263', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22264', NULL, 'CLAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22265', NULL, 'SAMUEL GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22266', NULL, 'SAMUEL GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22267', NULL, 'SAMUEL GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22268', NULL, 'SAMUEL GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22269', NULL, 'SAMUEL GUZMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22270', NULL, 'DAVID MERCADILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22271', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22272', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22273', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22274', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22275', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22276', NULL, 'NESTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22277', NULL, 'NESTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22278', NULL, 'ina pinedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22279', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22280', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22281', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22282', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22283', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22284', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22285', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22286', NULL, 'NATALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22287', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22288', NULL, 'MARTHA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22289', NULL, 'roberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22290', NULL, 'D\'JHUSS KOMPANY S.A.C.', '', '20603596014', '', '', 'CAL.PEREZ DE TUDELA NRO. 2066 LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22291', NULL, 'EDWIN MARQUEZ AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22292', NULL, 'JIMENEZ SANTOS HEBERLIN', '', '10413029339', '', '', 'mesones muro s/n sector sanja  honda jaen- cajamarca', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22293', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22294', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22295', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22296', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22297', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22298', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22299', NULL, 'DANITZA PACO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22300', NULL, 'DANITZA PACO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22301', NULL, 'DANITZA PACO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22302', NULL, 'maria romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22303', NULL, 'MIREYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22304', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22305', NULL, 'EVER PELAEZ', '41955145', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22306', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22307', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22308', NULL, 'JAVIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22309', NULL, 'ZOILA HUAPAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22310', NULL, 'MARIA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22311', NULL, 'REIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22312', NULL, 'REIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22313', NULL, 'REIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22314', NULL, 'REIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22315', NULL, 'REIDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22316', NULL, 'EDDELMIRA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22317', NULL, 'EDDELMIRA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22318', NULL, 'EDDELMIRA MEDINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22319', NULL, 'LUIS MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22320', NULL, 'LUIS MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22321', NULL, 'LUIS MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22322', NULL, 'LUIS MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22323', NULL, 'LUIS MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22324', NULL, 'LUIS CELIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22325', NULL, 'HILDA FLORES HUAMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22326', NULL, 'ESTELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22327', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22328', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22329', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22330', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22331', NULL, 'ESMERALDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22332', NULL, 'esmeralda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22333', NULL, 'KELLY SICHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22334', NULL, 'DINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22335', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22336', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22337', NULL, 'jimy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22338', NULL, 'jimy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22339', NULL, 'jimy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22340', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22341', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22342', NULL, 'RUBEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22343', NULL, 'ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22344', NULL, 'ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22345', NULL, 'ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22346', NULL, 'ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22347', NULL, 'FRANCISCO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22348', NULL, 'FRANCISCO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22349', NULL, 'FRANCISCO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22350', NULL, 'TOMASA FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22351', NULL, 'TOMASA FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22352', NULL, 'TOMASA FUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22353', NULL, 'GRUPO ALLCHECK S.A.C.', '', '20605505385', '', '', 'JR. RUIBARBOS NRO. 360 URB. LAS VIOLETAS LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22354', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22355', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22356', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22357', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22358', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22359', NULL, 'jenny', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22360', NULL, 'LIDIA PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22361', NULL, 'LIDIA PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22362', NULL, 'LIDIA PEÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22363', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22364', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22365', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22366', NULL, 'MARIO CAYLLAHURI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22367', NULL, 'ROXANA RENGIFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22368', NULL, 'ROXANA RENGIFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22369', NULL, 'ROXANA RENGIFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22370', NULL, 'SOFIA VERGARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22371', NULL, 'SOFIA VERGARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22372', NULL, 'SOFIA VERGARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22373', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22374', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22375', NULL, 'CARMEN CERCADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22376', NULL, 'CARMEN CERCADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22377', NULL, 'IMPORTACIONES SAN ROQUE E.I.R.L.', '', '20602843476', '', '', 'AV. EMANCIPACION NRO. 316 INT. 186 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22378', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22379', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22380', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22381', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22382', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22383', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22384', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22385', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22386', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22387', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22388', NULL, 'CAROLINA CIFUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22389', NULL, 'CAROLINA CIFUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22390', NULL, 'CAROLINA CIFUENTES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22391', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22392', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22393', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22394', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22395', NULL, 'DELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22396', NULL, 'KARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22397', NULL, 'JACQUELINE MALLMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22398', NULL, 'GLORIA RODRIGUES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22399', NULL, 'MORCHAJO EIRL', '', '20535891380', '', '', 'CALLE LAS ENCINAS N180 INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22400', NULL, 'INVERSIONES YAWI E.I.R.L', '', '20600326601', '', '', 'AV. GERARDO UNGER #5051 LOS OLIVOS-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22401', NULL, 'CARMEN', '00000000', '', '', '', 'AV. GERARDO UNGER #5051 LOS OLIVOS-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22402', NULL, 'JUANA ORELLANA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22403', NULL, 'ELIZABETH RODRIGUES', '00000000', '', '', '', 'CALLE LAS ENCINAS N180 INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22404', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22405', NULL, 'ANGELA CARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22406', NULL, 'URBANO ROMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22407', NULL, 'MELCHOR HUAMANI EDUARDO', '', '10804639778', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22408', NULL, 'MELCHOR HUAMANI EDUARDO', '', '10804639778', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22409', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22410', NULL, 'MELCHOR HUAMANI EDUARDO', '', '10804639778', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22411', NULL, 'MELCHOR HUAMANI EDUARDO', '', '10804639778', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22412', NULL, 'MELCHOR HUAMANI EDUARDO', '', '10804639778', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22413', NULL, 'MELCHOR HUAMANI EDUARDO', '', '10804639778', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22414', NULL, 'IRIS PAREDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22415', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22416', NULL, 'ANTONIA HUAMANCHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22417', NULL, 'NERLET CABALLERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22418', NULL, 'JULIA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22419', NULL, 'ANTONIO QUEVEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22420', NULL, 'TEOVALDO MANCILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22421', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22422', NULL, 'YANELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22423', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22424', NULL, 'AIDE VELORIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22425', NULL, 'DORIS ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22426', NULL, 'CARLA GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22427', NULL, 'GLADYS', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22428', NULL, 'GLADYS', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22429', NULL, 'GLADYS', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22430', NULL, 'GLADYS', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22431', NULL, 'VICTORIA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22432', NULL, 'VICTORIA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22433', NULL, 'VICTORIA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22434', NULL, 'VICTORIA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22435', NULL, 'VICTORIA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22436', NULL, 'VICTORIA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22437', NULL, 'VICTORIA', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22438', NULL, 'ROSARIO', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22439', NULL, 'ROSARIO', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22440', NULL, 'ROSARIO', '00000000', '', '', '', 'AV. MICAELA BASTIDAS NRO. 233 PICHANAQUI -CHANCHAMAYO -JUNIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22441', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22442', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22443', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22444', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22445', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22446', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22447', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22448', NULL, 'yesica', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22449', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22450', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22451', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22452', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22453', NULL, 'HUMBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22454', NULL, 'HUMBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22455', NULL, 'HUMBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22456', NULL, 'HUMBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22457', NULL, 'GERARDO MORENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22458', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22459', NULL, 'PINEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22460', NULL, 'LUISA SARMIENTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22461', NULL, 'JAIME CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22462', NULL, 'JAIME CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22463', NULL, 'JAIME CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22464', NULL, 'ELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22465', NULL, 'ELVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22466', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22467', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22468', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22469', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22470', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22471', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22472', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22473', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22474', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22475', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22476', NULL, 'MICHEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22477', NULL, 'CONTRATISTAS GENERALES MARIN S.A.C. - COGEMAR S.A.C.', '', '20506125031', '', '', 'MZA. B LOTE. 05 ASO SN PEDRO D MAMA ALTO (ALT. KM.38.5 DE LA CAR. CENTRAL) LIMA - HUAROCHIRI - SANTA EULALIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22478', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22479', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22480', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22481', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22482', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22483', NULL, 'jorge zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22484', NULL, 'jorge zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22485', NULL, 'jorge zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22486', NULL, 'jorge zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22487', NULL, 'HUGO MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22488', NULL, 'romi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22489', NULL, 'romi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22490', NULL, 'romi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22491', NULL, 'romi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22492', NULL, 'CANCHO AYARZA MERCEDES MARGARITA', '', '10096060616', '', '', 'JR HUANCAVELICA 664 INTERIOR 650 CERCADO DE LIMA -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22493', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22494', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22495', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22496', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22497', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22498', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22499', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22500', NULL, 'ROGELIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22501', NULL, 'PRUDENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22502', NULL, 'PRUDENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22503', NULL, 'PRUDENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22504', NULL, 'PRUDENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22505', NULL, 'PRUDENCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22506', NULL, 'NITZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22507', NULL, 'MARIIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22508', NULL, 'CAROLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22509', NULL, 'CAROLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22510', NULL, 'CAROLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22511', NULL, 'CAROLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22512', NULL, 'ISABEL CAMONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22513', NULL, 'ISABEL CAMONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22514', NULL, 'ISABEL CAMONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22515', NULL, 'ISABEL CAMONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22516', NULL, 'ISABEL CAMONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22517', NULL, 'SANTANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22518', NULL, 'SANTANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22519', NULL, 'SANTANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22520', NULL, 'SANTANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22521', NULL, 'SANTANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22522', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22523', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22524', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22525', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22526', NULL, 'MARTHA PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22527', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22528', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22529', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22530', NULL, 'SARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22531', NULL, 'LOURDES VALDIVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22532', NULL, 'ALEJANDRO BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22533', NULL, 'ALEJANDRO BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22534', NULL, 'ALEJANDRO BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22535', NULL, 'ALEJANDRO BENAVIDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22536', NULL, 'ALEX  VENGOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22537', NULL, 'ALEX  VENGOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22538', NULL, 'ALEX  VENGOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22539', NULL, 'ALEX  VENGOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22540', NULL, 'ALEX  VENGOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22541', NULL, 'ALEX VENGOA', '00000000', '', '', '', 'JR HUANCAVELICA 664 INTERIOR 650 CERCADO DE LIMA -LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22542', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22543', NULL, 'HILDA CHAUCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22544', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22545', NULL, 'EDAAL\'S SOCIEDAD ANONIMA CERRADA', '', '20515009621', '', '', 'CAL.8 MZA. I LOTE. 04 URB. SANTA RAQUEL (3RA ETAPA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22546', NULL, 'EDAAL\'S SOCIEDAD ANONIMA CERRADA', '', '20515009621', '', '', 'CAL.8 MZA. I LOTE. 04 URB. SANTA RAQUEL (3RA ETAPA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22547', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22548', NULL, 'TERESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22549', NULL, 'KARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22550', NULL, 'TEODORO ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22551', NULL, 'TEODORO ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22552', NULL, 'TEODORO ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22553', NULL, 'TEODORO ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22554', NULL, 'TEODORO ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22555', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22556', NULL, 'luis portal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22557', NULL, 'lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22558', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22559', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22560', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22561', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22562', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22563', NULL, 'ermen rosa gusman tello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22564', NULL, 'ermen rosa gusman tello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22565', NULL, 'ermen rosa gusman tello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22566', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22567', NULL, 'rosi', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22568', NULL, 'gonzalo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22569', NULL, 'luz palomino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22570', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22571', NULL, 'amani condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22572', NULL, 'amani condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22573', NULL, 'amani condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22574', NULL, 'amani condori', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22575', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22576', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22577', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22578', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22579', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22580', NULL, 'juana zapata', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22581', NULL, 'DAVID MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22582', NULL, 'DAVID MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22583', NULL, 'DAVID MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22584', NULL, 'DAVID MARCELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22585', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22586', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22587', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22588', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22589', NULL, 'LESLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22590', NULL, 'LESLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22591', NULL, 'LESLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22592', NULL, 'LESLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22593', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22594', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22595', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22596', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22597', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22598', NULL, 'CELIA DURAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22599', NULL, 'DAISY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22600', NULL, 'JAVIER HUARANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22601', NULL, 'WILLIAM VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22602', NULL, 'AIDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22603', NULL, 'JUAN CHIRINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22604', NULL, 'JUAN CHIRINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22605', NULL, 'JUAN CHIRINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22606', NULL, 'JUAN CHIRINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22607', NULL, 'GLORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22608', NULL, 'EMELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22609', NULL, 'EMELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22610', NULL, 'EMELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22611', NULL, 'nasaria quipo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22612', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22613', NULL, 'GRACIELA DEL VALLE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22614', NULL, 'LUISA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22615', NULL, 'LUISA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22616', NULL, 'LUISA CONDORI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22617', NULL, 'JIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22618', NULL, 'JIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22619', NULL, 'JIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22620', NULL, 'CARLOS CRUZADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22621', NULL, 'LIDIA VELASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22622', NULL, 'LIDIA VELASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22623', NULL, 'LIDIA VELASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22624', NULL, 'LIDIA VELASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22625', NULL, 'AMERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22626', NULL, 'EVELYN ESPINAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22627', NULL, 'EVELYN ESPINAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22628', NULL, 'EVELYN ESPINAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22629', NULL, 'EVELYN ESPINAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22630', NULL, 'EVELYN ESPINAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22631', NULL, 'NAYELI PALOMINO', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22632', NULL, 'NAYELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22633', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22634', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22635', NULL, 'JAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22636', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22637', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22638', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22639', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22640', NULL, 'SERVICIOS AUTOMATIZADOS DE TABLEROS E.I.R.L.', '', '20600400836', '', '', 'JR. AZANGARO NRO. 983 INT. 17 (A MEDIA CDRA DEL PARQUE UNIVERSITARIO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22641', NULL, 'NOLASCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22642', NULL, 'CHARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22643', NULL, 'ROSALYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22644', NULL, 'GLORIA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22645', NULL, 'GLORIA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22646', NULL, 'GLORIA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22647', NULL, 'GLORIA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22648', NULL, 'GLORIA ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22649', NULL, 'CELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22650', NULL, 'WALTER YARANGA QUISPE', '09772636', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22651', NULL, 'MABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22652', NULL, 'DARLIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22653', NULL, 'MEYTEN S.A.C.', '', '20602863116', '', '', 'JR. UCAYALI NRO. 768 INT. 105 OTR. CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22654', NULL, 'JESICA VERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22655', NULL, 'ester', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22656', NULL, 'TANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22657', NULL, 'JUANA', '00000000', '', '', '', 'JR. AZANGARO NRO. 983 INT. 17 (A MEDIA CDRA DEL PARQUE UNIVERSITARIO) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22658', NULL, 'JULIA', '00000000', '', '', '', 'JR. UCAYALI NRO. 768 INT. 105 OTR. CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22659', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22660', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22661', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22662', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22663', NULL, 'WALTER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22664', NULL, 'KAREN RIVAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22665', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22666', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22667', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22668', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22669', NULL, 'GERMAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22670', NULL, 'EDUARDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22671', NULL, 'EDUARDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22672', NULL, 'EDUARDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22673', NULL, 'EDUARDO QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22674', NULL, 'JOSE CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22675', NULL, 'JOSE CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22676', NULL, 'JOSE CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22677', NULL, 'JOSE CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22678', NULL, 'JOSE CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22679', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22680', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22681', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22682', NULL, 'cesar santos huapaya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22683', NULL, 'PRAXIS CORPREM SOCIEDAD ANONIMA CERRADA', '', '20600545168', '', '', 'CAL.TERESA GONZALES D FANNING NRO. 162 INT. 201 LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22684', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22685', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22686', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22687', NULL, 'KEVIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22688', NULL, 'SARA QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22689', NULL, 'SARA QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22690', NULL, 'SARA QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22691', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22692', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22693', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22694', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22695', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22696', NULL, 'MARLENE YAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22697', NULL, 'CARLOS COLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22698', NULL, 'CARLOS COLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22699', NULL, 'CARLOS COLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22700', NULL, 'CARLOS COLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22701', NULL, 'CARLOS COLAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22702', NULL, 'MARLENY YAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22703', NULL, 'MARLENY YAYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22704', NULL, 'MARCELINA ESTRDADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22705', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22706', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22707', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22708', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22709', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22710', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22711', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22712', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22713', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22714', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22715', NULL, 'DESARROLLO DE MARCAS PROPIAS SOCIEDAD ANONIMA CERRADA', '', '20552729219', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22716', NULL, 'DESARROLLO DE MARCAS PROPIAS SOCIEDAD ANONIMA CERRADA', '', '20552729219', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22717', NULL, 'DESARROLLO DE MARCAS PROPIAS SOCIEDAD ANONIMA CERRADA', '', '20552729219', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22718', NULL, 'DESARROLLO DE MARCAS PROPIAS SOCIEDAD ANONIMA CERRADA', '', '20552729219', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22719', NULL, 'DESARROLLO DE MARCAS PROPIAS SOCIEDAD ANONIMA CERRADA', '', '20552729219', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22720', NULL, 'MARCO CALDERON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22721', NULL, 'CESAR', '00000000', '', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22722', NULL, 'CESAR', '00000000', '', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22723', NULL, 'CESAR', '00000000', '', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22724', NULL, 'CESAR', '00000000', '', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22725', NULL, 'CESAR', '00000000', '', '', '', 'AV. LOS FAISANES NRO. 136 URB. CAMPIÑA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22726', NULL, 'WILFREDO ESTRADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22727', NULL, 'WILFREDO ESTRADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22728', NULL, 'JULIA ALFARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22729', NULL, 'RUTH ARAUJANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22730', NULL, 'DELIA SANTANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22731', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22732', NULL, 'ROSA', '00000000', '', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 ---- CENTRO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22733', NULL, 'ANAHI ESCOBEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22734', NULL, 'GLORIA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22735', NULL, 'TELESFERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22736', NULL, 'TELESFERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22737', NULL, 'TELESFERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22738', NULL, 'TELESFERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22739', NULL, 'TELESFERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22740', NULL, 'CATERING & SERVICES HAO\'S E.I.R.L.', '', '20556948420', '', '', 'MZA. E LOTE. 2 COO. SAN JUAN DE BUJAMA BAJA (FRENTE AL ESTADIO KM 90 PANAM. SUR) LIMA - CAÑETE - MALA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22741', NULL, 'CRISTIAN SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22742', NULL, 'CRISTIAN SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22743', NULL, 'CRISTIAN SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22744', NULL, 'CRISTIAN SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22745', NULL, 'BERTHA VELASQUES', '00000000', '', '', '', 'MZA. E LOTE. 2 COO. SAN JUAN DE BUJAMA BAJA (FRENTE AL ESTADIO KM 90 PANAM. SUR) LIMA - CAÑETE - MALA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22746', NULL, 'BERTHA VELASQUES', '00000000', '', '', '', 'MZA. E LOTE. 2 COO. SAN JUAN DE BUJAMA BAJA (FRENTE AL ESTADIO KM 90 PANAM. SUR) LIMA - CAÑETE - MALA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22747', NULL, 'BERTHA VELASQUES', '00000000', '', '', '', 'MZA. E LOTE. 2 COO. SAN JUAN DE BUJAMA BAJA (FRENTE AL ESTADIO KM 90 PANAM. SUR) LIMA - CAÑETE - MALA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22748', NULL, 'BERTHA VELASQUES', '00000000', '', '', '', 'MZA. E LOTE. 2 COO. SAN JUAN DE BUJAMA BAJA (FRENTE AL ESTADIO KM 90 PANAM. SUR) LIMA - CAÑETE - MALA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22749', NULL, 'BERTHA VELASQUES', '00000000', '', '', '', 'MZA. E LOTE. 2 COO. SAN JUAN DE BUJAMA BAJA (FRENTE AL ESTADIO KM 90 PANAM. SUR) LIMA - CAÑETE - MALA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22750', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22751', NULL, 'PERCY ROSALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22752', NULL, 'PERCY ROSALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22753', NULL, 'PERCY ROSALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22754', NULL, 'ROSA SANTAMARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22755', NULL, 'ROSA SANTAMARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22756', NULL, 'ROSA SANTAMARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22757', NULL, 'ROSA SANTAMARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22758', NULL, 'ROSA SANTAMARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22759', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22760', NULL, 'INDUSTRIAS HPLAST E.I.R.L.', '', '20546797342', '', '', 'MZA. T3 LOTE. 01 A.H. LOS OLIVOS DE PRO (CRUCE DE BETANCUR CON 2 DE OCTUBRE) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22761', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22762', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22763', NULL, 'DANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22764', NULL, 'ABARCA ROQUE MARIA ANTONIETA', '', '10093297119', '', '', 'CAMPO POBLADO  TORRE BLANCA  MZ G LT 4 ZONA E  HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22765', NULL, 'VICTOR RODRIGUEZ', '00000000', '', '', '', 'CAMPO POBLADO  TORRE BLANCA  MZ G LT 4 ZONA E  HUARAL', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22766', NULL, 'ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22767', NULL, 'SOFIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22768', NULL, 'GRUPO PURITO NORTE SOCIEDAD ANONIMA CERRADA', '', '20392864670', '', '', 'JR. ANDAHUAYLAS NRO. 1430 LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22769', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22770', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22771', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22772', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22773', NULL, 'JHON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22774', NULL, 'MARICRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22775', NULL, 'JANETH QUISPE RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22776', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22777', NULL, 'NELSON', '00000000', '', '', '', 'AV. EL POLO NRO. 375 URB. MONTERRICO CHICO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22778', NULL, 'NELSON', '00000000', '', '', '', 'AV. EL POLO NRO. 375 URB. MONTERRICO CHICO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22779', NULL, 'NELSON', '00000000', '', '', '', 'AV. EL POLO NRO. 375 URB. MONTERRICO CHICO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22780', NULL, 'agustin ramos', '00000000', '', '', '', 'AV. EL POLO NRO. 375 URB. MONTERRICO CHICO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22781', NULL, 'federico zabala', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22782', NULL, 'alfredo camones', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22783', NULL, 'javier lozano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22784', NULL, 'javier lozano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22785', NULL, 'javier lozano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22786', NULL, 'javier lozano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22787', NULL, 'javier lozano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22788', NULL, 'marlene valdeon trujillo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22789', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22790', NULL, 'janneth yvonne vizconde suarez', '40511562', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22791', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22792', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22793', NULL, 'JACKELINE luna', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22794', NULL, 'javier lozano', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22795', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22796', NULL, 'HECTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22797', NULL, 'heleida saklazar', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22798', NULL, 'teodoro figueroa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22799', NULL, 'teodoro figueroa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22800', NULL, 'teodoro figueroa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22801', NULL, 'teodoro figueroa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22802', NULL, 'teodoro figueroa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22803', NULL, 'KELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22804', NULL, 'JANETH MANSILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22805', NULL, 'JANETH MANSILLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22806', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22807', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22808', NULL, 'MIRIAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22809', NULL, 'JORGE INCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22810', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22811', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22812', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22813', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22814', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22815', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22816', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22817', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22818', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22819', NULL, 'NOEMI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22820', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22821', NULL, 'CLARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22822', NULL, 'CARDENAS FLORES DE PEÑA NANCY PATRICIA', '', '10154297613', '', '', 'PARQUE UNION PANAMERICANA 491 BALCONCILLO LA VICTORIA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22823', NULL, 'JESUS PARRAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22824', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22825', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22826', NULL, 'ELIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22827', NULL, 'MAYRA RENJIFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22828', NULL, 'VICTOR GUERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22829', NULL, 'ALVIR MOLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22830', NULL, 'LURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22831', NULL, 'JOSELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22832', NULL, 'ROMINA ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22833', NULL, 'anne', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22834', NULL, 'anne', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22835', NULL, 'anne', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22836', NULL, 'zoila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22837', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22838', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22839', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22840', NULL, 'gianuna bellis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22841', NULL, 'yesenia espinoza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22842', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22843', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22844', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22845', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22846', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22847', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22848', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22849', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22850', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22851', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22852', NULL, 'RICHARD  VELAPATIÑO PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22853', NULL, 'RICHARD  VELAPATIÑO PEREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22854', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22855', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22856', NULL, 'MIGUEL TIRAJEROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22857', NULL, 'raul tapia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22858', NULL, 'iliana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22859', NULL, 'LIZBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22860', NULL, 'VILMA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22861', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22862', NULL, 'EDUARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22863', NULL, 'NELY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22864', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22865', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22866', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22867', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22868', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22869', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22870', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22871', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22872', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22873', NULL, 'LILIAN GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22874', NULL, 'MERCEDES PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22875', NULL, 'ORLANDO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22876', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22877', NULL, 'FREDY OLAYBEL', '09840403', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22878', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22879', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22880', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22881', NULL, 'betty vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22882', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22883', NULL, 'TIRADO RAU PEDRO HERNAN', '', '10094051954', '', '', 'JIRON FRANCISCO VALLEJO 483 SAN JUAN DE MIRAFLORES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22884', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22885', NULL, 'JAIME TELLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22886', NULL, 'JHON TREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22887', NULL, 'YACK CODOVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22888', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22889', NULL, 'ARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22890', NULL, 'NORMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22891', NULL, 'DOMINGUEZ CASTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22892', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22893', NULL, 'LUDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22894', NULL, 'LUDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22895', NULL, 'LUDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22896', NULL, 'LUDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22897', NULL, 'SARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22898', NULL, 'RAFAEL CHIRINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22899', NULL, 'margot', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22900', NULL, 'margot', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22901', NULL, 'margot', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22902', NULL, 'margot', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22903', NULL, 'margot', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22904', NULL, 'margot', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22905', NULL, 'margot', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22906', NULL, 'BENYI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22907', NULL, 'DILCER CUBAS', '48838528', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22908', NULL, 'luis velasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22909', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22910', NULL, 'CINTIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22911', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22912', NULL, 'olga morales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22913', NULL, 'EULALIO HUALLPA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22914', NULL, 'vanesa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22915', NULL, 'marcial velasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22916', NULL, 'marcial velasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22917', NULL, 'marcial velasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22918', NULL, 'ARTURO GRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22919', NULL, 'ARTURO GRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22920', NULL, 'ARTURO GRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22921', NULL, 'ARTURO GRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22922', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22923', NULL, 'vladimir de las casas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22924', NULL, 'vladimir de las casas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22925', NULL, 'vladimir de las casas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22926', NULL, 'vladimir de las casas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22927', NULL, 'CARLOS FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22928', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22929', NULL, 'JOHANA ZARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22930', NULL, 'JOHANA ZARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22931', NULL, 'JOHANA ZARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22932', NULL, 'JOHANA ZARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22933', NULL, 'JOHANA ZARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22934', NULL, 'MANUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22935', NULL, 'YETSAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22936', NULL, 'HUGO TORRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22937', NULL, 'HUGO TORRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22938', NULL, 'HUGO TORRE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22939', NULL, 'JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22940', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22941', NULL, 'BETY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22942', NULL, 'PATRICIA', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22943', NULL, 'LUIS salcedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22944', NULL, 'LUIS salcedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22945', NULL, 'LUIS salcedo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22946', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22947', NULL, 'cristhian de la cruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22948', NULL, 'caropl peres', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22949', NULL, 'MARIA AMADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22950', NULL, 'SARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22951', NULL, 'ROSA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22952', NULL, 'ROSA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22953', NULL, 'ROSA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22954', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22955', NULL, 'JENY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22956', NULL, 'NATALIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22957', NULL, 'PAULINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22958', NULL, 'JHONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22959', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22960', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22961', NULL, 'ALEX', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22962', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22963', NULL, 'FABIOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22964', NULL, 'MAGNOLIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22965', NULL, 'MAGNOLIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22966', NULL, 'MAGNOLIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22967', NULL, 'MAGNOLIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22968', NULL, 'MAGNOLIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22969', NULL, 'MAGNOLIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22970', NULL, 'MAGNOLIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22971', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22972', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22973', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22974', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22975', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22976', NULL, 'tofa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22977', NULL, 'tofa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22978', NULL, 'tofa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22979', NULL, 'tofa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22980', NULL, 'tofa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22981', NULL, 'tofa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22982', NULL, 'tofa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22983', NULL, 'EMILY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22984', NULL, 'emily corrales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22985', NULL, 'maria tacas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22986', NULL, 'GASTON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22987', NULL, 'GASTON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22988', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22989', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22990', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22991', NULL, 'celestino', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22992', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22993', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22994', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22995', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22996', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22997', NULL, 'DONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22998', NULL, 'DONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('22999', NULL, 'DONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23000', NULL, 'ROSA SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23001', NULL, 'CLARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23002', NULL, 'HERNAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23003', NULL, 'HERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23004', NULL, 'MATEO ALBINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23005', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23006', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23007', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23008', NULL, 'MLP INVERSIONES S.A.C', '', '20600967933', '', '', 'JR. CORONEL LEONCIO PRADO NRO. 762 INT. 66 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23009', NULL, 'MARIBEL VELASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23010', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23011', NULL, 'jose luis', '00000000', '', '', '', 'JR. CORONEL LEONCIO PRADO NRO. 762 INT. 66 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23012', NULL, 'jose luis', '00000000', '', '', '', 'JR. CORONEL LEONCIO PRADO NRO. 762 INT. 66 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23013', NULL, 'jose luis', '00000000', '', '', '', 'JR. CORONEL LEONCIO PRADO NRO. 762 INT. 66 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23014', NULL, 'jose luis', '00000000', '', '', '', 'JR. CORONEL LEONCIO PRADO NRO. 762 INT. 66 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23015', NULL, 'DAVID', '00000000', '', '', '', 'JR. CORONEL LEONCIO PRADO NRO. 762 INT. 66 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23016', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23017', NULL, 'ENVIRO-TECH SOCIEDAD ANONIMA CERRADA', '', '20511228523', '', '', 'CAL.EL CHACO NRO. 2650 URB. PERU (ALT.CD.26 AV.PERU) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23018', NULL, 'ENVIRO-TECH SOCIEDAD ANONIMA CERRADA', '', '20511228523', '', '', 'CAL.EL CHACO NRO. 2650 URB. PERU (ALT.CD.26 AV.PERU) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23019', NULL, 'teofila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23020', NULL, 'enilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23021', NULL, 'enilda', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23022', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23023', NULL, 'ERICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23024', NULL, 'ruth bautista', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23025', NULL, 'carol cespedes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23026', NULL, 'carol cespedes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23027', NULL, 'carol cespedes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23028', NULL, 'carol cespedes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23029', NULL, 'carol cespedes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23030', NULL, 'carol cespedes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23031', NULL, 'luz mesa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23032', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23033', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23034', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23035', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23036', NULL, 'etelvina silva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23037', NULL, 'etelvina silva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23038', NULL, 'etelvina silva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23039', NULL, 'ADELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23040', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23041', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23042', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23043', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23044', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23045', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23046', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23047', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23048', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23049', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23050', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23051', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23052', NULL, 'BEATRIZ BALTAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23053', NULL, 'enrique purizaca', '25861497', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23054', NULL, 'enrique purizaca', '25861497', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23055', NULL, 'enrique purizaca', '25861497', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23056', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23057', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23058', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23059', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23060', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23061', NULL, 'JANET', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23062', NULL, 'ALFREDO LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23063', NULL, 'ALFREDO LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23064', NULL, 'ALFREDO LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23065', NULL, 'ALFREDO LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23066', NULL, 'ALFREDO LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23067', NULL, 'ALFREDO LOZANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23068', NULL, 'FELIPE PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23069', NULL, 'FELIPE PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23070', NULL, 'FELIPE PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23071', NULL, 'FELIPE PRADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23072', NULL, 'GONZALES SILVESTRE ROSA', '', '10215127813', '', '', 'AA.HH. ALAN GARCIA MZA LT3 PARACAS-PISCO-ICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23073', NULL, 'COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23074', NULL, 'COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23075', NULL, 'COSME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23076', NULL, 'MIREYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23077', NULL, 'PALME SERVICIOS GENERALES S.R.L.', '', '20530738249', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23078', NULL, 'PALME SERVICIOS GENERALES S.R.L.', '', '20530738249', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23079', NULL, 'MATEO ALVARADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23080', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23081', NULL, 'SARMIENTO HUGO ERIC', '', '10432460598', '', '', 'AH HEROES DE SAN JUAN AV MIGUEL IGLESIAS MZ I 1 LOTE 23 SJM', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23082', NULL, 'FELA SATURNO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23083', NULL, 'JUAN LOPEZ TOLEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23084', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23085', NULL, 'LUIS RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23086', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23087', NULL, 'OLGA CARDENAS CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23088', NULL, 'OLGA CARDENAS CENTENO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23089', NULL, 'MARLOT MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23090', NULL, 'IGLESIA EVANGELICA BOLA DE NIEVE EN PERU', '', '20603373112', '', '', 'CAL.AMAUTA MZA. R LOTE. 3 URB. SAN JUAN BAUTISTA DE VILLA LIMA - LIMA - CHORRILLOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23091', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23092', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23093', NULL, 'JANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23094', NULL, 'MIRTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23095', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23096', NULL, 'ricardo luyo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23097', NULL, 'MARISOL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23098', NULL, 'delfia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23099', NULL, 'M AYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23100', NULL, 'ANA MARIA GONZALEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23101', NULL, 'CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23102', NULL, 'CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23103', NULL, 'CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23104', NULL, 'CARDENAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23105', NULL, 'SANTA CRUZ POLICIA NACIONAL DEL PERU', '', '20165465009', '', '', 'JR. LOS CIBELES NRO. 191 URB. VILLACAMPA (DIRECCION DE ECONOMIA Y FINANZAS PNP) LIMA - LIMA - RIMAC', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23106', NULL, 'POLICIA NACIONAL DEL PERU', '', '20165465009', '', '', 'JR. LOS CIBELES NRO. 191 URB. VILLACAMPA (DIRECCION DE ECONOMIA Y FINANZAS PNP) LIMA - LIMA - RIMAC', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23107', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23108', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23109', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23110', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23111', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23112', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23113', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23114', NULL, 'VERONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23115', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23116', NULL, 'QHARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23117', NULL, 'QHARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23118', NULL, 'QHARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23119', NULL, 'GONZALINA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23120', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23121', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23122', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23123', NULL, 'PAULA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23124', NULL, 'GONZALINA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23125', NULL, 'ENRIQUE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23126', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23127', NULL, 'ROSALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23128', NULL, 'ROSALINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23129', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23130', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23131', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23132', NULL, 'KARIM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23133', NULL, 'JUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23134', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23135', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23136', NULL, 'MARLENI ESTELADA FRANCO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23137', NULL, 'marleni', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23138', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23139', NULL, 'ALEXANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23140', NULL, 'JUAN JAIME CRUZADO HERNANDEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23141', NULL, 'SONYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23142', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23143', NULL, 'dora', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23144', NULL, 'MARITA CASTRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23145', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23146', NULL, 'MARTA ROBLES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23147', NULL, 'CARMEN ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23148', NULL, 'CARMEN ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23149', NULL, 'CARMEN ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23150', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23151', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23152', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23153', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23154', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23155', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23156', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23157', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23158', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23159', NULL, 'OLGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23160', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23161', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23162', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23163', NULL, 'violeta valencia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23164', NULL, 'LUIS ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23165', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23166', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23167', NULL, 'yivsy', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23168', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23169', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23170', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23171', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23172', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23173', NULL, 'MARICELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23174', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23175', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23176', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23177', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23178', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23179', NULL, 'OSCAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23180', NULL, 'CONSTRUCTORA Y CONSULTORA SCALA E.I.R.L.', '', '20605070214', '', '', 'AV. ESPAÑA - 2DO PISO NRO. 1661 (ALTURA DEL CC PLAZA DE TOROS) LA LIBERTAD - TRUJILLO - TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23181', NULL, 'marizu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23182', NULL, 'rosario prada', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23183', NULL, 'ROSA', '00000000', '', '', '', 'AV. ESPAÑA - 2DO PISO NRO. 1661 (ALTURA DEL CC PLAZA DE TOROS) LA LIBERTAD - TRUJILLO - TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23184', NULL, 'ROSA', '00000000', '', '', '', 'AV. ESPAÑA - 2DO PISO NRO. 1661 (ALTURA DEL CC PLAZA DE TOROS) LA LIBERTAD - TRUJILLO - TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23185', NULL, 'ROSA', '00000000', '', '', '', 'AV. ESPAÑA - 2DO PISO NRO. 1661 (ALTURA DEL CC PLAZA DE TOROS) LA LIBERTAD - TRUJILLO - TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23186', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23187', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23188', NULL, 'JULIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23189', NULL, 'RAUL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23190', NULL, 'eloiza', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23191', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23192', NULL, 'esther bardales', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23193', NULL, 'yuriko flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23194', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23195', NULL, 'karol', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23196', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23197', NULL, 'ANIBAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23198', NULL, 'SANTOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23199', NULL, 'benjamin baltazae', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23200', NULL, 'jacqueline', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23201', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23202', NULL, 'VICTOR vallardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23203', NULL, 'AURORA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23204', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23205', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23206', NULL, 'zuzu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23207', NULL, 'zuzu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23208', NULL, 'zuzu', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23209', NULL, 'diana montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23210', NULL, 'diana montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23211', NULL, 'diana montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23212', NULL, 'diana montoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23213', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23214', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23215', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23216', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23217', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23218', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23219', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23220', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23221', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23222', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23223', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23224', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23225', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23226', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23227', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23228', NULL, 'REPRESENTACIONES THIMOTHY SAC', '', '20516308401', '', '', 'JR. CARHUAZ NRO. 1232 INT. 201 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23229', NULL, 'REPRESENTACIONES THIMOTHY SAC', '', '20516308401', '', '', 'JR. CARHUAZ NRO. 1232 INT. 201 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23230', NULL, 'REPRESENTACIONES THIMOTHY SAC', '', '20516308401', '', '', 'JR. CARHUAZ NRO. 1232 INT. 201 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23231', NULL, 'teresa tipiani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23232', NULL, 'teresa tipiani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23233', NULL, 'teresa tipiani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23234', NULL, 'teresa tipiani', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23235', NULL, 'ricardo malpartida', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23236', NULL, 'evelyin', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23237', NULL, 'MARIA DAZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23238', NULL, 'COMPASSION INTERNATIONAL DEL PERU', '', '20179151422', '', '', 'CAL.HORACIO CACHAY NRO. 135 URB. SANTA CATALINA (ALTURA CUADRA 14 JAVIER PRADO ESTE) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23239', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23240', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23241', NULL, 'rene fuentes', '29366562', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23242', NULL, 'rene fuentes', '29366562', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23243', NULL, 'rene fuentes', '29366562', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23244', NULL, 'maribel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23245', NULL, 'VICTOR lujan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23246', NULL, 'rosa cuya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23247', NULL, 'JORDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23248', NULL, 'JORDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23249', NULL, 'JORDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23250', NULL, 'JORDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23251', NULL, 'LUZ GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23252', NULL, 'VICTORIA OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23253', NULL, 'VICTORIA OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23254', NULL, 'VICTORIA OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23255', NULL, 'VICTORIA OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23256', NULL, 'VICTORIA OCHOA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23257', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23258', NULL, 'KIARA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23259', NULL, 'MIGUEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23260', NULL, 'QUICAÑA HUAMANI DINA YDELMIRA', '', '10295574157', '', '', 'AV REPUBLICA DE CHILE 295 JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23261', NULL, 'ESTHER ZAPATA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23262', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23263', NULL, 'CARMEN RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23264', NULL, 'MARIA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23265', NULL, 'EDDIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23266', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23267', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23268', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23269', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23270', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23271', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23272', NULL, 'FLOR MELGAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23273', NULL, 'CAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23274', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23275', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23276', NULL, 'teofila', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23277', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23278', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23279', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23280', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23281', NULL, 'PABLO ORTIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23282', NULL, 'LEONARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23283', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23284', NULL, 'YUDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23285', NULL, 'DANGELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23286', NULL, 'JAIME QUIROZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23287', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23288', NULL, 'MULLER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23289', NULL, 'REPUESTOS GENERALES AUTOMOTRICES DEL PERU S.A.C.', '', '20510902921', '', '', 'PJ. NICOLAS ARRIOLA NRO. 138 URB. APOLO LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23290', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23291', NULL, 'RUBEN  TRUJILLO', '00000000', '', '', '', 'PJ. NICOLAS ARRIOLA NRO. 138 URB. APOLO LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23292', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23293', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23294', NULL, 'SOLEDAD QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23295', NULL, 'SOLEDAD QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23296', NULL, 'SOLEDAD QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23297', NULL, 'SOLEDAD QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23298', NULL, 'CINTHIA FARFAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23299', NULL, 'JUANA CABRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23300', NULL, 'JUANA CABRERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23301', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23302', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23303', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23304', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23305', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23306', NULL, 'joe portal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23307', NULL, 'PAMELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23308', NULL, 'PATTY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23309', NULL, 'roger villanueva', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23310', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23311', NULL, 'MARIA ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23312', NULL, 'NIKO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23313', NULL, 'ROXANA MECHAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23314', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23315', NULL, 'GERARDO MORGAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23316', NULL, 'SANDRA VILLANUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23317', NULL, 'MARIA ESTRADA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23318', NULL, 'LENIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23319', NULL, 'LEANDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23320', NULL, 'alejandro palomino velasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23321', NULL, 'NATALY DAMIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23322', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23323', NULL, 'LORENA RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23324', NULL, 'MOLLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23325', NULL, 'SIMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23326', NULL, 'JULIO MANDUJAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23327', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23328', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23329', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23330', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23331', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23332', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23333', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23334', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23335', NULL, 'saragoza vega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23336', NULL, 'MAGALI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23337', NULL, 'TATIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23338', NULL, 'valeria portugal', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23339', NULL, 'etty', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23340', NULL, 'MANUELA  SANCHEZ MORANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23341', NULL, 'ANTONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23342', NULL, 'ELSA DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23343', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23344', NULL, 'EVA PAREDES', '42392629', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23345', NULL, 'AMER HIDALGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23346', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23347', NULL, 'ANA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23348', NULL, 'ANA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23349', NULL, 'ANA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23350', NULL, 'ANA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23351', NULL, 'lucy torrez lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23352', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23353', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23354', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23355', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23356', NULL, 'CELIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23357', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23358', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23359', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23360', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23361', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23362', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23363', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23364', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23365', NULL, 'GIAN CARLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23366', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23367', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23368', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23369', NULL, 'LIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23370', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23371', NULL, 'alfredo gomez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23372', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23373', NULL, 'ceciklia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23374', NULL, 'CHRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23375', NULL, 'EMMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23376', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23377', NULL, 'VICTOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23378', NULL, 'tania inocente', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23379', NULL, 'medaly', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23380', NULL, 'MEDALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23381', NULL, 'MEYTEN S.A.C.', '', '20602863116', '', '', 'JR. UCAYALI NRO. 768 INT. 105 OTR. CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23382', NULL, 'MEYTEN S.A.C.', '', '20602863116', '', '', 'JR. UCAYALI NRO. 768 INT. 105 OTR. CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23383', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23384', NULL, 'JANETH', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23385', NULL, 'JEAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23386', NULL, 'LUCILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23387', NULL, 'CESAR ALBAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23388', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23389', NULL, 'OMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23390', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23391', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23392', NULL, 'JUDITH PORTILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23393', NULL, 'YANINA  DEL RIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23394', NULL, 'YANINA  DEL RIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23395', NULL, 'YANINA  DEL RIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23396', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23397', NULL, 'JAQUELINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23398', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23399', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23400', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23401', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23402', NULL, 'carlita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23403', NULL, 'carlita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23404', NULL, 'carlita', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23405', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23406', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23407', NULL, 'paulino cortez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23408', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23409', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23410', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23411', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23412', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23413', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23414', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23415', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23416', NULL, 'alicia frebes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23417', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23418', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23419', NULL, 'FELIX GOMEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23420', NULL, 'JHOSIMAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23421', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23422', NULL, 'BEGONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23423', NULL, 'YAZMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23424', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23425', NULL, 'SORAIDA LAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23426', NULL, 'SORAIDA LAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23427', NULL, 'SORAIDA LAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23428', NULL, 'SORAIDA LAIME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23429', NULL, 'UBER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23430', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23431', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23432', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23433', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23434', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23435', NULL, 'ROSA CORNEJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23436', NULL, 'PAOLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23437', NULL, 'NERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23438', NULL, 'NERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23439', NULL, 'NERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23440', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23441', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23442', NULL, 'JOANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23443', NULL, 'GERALDINE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23444', NULL, 'LAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23445', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23446', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23447', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23448', NULL, 'MERCEDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23449', NULL, 'FELICITA quintana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23450', NULL, 'FELICITA quintana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23451', NULL, 'FELICITA quintana', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23452', NULL, 'MONRROY QUINTANA GLADYS', '', '10093886262', '', '', 'JR CONQUISTADORES MZ A LOTE 7 JORGE CHAVEZ -SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23453', NULL, 'CLARILUZ SANTIAGO', '00000000', '', '', '', 'JR CONQUISTADORES MZ A LOTE 7 JORGE CHAVEZ -SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23454', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23455', NULL, 'jose luis rivero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23456', NULL, 'ROMINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23457', NULL, 'LOPEZ ARMAS ZENOBIO LUIS', '', '10218404281', '', '', 'CALLE MARISCAL CASTILLA  139 - STAND 8 CHINCHA ALTA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23458', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23459', NULL, 'MARGOTH PONCE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23460', NULL, 'DORIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23461', NULL, 'YAZMIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23462', NULL, 'YANELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23463', NULL, 'FERNANDO NAVARRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23464', NULL, 'MELISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23465', NULL, 'MOROCHO KHAN FERNANDO JAVIER', '', '10104941015', '', '', 'JR. AMAZONAS #561 CHACHAPOYAS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23466', NULL, 'LOURDES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23467', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23468', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23469', NULL, 'ISABELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23470', NULL, 'ISABELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23471', NULL, 'ISABELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23472', NULL, 'ISABELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23473', NULL, 'ISABELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23474', NULL, 'ISABELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23475', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23476', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23477', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23478', NULL, 'TERESA SAENS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23479', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23480', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23481', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23482', NULL, 'ADELA GONZALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23483', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23484', NULL, 'INCHE CAMPOS MARCELA FRANCISCA', '', '10720515160', '', '', 'CALLE LAS ABUTARDAS COOP. MIGUEL GRAU MZO LT5 SANTA ANITA-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23485', NULL, 'PATY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23486', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23487', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23488', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23489', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23490', NULL, 'ELSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23491', NULL, 'ODILON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23492', NULL, 'ODILON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23493', NULL, 'ODILON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23494', NULL, 'CARMEN TORRES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23495', NULL, 'NESTOR ALVAREZ', '43299594', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23496', NULL, 'EVELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23497', NULL, 'JEFERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23498', NULL, 'JEFERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23499', NULL, 'JEFERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23500', NULL, 'JEFERSON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23501', NULL, 'ARCHENDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23502', NULL, 'ARCHENDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23503', NULL, 'ARCHENDE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23504', NULL, 'WALDO ARMAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23505', NULL, 'CONSUELO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23506', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23507', NULL, 'ANGELICA TADEO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23508', NULL, 'ARON ESTEFANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23509', NULL, 'ARON ESTEFANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23510', NULL, 'ARON ESTEFANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23511', NULL, 'ARON ESTEFANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23512', NULL, 'ARON ESTEFANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23513', NULL, 'MARIA CARRION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23514', NULL, 'MARIA CARRION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23515', NULL, 'MARIA CARRION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23516', NULL, 'MARIA CARRION', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23517', NULL, 'VIVIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23518', NULL, 'SULLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23519', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23520', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23521', NULL, 'MARIELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23522', NULL, 'MARI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23523', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23524', NULL, 'RUFINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23525', NULL, 'MERVIN TRUJILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23526', NULL, 'MERVIN TRUJILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23527', NULL, 'MERVIN TRUJILLO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23528', NULL, 'OLGA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23529', NULL, 'OLGA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23530', NULL, 'OLGA QUISPE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23531', NULL, 'RAUL ACEVEDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23532', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23533', NULL, 'JULIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23534', NULL, 'pablo guillen', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23535', NULL, 'JACKELINE VASQUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23536', NULL, 'RESTAURANTE LA FORTALEZA S R LTDA', '', '20101930956', '', '', 'AV. AV SAMUEL ALCAZAR NRO. 941 URB. URB VENTURA ROSI LIMA - LIMA - RIMAC', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23537', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23538', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23539', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23540', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23541', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23542', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23543', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23544', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23545', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23546', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23547', NULL, 'FUSTO RAMIREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23548', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23549', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23550', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23551', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23552', NULL, 'eliana chanco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23553', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23554', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23555', NULL, 'RUTH ORDOÑES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23556', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23557', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23558', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23559', NULL, 'MARILUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23560', NULL, 'ANA BRIONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23561', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23562', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23563', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23564', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23565', NULL, 'MARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23566', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23567', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23568', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23569', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23570', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23571', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23572', NULL, 'SUSANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23573', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23574', NULL, 'flor cordova', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23575', NULL, 'flor cordova', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23576', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23577', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23578', NULL, 'MARILU', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23579', NULL, 'jesus acosta', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23580', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23581', NULL, 'delsa gutierrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23582', NULL, 'delsa gutierrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23583', NULL, 'delsa gutierrez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23584', NULL, 'alberto diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23585', NULL, 'ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23586', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23587', NULL, 'ISAURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23588', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23589', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23590', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23591', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23592', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23593', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23594', NULL, 'ANGELICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23595', NULL, 'CALDERON VALDIVIA MEYLIN MELISA', '', '10700520612', '', '', 'SECTOR 28 DE JULIO MZ H5 LOTE 8 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23596', NULL, 'FRANK RAMIREZ', '00000000', '', '', '', 'SECTOR 28 DE JULIO MZ H5 LOTE 8 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23597', NULL, 'FRANK RAMIREZ', '00000000', '', '', '', 'SECTOR 28 DE JULIO MZ H5 LOTE 8 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23598', NULL, 'FRANK RAMIREZ', '00000000', '', '', '', 'SECTOR 28 DE JULIO MZ H5 LOTE 8 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23599', NULL, 'FRANK RAMIREZ', '00000000', '', '', '', 'SECTOR 28 DE JULIO MZ H5 LOTE 8 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23600', NULL, 'FRANK RAMIREZ', '00000000', '', '', '', 'SECTOR 28 DE JULIO MZ H5 LOTE 8 SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23601', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23602', NULL, 'ESTER SANEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23603', NULL, 'constantina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23604', NULL, 'constantina', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23605', NULL, 'VIOLETA ASCARATE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23606', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23607', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23608', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23609', NULL, 'DALILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23610', NULL, 'FAVIO ALFARO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23611', NULL, 'ELSA ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23612', NULL, 'IRENE BRAVO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23613', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23614', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23615', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23616', NULL, 'DAVID', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23617', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23618', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23619', NULL, 'QUISPE HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23620', NULL, 'QUISPE HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23621', NULL, 'QUISPE HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23622', NULL, 'QUISPE HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23623', NULL, 'QUISPE HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23624', NULL, 'QUISPE HUAMANI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23625', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23626', NULL, 'UNIVERSIDAD MARIA AUXILIADORA S.A.C.', '', '20550807123', '', '', 'AV. CANTO BELLO NRO. 431 URB. CANTO BELLO LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23627', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23628', NULL, 'KAREN BAZAN JARA', '47971121', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23629', NULL, 'GLASDIS ENCISO MARTINES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23630', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23631', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23632', NULL, 'JACKI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23633', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23634', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23635', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23636', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23637', NULL, 'GLADYS ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23638', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23639', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23640', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23641', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23642', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23643', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23644', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23645', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23646', NULL, 'KAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23647', NULL, 'ROSALINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23648', NULL, 'ROSALINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23649', NULL, 'ROSALINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23650', NULL, 'ROSALINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23651', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23652', NULL, 'jose luis', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23653', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23654', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23655', NULL, 'LIZ MOSQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23656', NULL, 'LIZ MOSQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23657', NULL, 'LIZ MOSQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23658', NULL, 'LIZ MOSQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23659', NULL, 'LIZ MOSQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23660', NULL, 'LIZ MOSQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23661', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23662', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23663', NULL, 'GIAN MARCO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23664', NULL, 'GIAN MARCO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23665', NULL, 'GIAN MARCO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23666', NULL, 'GIAN MARCO ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23667', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23668', NULL, 'ZARELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23669', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23670', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23671', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23672', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23673', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23674', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23675', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23676', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23677', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23678', NULL, 'HUGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23679', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23680', NULL, 'NANCY REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23681', NULL, 'NANCY REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23682', NULL, 'NANCY REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23683', NULL, 'NANCY REYES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23684', NULL, 'otros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23685', NULL, 'JONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23686', NULL, 'JONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23687', NULL, 'JONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23688', NULL, 'JONY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23689', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23690', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23691', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23692', NULL, 'FERRETERIA STARSKY S.A.C.', '', '20524565332', '', '', 'AV. LA MOLINA NRO. 500 INT. A RES. MONTERRICO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23693', NULL, 'FERRETERIA STARSKY S.A.C.', '', '20524565332', '', '', 'AV. LA MOLINA NRO. 500 INT. A RES. MONTERRICO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23694', NULL, 'FERRETERIA STARSKY S.A.C.', '', '20524565332', '', '', 'AV. LA MOLINA NRO. 500 INT. A RES. MONTERRICO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23695', NULL, 'FERRETERIA STARSKY S.A.C.', '', '20524565332', '', '', 'AV. LA MOLINA NRO. 500 INT. A RES. MONTERRICO LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23696', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23697', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23698', NULL, 'gabriel', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23699', NULL, 'ESTHER CARRANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23700', NULL, 'ESTHER CARRANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23701', NULL, 'ESTHER CARRANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23702', NULL, 'MIRIAM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23703', NULL, 'EMILDA  GOYCOCHEA ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23704', NULL, 'EMILDA  GOYCOCHEA ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23705', NULL, 'EMILDA  GOYCOCHEA ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23706', NULL, 'EMILDA  GOYCOCHEA ACUÑA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23707', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23708', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23709', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23710', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23711', NULL, 'INGENIERIA CONSTRUCTORA SERVICIOS AUXILIARES Y MINERIA ', '', '20603484992', '', '', 'JR. TERESA GONZALES DE FANNING NRO. 627 BAR. CENTENARIO OESTE (A UNA CUDRA DE CLINICA SAN PABLO) ANCASH - HUARAZ - INDEPENDENCIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23712', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23713', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23714', NULL, 'JOSE HERNANDEZ MOLERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23715', NULL, 'ALEXIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23716', NULL, 'ALEXIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23717', NULL, 'ALEXIS CISNEROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23718', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23719', NULL, 'otros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23720', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23721', NULL, 'JORGE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23722', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23723', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23724', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23725', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23726', NULL, 'JOAQUIN ORE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23727', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23728', NULL, 'CAROLINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23729', NULL, 'SARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23730', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23731', NULL, 'paula', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23732', NULL, 'JENNY MENESES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23733', NULL, 'ANDREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23734', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23735', NULL, 'FREDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23736', NULL, 'CRISTIN GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23737', NULL, 'PIER', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23738', NULL, 'angel valerio', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23739', NULL, 'MAGALY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23740', NULL, 'MARCO ANTONIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23741', NULL, 'kimberly burgos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23742', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23743', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23744', NULL, 'ANGEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23745', NULL, 'LUCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23746', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23747', NULL, 'RAUL RICARDO CARHUACOMA NICOLAS', '04014347', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23748', NULL, 'MARIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23749', NULL, 'MIRIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23750', NULL, 'MARTHA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23751', NULL, 'RENE PINASO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23752', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23753', NULL, 'RENE PINASO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23754', NULL, 'FANY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23755', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23756', NULL, 'FIORELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23757', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23758', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23759', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23760', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23761', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23762', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23763', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23764', NULL, 'ELENA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23765', NULL, 'ELIDA FLOREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23766', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23767', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23768', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23769', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23770', NULL, 'PILAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23771', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23772', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23773', NULL, 'KARIM ESCURRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23774', NULL, 'KARIM ESCURRA', '10697450', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23775', NULL, 'FREDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23776', NULL, 'FREDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23777', NULL, 'FREDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23778', NULL, 'FREDDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23779', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23780', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23781', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23782', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23783', NULL, 'denis cabello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23784', NULL, 'denis cabello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23785', NULL, 'denis cabello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23786', NULL, 'denis cabello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23787', NULL, 'denis cabello', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23788', NULL, 'LISBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23789', NULL, 'LISBETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23790', NULL, 'gian carlo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23791', NULL, 'gian carlo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23792', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23793', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23794', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23795', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23796', NULL, 'victoria bedoya', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23797', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23798', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23799', NULL, 'FRANCHESCA RAMOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23800', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23801', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23802', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23803', NULL, 'IGLESIA ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23804', NULL, 'IGLESIA ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23805', NULL, 'IGLESIA ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23806', NULL, 'IGLESIA ESPERANZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23807', NULL, 'PEDRO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23808', NULL, 'EDITH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23809', NULL, 'juan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23810', NULL, 'juan', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23811', NULL, 'AYME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23812', NULL, 'AYME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23813', NULL, 'AYME', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23814', NULL, 'silvia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23815', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23816', NULL, 'wilfredo santacruz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23817', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23818', NULL, 'clotilde ortiz quispe', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23819', NULL, 'GASTON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23820', NULL, 'miguel talledo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23821', NULL, 'CINTHIA dueñas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23822', NULL, 'marilicia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23823', NULL, 'marilicia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23824', NULL, 'marilicia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23825', NULL, 'marilicia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23826', NULL, 'marilicia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23827', NULL, 'LEONOR', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23828', NULL, 'LEONOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23829', NULL, 'CRISTIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23830', NULL, 'NELLY', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23831', NULL, 'NELLY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23832', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23833', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23834', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23835', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23836', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23837', NULL, 'FERNANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23838', NULL, 'daniel correa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23839', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23840', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23841', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23842', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23843', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23844', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23845', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23846', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23847', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23848', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23849', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23850', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23851', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23852', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23853', NULL, 'GUEVARA AGUAYO JORGE MANUEL', '', '10740251991', '', '', 'AV MARCO POLO 1482 FIORI - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23854', NULL, 'eugenia vargas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23855', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23856', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23857', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23858', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23859', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23860', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23861', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23862', NULL, 'TRUCIOS GOMEZ LUIS HECTOR', '', '10232662293', '', '', 'JR 5 DE AGOSTO 201- HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23863', NULL, 'OTROS', '00000000', '', '', '', 'JR 5 DE AGOSTO 201- HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23864', NULL, 'MARIA', '00000000', '', '', '', 'JR 5 DE AGOSTO 201- HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23865', NULL, 'JESICA SOLIS VENTURA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23866', NULL, 'DIDALUSA S.A.C.', '', '20556642932', '', '', 'PJ. 11 NRO. 161 P.J. 1ERO DE SETIEMBRE LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23867', NULL, 'OTROS', '00000000', '', '', '', 'JR 5 DE AGOSTO 201- HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23868', NULL, 'OTROS', '00000000', '', '', '', 'JR 5 DE AGOSTO 201- HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23869', NULL, 'OTROS', '00000000', '', '', '', 'JR 5 DE AGOSTO 201- HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23870', NULL, 'OTROS', '00000000', '', '', '', 'JR 5 DE AGOSTO 201- HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23871', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23872', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23873', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23874', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23875', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23876', NULL, 'INST DE GINECOLOGIA Y REPRODUCCION S A', '', '20137697450', '', '', 'AV. MANUEL OLGUIN NRO. 1047 URB. EL DERBY LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23877', NULL, 'INST DE GINECOLOGIA Y REPRODUCCION S A', '', '20137697450', '', '', 'AV. MANUEL OLGUIN NRO. 1047 URB. EL DERBY LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23878', NULL, 'OTROS', '00000000', '', '', '', 'JR 5 DE AGOSTO 201- HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23879', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23880', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23881', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23882', NULL, 'MERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23883', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23884', NULL, 'PATRICIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23885', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23886', NULL, 'OLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23887', NULL, 'LEYDI ALTAMIRANO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23888', NULL, 'LIZETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23889', NULL, 'LISETH QUIÑONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23890', NULL, 'LISETH QUIÑONES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23891', NULL, 'ELBA BAZAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23892', NULL, 'tomasa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23893', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23894', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23895', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23896', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23897', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23898', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23899', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23900', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23901', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23902', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23903', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23904', NULL, 'SILVIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23905', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23906', NULL, 'MIGUEL BAUTISTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23907', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23908', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23909', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23910', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23911', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23912', NULL, 'KATERINE marcos', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23913', NULL, 'LILIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23914', NULL, 'zoana ramirez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23915', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23916', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23917', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23918', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23919', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23920', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23921', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23922', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23923', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23924', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23925', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23926', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23927', NULL, 'LADY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23928', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23929', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23930', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23931', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23932', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23933', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23934', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23935', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23936', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23937', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23938', NULL, 'dagoberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23939', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23940', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23941', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23942', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23943', NULL, 'BLANCA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23944', NULL, 'CRISTINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23945', NULL, 'FRANCISCO CUEVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23946', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23947', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23948', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23949', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23950', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23951', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23952', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23953', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23954', NULL, 'paula pasco', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23955', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23956', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23957', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23958', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23959', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23960', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23961', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23962', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23963', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23964', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23965', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23966', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23967', NULL, 'leo cuevas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23968', NULL, 'leo cuevas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23969', NULL, 'leo cuevas', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23970', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23971', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23972', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23973', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23974', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23975', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23976', NULL, 'DANIEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23977', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23978', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23979', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23980', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23981', NULL, 'PATITA E.I.R.L.', '', '20533935517', '', '', 'JR. SAN MARTIN NRO. 660 BARRIO HUARUPAMPA (COSTADO DE BAZAR DENISS) ANCASH - HUARAZ - HUARAZ', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23982', NULL, 'JOSE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23983', NULL, 'JOSE LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23984', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23985', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23986', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23987', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23988', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23989', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23990', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23991', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23992', NULL, 'ROSA BERNABE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23993', NULL, 'CESAR ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23994', NULL, 'CESAR ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23995', NULL, 'CESAR ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23996', NULL, 'CESAR ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23997', NULL, 'CESAR ENCISO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23998', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('23999', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24000', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24001', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24002', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24003', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24004', NULL, 'MARUJA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24005', NULL, 'JORGE LUIS OVANDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24006', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24007', NULL, 'SEBASTIAN DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24008', NULL, 'SEBASTIAN DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24009', NULL, 'SEBASTIAN DIAZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24010', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24011', NULL, 'JORGE LUIS OVANDO MANAYAY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24012', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24013', NULL, 'JULIA HUERTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24014', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24015', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24016', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24017', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24018', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24019', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24020', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24021', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24022', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24023', NULL, 'MARY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24024', NULL, 'marilyn flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24025', NULL, 'marilyn flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24026', NULL, 'marilyn flores', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24027', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24028', NULL, 'JHONATAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24029', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24030', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24031', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24032', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24033', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24034', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24035', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24036', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24037', NULL, 'lopez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24038', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24039', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24040', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24041', NULL, 'SANDRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24042', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24043', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24044', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24045', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24046', NULL, 'MARGARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24047', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24048', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24049', NULL, 'SARITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24050', NULL, 'JENNY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24051', NULL, 'MARC INGENIERIA Y CONSTRUCCION S.A.C.- MARC INGECON S.A', '', '20604351422', '', '', 'AV. ENRIQUE MEIGGS NRO. 1650 P.J. EL PLANETA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24052', NULL, 'PAMELA', '00000000', '', '', '', 'AV. ENRIQUE MEIGGS NRO. 1650 P.J. EL PLANETA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24053', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24054', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24055', NULL, 'CLEMENCIA', '28202935', '', '', '', 'SAN MARTIN DE PORREES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24056', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24057', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24058', NULL, 'EDLMIRA TICLLA', '27372045', '', '', '', 'INCA GARCILZO DE LA VEGA #367 CHOTA -CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24059', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24060', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24061', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24062', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24063', NULL, 'JIMY', '00000000', '', '', '', 'INCA GARCILZO DE LA VEGA #367 CHOTA -CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24064', NULL, 'JIMY', '00000000', '', '', '', 'INCA GARCILZO DE LA VEGA #367 CHOTA -CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24065', NULL, 'JIMY', '00000000', '', '', '', 'INCA GARCILZO DE LA VEGA #367 CHOTA -CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24066', NULL, 'JIMY', '00000000', '', '', '', 'INCA GARCILZO DE LA VEGA #367 CHOTA -CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24067', NULL, 'JIMY', '00000000', '', '', '', 'INCA GARCILZO DE LA VEGA #367 CHOTA -CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24068', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24069', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24070', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24071', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24072', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24073', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24074', NULL, 'CLEMENCIA ILLACCANQUI DE MENDIETA', '28202935', '', '', '', 'SAN MARTIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24075', NULL, 'OTROS', '00000000', '', '', '', 'SAN MARTIN DE PORREES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24076', NULL, 'OTROS', '00000000', '', '', '', 'SAN MARTIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24077', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24078', NULL, 'OTROS', '00000000', '', '', '', 'SAN MARTIN DE PORREES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24079', NULL, 'OTROS', '00000000', '', '', '', 'SAN MARTIN DE PORREES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24080', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24081', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24082', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24083', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24084', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24085', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24086', NULL, 'CONCYSSA S A', '', '20100370426', '', '', 'CAL.MARIE CURIE NRO. 372 URB. SANTA ROSA (A 3 CUADRAS PTE.STA ANITA/CARR.CENTRAL) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24087', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24088', NULL, 'GRUPO AVICAR ROSARIO S.A.C.', '', '20600994353', '', '', 'JR. CALLAO NRO. S/N OTR. MERCADO CENTRAL (PUESTO 229 SECTOR CARNE) SAN MARTIN - MOYOBAMBA - MOYOBAMBA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24089', NULL, 'MATEO', '00000000', '', '', '', 'JR. CALLAO NRO. S/N OTR. MERCADO CENTRAL (PUESTO 229 SECTOR CARNE) SAN MARTIN - MOYOBAMBA - MOYOBAMBA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24090', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24091', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24092', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24093', NULL, 'PATRICIA NEYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24094', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24095', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24096', NULL, 'ROXANA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24097', NULL, 'ELY SERRANO TICONA', '', '10205773466', '', '', 'JR AYACUCHO 447 - LA MERCED', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24098', NULL, 'AROA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24099', NULL, 'OTROS', '00000000', '', '', '', 'JR AYACUCHO 447 - LA MERCED', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24100', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24101', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24102', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24103', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24104', NULL, 'SONIA', '00000000', '', '', '', 'JR AYACUCHO 447 - LA MERCED', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24105', NULL, 'SONIA', '00000000', '', '', '', 'JR AYACUCHO 447 - LA MERCED', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24106', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24107', NULL, 'RUBEN RODRIGUEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24108', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24109', NULL, 'CEVICHERIA ERIKA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24110', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24111', NULL, 'LIZ BECERRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24112', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24113', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24114', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24115', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24116', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24117', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24118', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24119', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24120', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24121', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24122', NULL, 'SUSY MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24123', NULL, 'SUSY MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24124', NULL, 'SUSY MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24125', NULL, 'SUSY MENDOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24126', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24127', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24128', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24129', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24130', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24131', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24132', NULL, 'lizardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24133', NULL, 'lizardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24134', NULL, 'lizardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24135', NULL, 'lizardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24136', NULL, 'lizardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24137', NULL, 'lizardo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24138', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24139', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24140', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24141', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24142', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24143', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24144', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24145', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24146', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24147', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24148', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24149', NULL, 'ROSA CORREA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24150', NULL, 'RODOLFO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24151', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24152', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24153', NULL, 'ANTARI GRANOS DEL PERU S.A.C.', '', '20604295182', '', '', 'AV. FAUSTINO SANCHEZ CARRION NRO. 440 URB. VILLA RICA PASCO - OXAPAMPA - VILLA RICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24154', NULL, 'ANTARI GRANOS DEL PERU S.A.C.', '', '20604295182', '', '', 'AV. FAUSTINO SANCHEZ CARRION NRO. 440 URB. VILLA RICA PASCO - OXAPAMPA - VILLA RICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24155', NULL, 'OTROS', '00000000', '', '', '', 'AV. FAUSTINO SANCHEZ CARRION NRO. 440 URB. VILLA RICA PASCO - OXAPAMPA - VILLA RICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24156', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24157', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24158', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24159', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24160', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24161', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24162', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24163', NULL, 'CARMEN MAMANI SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24164', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24165', NULL, 'ORGANIZACION EDUCATIVA PRIVADA SAN JOSE Y EL REDENTOR S', '', '20414654097', '', '', 'AV. ISABEL LA CATOLICA NRO. 1250 URB. MATUTE LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24166', NULL, 'ORGANIZACION EDUCATIVA PRIVADA SAN JOSE Y EL REDENTOR S', '', '20414654097', '', '', 'AV. ISABEL LA CATOLICA NRO. 1250 URB. MATUTE LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24167', NULL, 'ORGANIZACION EDUCATIVA PRIVADA SAN JOSE Y EL REDENTOR S', '', '20414654097', '', '', 'AV. ISABEL LA CATOLICA NRO. 1250 URB. MATUTE LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24168', NULL, 'OTROS', '00000000', '', '', '', 'AV. ISABEL LA CATOLICA NRO. 1250 URB. MATUTE LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24169', NULL, 'OTROS', '00000000', '', '', '', 'AV. ISABEL LA CATOLICA NRO. 1250 URB. MATUTE LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24170', NULL, 'OTROS', '00000000', '', '', '', 'AV. ISABEL LA CATOLICA NRO. 1250 URB. MATUTE LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24171', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24172', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24173', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24174', NULL, 'OTROS', '00000000', '', '', '', 'AV. ISABEL LA CATOLICA NRO. 1250 URB. MATUTE LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24175', NULL, 'ELIZABETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24176', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24177', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24178', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24179', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24180', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24181', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24182', NULL, 'ENERGIGAS S.A.C.', '', '20506151547', '', '', 'AV. SANTO TORIBIO NRO. 173 URB. EL ROSARIO LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24183', NULL, 'KARINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24184', NULL, 'JUANA MARTINEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24185', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24186', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24187', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24188', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24189', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24190', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24191', NULL, 'DOMINGA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24192', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24193', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24194', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24195', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24196', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24197', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24198', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24199', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24200', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24201', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24202', NULL, 'JNI CACERES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24203', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24204', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24205', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24206', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24207', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24208', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24209', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24210', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24211', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24212', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24213', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24214', NULL, 'KAREN', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24215', NULL, 'DUEÑAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24216', NULL, 'YOLI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24217', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24218', NULL, 'SIMON HUACCACHI HILDA MELANIA', '', '10420772756', '', '', 'KM. 52 VILLATAMBO LEONCIO PRADO -LUCANAS- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24219', NULL, 'OTROS', '00000000', '', '', '', 'KM. 52 VILLATAMBO LEONCIO PRADO -LUCANAS- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24220', NULL, 'OTROS', '00000000', '', '', '', 'KM. 52 VILLATAMBO LEONCIO PRADO -LUCANAS- AYACUCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24221', NULL, 'HAROL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24222', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24223', NULL, 'MARIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24224', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24225', NULL, 'ALBERTO SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24226', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24227', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24228', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24229', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24230', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24231', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24232', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24233', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24234', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24235', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24236', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24237', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24238', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24239', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24240', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24241', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24242', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24243', NULL, 'GUILLERMO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24244', NULL, 'CRISTIAN CARNERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24245', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24246', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24247', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24248', NULL, 'ELI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24249', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24250', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24251', NULL, 'FLOR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24252', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24253', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24254', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24255', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24256', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24257', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24258', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24259', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24260', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24261', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24262', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24263', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24264', NULL, 'PALOMINO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24265', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24266', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24267', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24268', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24269', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24270', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24271', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24272', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24273', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24274', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24275', NULL, 'ROBINSON TUESTA LAZO', '41472283', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24276', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24277', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24278', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24279', NULL, 'MARURA JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24280', NULL, 'MARURA JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24281', NULL, 'MARURA JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24282', NULL, 'MARURA JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24283', NULL, 'MARURA JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24284', NULL, 'MARURA JULIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24285', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24286', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24287', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24288', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24289', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24290', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24291', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24292', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24293', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24294', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24295', NULL, 'MARIA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24296', NULL, 'MARIA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24297', NULL, 'MARIA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24298', NULL, 'MARIA RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24299', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24300', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24301', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24302', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24303', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24304', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24305', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24306', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24307', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24308', NULL, 'JOSE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24309', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24310', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24311', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24312', NULL, 'DIANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24313', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24314', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24315', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24316', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24317', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24318', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24319', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24320', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24321', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24322', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24323', NULL, 'ANGI', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24324', NULL, 'ANGIE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24325', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24326', NULL, 'OLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24327', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24328', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24329', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24330', NULL, 'varios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24331', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24332', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24333', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24334', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24335', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24336', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24337', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24338', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24339', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24340', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24341', NULL, 'CLAUDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24342', NULL, 'BETSABET AVILA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24343', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24344', NULL, 'CINTHYA GALLEGO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24345', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24346', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24347', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24348', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24349', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24350', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24351', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24352', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24353', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24354', NULL, 'ROXANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24355', NULL, 'RUTH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24356', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24357', NULL, 'soledad', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24358', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24359', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24360', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24361', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24362', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24363', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24364', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24365', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24366', NULL, 'HAMILTON VILLALOBOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24367', NULL, 'HAMILTON VILLALOBOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24368', NULL, 'HAMILTON VILLALOBOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24369', NULL, 'HAMILTON VILLALOBOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24370', NULL, 'HAMILTON VILLALOBOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24371', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24372', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24373', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24374', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24375', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24376', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24377', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24378', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24379', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24380', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24381', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24382', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24383', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24384', NULL, 'brigit', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24385', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24386', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24387', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24388', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24389', NULL, 'MARLENE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24390', NULL, 'JESICA SANDOVAL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24391', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24392', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24393', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24394', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24395', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24396', NULL, 'wilberto', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24397', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24398', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24399', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24400', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24401', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24402', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24403', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24404', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24405', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24406', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24407', NULL, 'otros', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24408', NULL, 'DELOSI S.A.', '', '20100123330', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24409', NULL, 'jaime diaz', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24410', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24411', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24412', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24413', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24414', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24415', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24416', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24417', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24418', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24419', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24420', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24421', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24422', NULL, 'daniel toledo', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24423', NULL, 'TIBO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24424', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24425', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24426', NULL, 'varios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24427', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24428', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24429', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24430', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24431', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24432', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24433', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24434', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24435', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24436', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24437', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24438', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24439', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24440', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24441', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24442', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24443', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24444', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24445', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24446', NULL, 'EVELYN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24447', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24448', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24449', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24450', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24451', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24452', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24453', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24454', NULL, 'MILAGROS RAMON', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24455', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24456', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24457', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24458', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24459', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24460', NULL, 'CEPRE LOS OLIVOS S.R.L.', '', '20551657770', '', '', 'CAL.34 MZA. Ñ LOTE. 16 EL TREBOL LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24461', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.34 MZA. Ñ LOTE. 16 EL TREBOL LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24462', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24463', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24464', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24465', NULL, 'GALVAN VALDIVIA JESSELY MARILY', '', '10404463697', '', '', 'CALLE JORGE OCONOR 183 SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24466', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24467', NULL, 'OTROS', '00000000', '', '', '', 'CAL.34 MZA. Ñ LOTE. 16 EL TREBOL LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24468', NULL, 'OTROS', '00000000', '', '', '', 'CALLE JORGE OCONOR 183 SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24469', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24470', NULL, 'VARIOS', '00000000', '', '', '', 'CALLE JORGE OCONOR 183 SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24471', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24472', NULL, 'VARIOS', '00000000', '', '', '', 'CALLE JORGE OCONOR 183 SAN BORJA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24473', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24474', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24475', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24476', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24477', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24478', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24479', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24480', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24481', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24482', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24483', NULL, 'ELIZABETH FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24484', NULL, 'ELIZABETH FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24485', NULL, 'ELIZABETH FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24486', NULL, 'ELIZABETH FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24487', NULL, 'ELIZABETH FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24488', NULL, 'ELIZABETH FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24489', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24490', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24491', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24492', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24493', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24494', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24495', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24496', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24497', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24498', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24499', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24500', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24501', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24502', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24503', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24504', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24505', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24506', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24507', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24508', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24509', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24510', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24511', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24512', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24513', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24514', NULL, 'ESB NEGOCIOS Y PRODUCCIONES SAC', '', '20536583344', '', '', 'PASAJE GIRIBALDI 114 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24515', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24516', NULL, 'VARIOS', '00000000', '', '', '', 'PASAJE GIRIBALDI 114 LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24517', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24518', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24519', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24520', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24521', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24522', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24523', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24524', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24525', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24526', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24527', NULL, 'JOSE CHERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24528', NULL, 'JOSE CHERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24529', NULL, 'JOSE CHERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24530', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24531', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24532', NULL, 'VAE ONYX SOCIEDAD ANONIMA CERRADA - VAE ONYX S.A.C.', '', '20605080821', '', '', 'MZA. C LOTE. 22 RES. CINCO ESTRELLAS LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24533', NULL, 'VARIOS', '00000000', '', '', '', 'MZA. C LOTE. 22 RES. CINCO ESTRELLAS LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24534', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24535', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24536', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24537', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24538', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24539', NULL, 'ROSA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24540', NULL, 'ANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24541', NULL, 'SAINTI.ALMA@GMAIL.COM', '--', '', '', 'sainti.alma@gmail.com', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24542', NULL, 'SAINTI.ALMA@GMAIL.COM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24543', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24544', NULL, 'SAINT.ALMA@GMAIL.COM', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24545', NULL, 'ulises.malca18', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24546', NULL, 'regina romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24547', NULL, 'regina romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24548', NULL, 'regina romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24549', NULL, 'regina romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24550', NULL, 'regina romero', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24551', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24552', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24553', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24554', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24555', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24556', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24557', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24558', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24559', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24560', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24561', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24562', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24563', NULL, 'KAREN gusman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24564', NULL, 'KAREN gusman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24565', NULL, 'KAREN gusman', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24566', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24567', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24568', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24569', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24570', NULL, 'LUCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24571', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24572', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24573', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24574', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24575', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24576', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24577', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24578', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24579', NULL, 'PUBLICIDAD AZUL PASTEL S.A.C.', '', '20602136613', '', '', 'PJ. SAN MIGUELITO NRO. 120 URB. SAN ROQUE LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24580', NULL, 'VARIOS', '00000000', '', '', '', 'PJ. SAN MIGUELITO NRO. 120 URB. SAN ROQUE LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24581', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24582', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24583', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24584', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24585', NULL, 'VARIOS', '00000000', '', '', '', 'PJ. SAN MIGUELITO NRO. 120 URB. SAN ROQUE LIMA - LIMA - SANTIAGO DE SURCO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24586', NULL, 'TOFU EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITADA - T', '', '20604248141', '', '', 'JR. AGUSTIN GAMARRA NRO. 280 C.P. HUANCAVELICA (COSTADO DE LA SUNAT S70511464) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24587', NULL, 'SUSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24588', NULL, 'SUSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24589', NULL, 'SUSAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24590', NULL, 'VARIOS', '00000000', '', '', '', 'JR. AGUSTIN GAMARRA NRO. 280 C.P. HUANCAVELICA (COSTADO DE LA SUNAT S70511464) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24591', NULL, 'VARIOS', '00000000', '', '', '', 'JR. AGUSTIN GAMARRA NRO. 280 C.P. HUANCAVELICA (COSTADO DE LA SUNAT S70511464) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24592', NULL, 'VARIOS', '00000000', '', '', '', 'JR. AGUSTIN GAMARRA NRO. 280 C.P. HUANCAVELICA (COSTADO DE LA SUNAT S70511464) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24593', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24594', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24595', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24596', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24597', NULL, 'NOVEDADES MIL OFERTAS EMPRESA INDIVIDUAL DE RESPONSABIL', '', '20603263759', '', '', 'PRO.ICA NRO. 137 (GALERIAS INDUSTRIAL HUANCA-SOTANO1) JUNIN - HUANCAYO - HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24598', NULL, 'VARIOS', '00000000', '', '', '', 'JR. AGUSTIN GAMARRA NRO. 280 C.P. HUANCAVELICA (COSTADO DE LA SUNAT S70511464) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24599', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24600', NULL, 'VARIOS', '00000000', '', '', '', 'PRO.ICA NRO. 137 (GALERIAS INDUSTRIAL HUANCA-SOTANO1) JUNIN - HUANCAYO - HUANCAYO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24601', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24602', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24603', NULL, 'PSICOBABYS S.A.C.', '', '20600984951', '', '', 'AV. BELISARIO SUAREZ NRO. 1118 URB. SAN JUAN (POR LA MUNICIPALIDAD DE SAN JUAN DE MIRA) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24604', NULL, 'PSICOBABYS S.A.C.', '', '20600984951', '', '', 'AV. BELISARIO SUAREZ NRO. 1118 URB. SAN JUAN (POR LA MUNICIPALIDAD DE SAN JUAN DE MIRA) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24605', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24606', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24607', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24608', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24609', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24610', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24611', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24612', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24613', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24614', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24615', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24616', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24617', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24618', NULL, 'FERNANDO BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24619', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24620', NULL, 'FERNANDO BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24621', NULL, 'ENRRIQUE SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24622', NULL, 'ANITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24623', NULL, 'MAYRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24624', NULL, 'MANUEL GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24625', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24626', NULL, 'VILMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24627', NULL, 'NANCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24628', NULL, 'ROSMERY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24629', NULL, 'SERVICIOS Y ALIMENTOS LA MERCED E.I.R.L.', '', '20348611373', '', '', 'CAL.LOS MEMBRILLOS NRO. 228 APV. EL NARANJAL (CALLE LOS MEMBRILLOS 228-230-232) LIMA - LIMA - SAN MARTIN DE PORRE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24630', NULL, 'OTROS', '00000000', '', '', '', 'CAL.LOS MEMBRILLOS NRO. 228 APV. EL NARANJAL (CALLE LOS MEMBRILLOS 228-230-232) LIMA - LIMA - SAN MARTIN DE PORRE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24631', NULL, 'OTROS', '00000000', '', '', '', 'CAL.LOS MEMBRILLOS NRO. 228 APV. EL NARANJAL (CALLE LOS MEMBRILLOS 228-230-232) LIMA - LIMA - SAN MARTIN DE PORRE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24632', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24633', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24634', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24635', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24636', NULL, 'jose cortijo', '06566275', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24637', NULL, 'jose cortijo', '06566275', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24638', NULL, 'jose cortijo', '06566275', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24639', NULL, 'jose cortijo', '06566275', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24640', NULL, 'DENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24641', NULL, 'RAFAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24642', NULL, 'YANETH', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24643', NULL, 'YESICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24644', NULL, 'BEATRIZ HUERTA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24645', NULL, 'ETHEL RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24646', NULL, 'ETHEL RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24647', NULL, 'ETHEL RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24648', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24649', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24650', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24651', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24652', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24653', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24654', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24655', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24656', NULL, 'luz zarate', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24657', NULL, 'luz zarate', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24658', NULL, 'luz zarate', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24659', NULL, 'luz zarate', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24660', NULL, 'luz zarate', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24661', NULL, 'ISABEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24662', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24663', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24664', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24665', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24666', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24667', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24668', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24669', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24670', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24671', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24672', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24673', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24674', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24675', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24676', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24677', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24678', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24679', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24680', NULL, 'CRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24681', NULL, 'CRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24682', NULL, 'CRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24683', NULL, 'CRIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24684', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24685', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24686', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24687', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24688', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24689', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24690', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24691', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24692', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24693', NULL, 'CARLOS BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24694', NULL, 'CARLOS BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24695', NULL, 'CARLOS BUSTAMANTE', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24696', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24697', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24698', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24699', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24700', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24701', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24702', NULL, 'MUSMUSS SOCIEDAD ANONIMA CERRADA - MUSMUSS S.A.C.', '', '20601327717', '', '', 'PRO.GAMARRA NRO. 756 INT. 112 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24703', NULL, 'MUSMUSS SOCIEDAD ANONIMA CERRADA - MUSMUSS S.A.C.', '', '20601327717', '', '', 'PRO.GAMARRA NRO. 756 INT. 112 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24704', NULL, 'MUSMUSS SOCIEDAD ANONIMA CERRADA - MUSMUSS S.A.C.', '', '20601327717', '', '', 'PRO.GAMARRA NRO. 756 INT. 112 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24705', NULL, 'MUSMUSS SOCIEDAD ANONIMA CERRADA - MUSMUSS S.A.C.', '', '20601327717', '', '', 'PRO.GAMARRA NRO. 756 INT. 112 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24706', NULL, 'DISTRIBUIDORA XIOMARA ALEXA S.C.R.LTDA', '', '20388763338', '', '', 'AV. 28 DE JULIO NRO. 2586 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24707', NULL, 'DISTRIBUIDORA XIOMARA ALEXA S.C.R.LTDA', '', '20388763338', '', '', 'AV. 28 DE JULIO NRO. 2586 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24708', NULL, 'DISTRIBUIDORA XIOMARA ALEXA S.C.R.LTDA', '', '20388763338', '', '', 'AV. 28 DE JULIO NRO. 2586 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24709', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24710', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24711', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24712', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24713', NULL, 'VARIOS', '00000000', '', '', '', 'AV. 28 DE JULIO NRO. 2586 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24714', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24715', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24716', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24717', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24718', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24719', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24720', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24721', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24722', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24723', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24724', NULL, 'CARLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24725', NULL, 'GINA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24726', NULL, 'ROCIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24727', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24728', NULL, 'ERIKA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24729', NULL, 'ERIKA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24730', NULL, 'ERIKA FLORES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24731', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24732', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24733', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24734', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24735', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24736', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24737', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24738', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24739', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24740', NULL, 'PALME SERVICIOS GENERALES S.R.L.', '', '20530738249', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24741', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24742', NULL, 'VARIOS', '00000000', '', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24743', NULL, 'VARIOS', '00000000', '', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24744', NULL, 'VARIOS', '00000000', '', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24745', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24746', NULL, 'VARIOS', '00000000', '', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24747', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24748', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24749', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24750', NULL, 'GRUPO ENROLADOS PERU S.A.C.', '', '20603427972', '', '', 'AV. PROCERES DE LA INDEPENDENCIA NRO. 1565 INT. A URB. LAS FLORES DE LIMA (MEDIA CUADRA DEL BRITANICO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24751', NULL, 'yazmin fernandez  cipra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24752', NULL, 'yazmin fernandez  cipra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24753', NULL, 'yazmin fernandez  cipra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24754', NULL, 'yazmin fernandez  cipra', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24755', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24756', NULL, 'VARIOS', '00000000', '', '', '', 'AV. PROCERES DE LA INDEPENDENCIA NRO. 1565 INT. A URB. LAS FLORES DE LIMA (MEDIA CUADRA DEL BRITANICO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24757', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24758', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24759', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24760', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24761', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24762', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24763', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24764', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24765', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24766', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24767', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24768', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24769', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24770', NULL, 'LUIS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24771', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24772', NULL, 'LUCERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24773', NULL, 'VANESA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24774', NULL, 'JACINTA OCHATOMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24775', NULL, 'JACINTA OCHATOMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24776', NULL, 'MARTA RUIZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24777', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24778', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24779', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24780', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24781', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24782', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24783', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24784', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24785', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24786', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24787', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24788', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24789', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24790', NULL, 'celestino de la cruz vasquez', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24791', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24792', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24793', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24794', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24795', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24796', NULL, 'QUISPE MARIN CARLOS ALBERTO', '', '10107561311', '', '', 'AV JORGE CHAVEZ MZ B LOTE 3 VMT', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24797', NULL, 'gaby santisteban', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24798', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24799', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24800', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24801', NULL, 'YOLANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24802', NULL, 'VARIOS', '00000000', '', '', '', 'AV JORGE CHAVEZ MZ B LOTE 3 VMT', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24803', NULL, 'VARIOS', '00000000', '', '', '', 'AV JORGE CHAVEZ MZ B LOTE 3 VMT', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24804', NULL, 'YOSELIN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24805', NULL, 'CEP MARIA AUXILIADORA', '', '20127355020', '', '', 'JR. OLMEDO NRO. 120 LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24806', NULL, 'HUGO OSTERLON VARGAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24807', NULL, 'GABY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24808', NULL, 'ivan saravia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24809', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24810', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24811', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24812', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24813', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24814', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24815', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24816', NULL, 'ELVIRA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24817', NULL, 'PERCY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24818', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24819', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24820', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24821', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24822', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24823', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24824', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24825', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24826', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24827', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24828', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24829', NULL, 'IVAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24830', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24831', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24832', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24833', NULL, 'EDGARDO ROMERO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24834', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24835', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24836', NULL, 'JUAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24837', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24838', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24839', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24840', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24841', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24842', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24843', NULL, 'DIANA LIMA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24844', NULL, 'JAVIER PAICO SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24845', NULL, 'JAVIER PAICO SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24846', NULL, 'JAVIER PAICO SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24847', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24848', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24849', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24850', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24851', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24852', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24853', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24854', NULL, 'CARMEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24855', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24856', NULL, 'VICTORIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24857', NULL, 'ISMAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24858', NULL, 'ISMAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24859', NULL, 'ISMAEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24860', NULL, 'JACKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24861', NULL, 'JACKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24862', NULL, 'JACKY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24863', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24864', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24865', NULL, 'YESENIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24866', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24867', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24868', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24869', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24870', NULL, 'ERLINDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24871', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24872', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24873', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24874', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24875', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24876', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24877', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24878', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24879', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24880', NULL, 'HERBOZO GARCIA DINA FLORENCIA', '', '10077251630', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24881', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24882', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24883', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24884', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24885', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24886', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24887', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24888', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24889', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24890', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24891', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24892', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24893', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24894', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24895', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24896', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24897', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24898', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24899', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24900', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24901', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24902', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24903', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24904', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24905', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24906', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24907', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24908', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24909', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24910', NULL, 'VARIOS', '00000000', '', '', '', 'coovitiomar mz i2 lote 36 santa rosa', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24911', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24912', NULL, 'RAFAEL UBILLUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24913', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24914', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24915', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24916', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24917', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24918', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24919', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24920', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24921', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24922', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24923', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24924', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24925', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24926', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24927', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24928', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24929', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24930', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24931', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24932', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24933', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24934', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24935', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24936', NULL, 'CECILIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24937', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24938', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24939', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24940', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24941', NULL, 'KARIN RIVAS COTRINA', '27752672', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24942', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24943', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24944', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24945', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24946', NULL, 'MONTOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24947', NULL, 'MONTOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24948', NULL, 'MONTOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24949', NULL, 'MONTOYA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24950', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24951', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24952', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24953', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24954', NULL, 'LIDIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24955', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24956', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24957', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24958', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24959', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24960', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24961', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24962', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24963', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24964', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24965', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24966', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24967', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24968', NULL, 'ALEJANDRO ISAIAS FLORES OSORIO', '10278710', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24969', NULL, 'gabriela de la cruz', '47048890', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24970', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24971', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24972', NULL, 'GABRIELA DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24973', NULL, 'GABRIELA DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24974', NULL, 'GABRIELA DE LA CRUZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24975', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24976', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24977', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24978', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24979', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24980', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24981', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24982', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24983', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24984', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24985', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24986', NULL, 'ARGA MEDIC E.I.R.L.', '', '20516753049', '', '', 'AV. SANTA ROSA NRO. 160 P.J. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24987', NULL, 'ARGA MEDIC E.I.R.L.', '', '20516753049', '', '', 'AV. SANTA ROSA NRO. 160 P.J. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24988', NULL, 'VARIOS', '00000000', '', '', '', 'AV. SANTA ROSA NRO. 160 P.J. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24989', NULL, 'VARIOS', '00000000', '', '', '', 'AV. SANTA ROSA NRO. 160 P.J. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24990', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24991', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24992', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24993', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24994', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24995', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24996', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24997', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24998', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('24999', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25000', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25001', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25002', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25003', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25004', NULL, 'KAREN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25005', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25006', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25007', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25008', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25009', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25010', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25011', NULL, 'CARLOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25012', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25013', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25014', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25015', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25016', NULL, 'OTROS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25017', NULL, 'OTROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25018', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25019', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25020', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25021', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25022', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25023', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25024', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25025', NULL, 'GOMEZ MARAVI CARLOS ALBERTO', '', '10067803995', '', '', 'JR  YAPURA 137 BREÑA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25026', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25027', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25028', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25029', NULL, 'TELEC SOCIEDAD ANONIMA', '', '20297564901', '', '', 'JR. SAENZ PEÑA NRO. 268 INT. 101 URB. LOS LIBERTADORES (ALTURA CRUCE AV.ANGELICA GAMARRA-TOMAS V) LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25030', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25031', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25032', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25033', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25034', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25035', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25036', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25037', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25038', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25039', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25040', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25041', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25042', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25043', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25044', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25045', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25046', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25047', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25048', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25049', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25050', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25051', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25052', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25053', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25054', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25055', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25056', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25057', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25058', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25059', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25060', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25061', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25062', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25063', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25064', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25065', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25066', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25067', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25068', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25069', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25070', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25071', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25072', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25073', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25074', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25075', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25076', NULL, 'jose amao', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25077', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25078', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25079', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25080', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25081', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25082', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25083', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25084', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25085', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25086', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25087', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25088', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25089', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25090', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25091', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25092', NULL, 'PALME SERVICIOS GENERALES S.R.L.', '', '20530738249', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25093', NULL, 'PALME SERVICIOS GENERALES S.R.L.', '', '20530738249', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25094', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25095', NULL, 'YENI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25096', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25097', NULL, 'VARIOS', '00000000', '', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25098', NULL, 'VARIOS', '00000000', '', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25099', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25100', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25101', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25102', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25103', NULL, 'MISME CUBA ABEL', '', '10435951339', '', '', 'AAHH LAS TERRAZAS DE CATALINA HUANCA  MAZ M LOTE 3 -EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25104', NULL, 'ROSARIO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25105', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25106', NULL, 'maximina campaña', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25107', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25108', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25109', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25110', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25111', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25112', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25113', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25114', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25115', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25116', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25117', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25118', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25119', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25120', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25121', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25122', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25123', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25124', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25125', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25126', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25127', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25128', NULL, 'CARITO GARCIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25129', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25130', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25131', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25132', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25133', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25134', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25135', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25136', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25137', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25138', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25139', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25140', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25141', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25142', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25143', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25144', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25145', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25146', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25147', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25148', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25149', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25150', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25151', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25152', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25153', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25154', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25155', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25156', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25157', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25158', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25159', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25160', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25161', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25162', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25163', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25164', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25165', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25166', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25167', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25168', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25169', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25170', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25171', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25172', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25173', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25174', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25175', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25176', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25177', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25178', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25179', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25180', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25181', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25182', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25183', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25184', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25185', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25186', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25187', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25188', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25189', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25190', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25191', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25192', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25193', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25194', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25195', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25196', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25197', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25198', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25199', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25200', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25201', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25202', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25203', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25204', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25205', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25206', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25207', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25208', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25209', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25210', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25211', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25212', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25213', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25214', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25215', NULL, 'janet mirian sanchez rosales', '32910411', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25216', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25217', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25218', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25219', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25220', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25221', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25222', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25223', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25224', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25225', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25226', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25227', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25228', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25229', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25230', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25231', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25232', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25233', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25234', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25235', NULL, 'MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25236', NULL, 'MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25237', NULL, 'MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25238', NULL, 'MIRANDA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25239', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25240', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25241', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25242', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25243', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25244', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25245', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25246', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25247', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25248', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25249', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25250', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25251', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25252', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25253', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25254', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25255', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25256', NULL, 'varios', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25257', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25258', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25259', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25260', NULL, 'REYNA MOSCOSO SANDRA EMMA', '', '10101993481', '', '', 'AV SAN BERNARDO 221 LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25261', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25262', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25263', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25264', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25265', NULL, 'HERRERA TUYA EDGAR ALBERTO', '', '10400150147', '', '', 'JR LADISLAO MEZA 154 - HUARAZ', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25266', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25267', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25268', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25269', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25270', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25271', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25272', NULL, 'NANCY SALAZAR', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25273', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25274', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25275', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25276', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25277', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25278', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25279', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25280', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25281', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25282', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25283', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25284', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25285', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25286', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25287', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25288', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25289', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25290', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25291', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25292', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25293', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25294', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25295', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25296', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25297', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25298', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25299', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25300', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25301', NULL, 'PICHIHUA QUISPE EFRAIN', '', '10311849471', '', '', 'av. andahuaylas #455 andahuaylas', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25302', NULL, 'minica florian', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25303', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25304', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25305', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25306', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25307', NULL, 'MONICA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25308', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25309', NULL, 'AGUILAR RONDAN FORTUNATA PAULA', '', '10326403798', '', '', 'JR LAMAR 189 RECUAY - ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25310', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25311', NULL, 'VARIOS', '00000000', '', '', '', 'JR LAMAR 189 RECUAY - ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25312', NULL, 'VARIOS', '00000000', '', '', '', 'JR LAMAR 189 RECUAY - ANCASH', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25313', NULL, 'robinson alejandro arias', '40055995', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25314', NULL, 'robinson alejandro arias', '40055995', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25315', NULL, 'robinson alejandro arias', '40055995', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25316', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25317', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25318', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25319', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25320', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25321', NULL, 'ESTEFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25322', NULL, 'ESTEFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25323', NULL, 'ESTEFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25324', NULL, 'ESTEFANIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25325', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25326', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25327', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25328', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25329', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25330', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25331', NULL, 'DIANA CONTRERAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25332', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25333', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25334', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25335', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25336', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25337', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25338', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25339', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25340', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25341', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25342', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25343', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25344', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25345', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25346', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25347', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25348', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25349', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25350', NULL, 'CARMEN ÑIQUEN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25351', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25352', NULL, 'CORPORACION ARTE DEL CALZADO S.A.C.', '', '20600398475', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25353', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25354', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25355', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25356', NULL, 'CORPORACION ARTE DEL CALZADO S.A.C.', '', '20600398475', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25357', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25358', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25359', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25360', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25361', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25362', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25363', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25364', NULL, 'LUIS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25365', NULL, 'PATRICIA CONTO', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25366', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25367', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25368', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25369', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25370', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25371', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25372', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25373', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25374', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25375', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25376', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25377', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25378', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25379', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25380', NULL, 'VARIOS', '00000000', '', '', '', 'AV. INCA GARCILAZO D ELA VEGA NRO. 1040 INT. 41 CERCADO DE LIMA LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25381', NULL, 'BENAVIDES CIEZA DILSA FLOR', '', '10416156684', '', '', 'CALLE 17 DE DICIEMBRE #219 URB. COVIDA-S.M.P-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25382', NULL, 'BENAVIDES CIEZA DILSA FLOR', '', '10416156684', '', '', 'CALLE 18 DE DICIEMBRE #219 URB. COVIDA S.M.P LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25383', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25384', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25385', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25386', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25387', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25388', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25389', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25390', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25391', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25392', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25393', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25394', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25395', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25396', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25397', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25398', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25399', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25400', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25401', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25402', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25403', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25404', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25405', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25406', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25407', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25408', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25409', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25410', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25411', NULL, 'MILAGROS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25412', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25413', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25414', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25415', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25416', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25417', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25418', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25419', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25420', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25421', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25422', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25423', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25424', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25425', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25426', NULL, 'ALEJANDRO CORRALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25427', NULL, 'ALEJANDRO CORRALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25428', NULL, 'ALEJANDRO CORRALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25429', NULL, 'ALEJANDRO CORRALES', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25430', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25431', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25432', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25433', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25434', NULL, 'SUNIX TECH S.A.C.', '', '20602119557', '', '', 'AV. LOS NOGALES TORRE 1 NRO. 251 DPTO. 1203 (PDERO. EL PINO STA. ANITA) LIMA - LIMA - EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25435', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25436', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS NOGALES TORRE 1 NRO. 251 DPTO. 1203 (PDERO. EL PINO STA. ANITA) LIMA - LIMA - EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25437', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25438', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25439', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25440', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25441', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25442', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25443', NULL, 'jose huamani mayhuire', '09726712', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25444', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25445', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25446', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25447', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25448', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25449', NULL, 'LUMAR PERU E.I.R.L.', '', '20556737992', '', '', 'AV. MRCAL OSCAR R BENAVIDES NRO. 4853 URB. LA COLONIAL (COSTADO DE PLAZA VEA - COLONIAL) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25450', NULL, 'LUMAR PERU E.I.R.L.', '', '20556737992', '', '', 'AV. MRCAL OSCAR R BENAVIDES NRO. 4853 URB. LA COLONIAL (COSTADO DE PLAZA VEA - COLONIAL) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25451', NULL, 'VARIOS', '00000000', '', '', '', 'AV. MRCAL OSCAR R BENAVIDES NRO. 4853 URB. LA COLONIAL (COSTADO DE PLAZA VEA - COLONIAL) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25452', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25453', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25454', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25455', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25456', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25457', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25458', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25459', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25460', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25461', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25462', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25463', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25464', NULL, 'DISTRIBUIDORA KRISTELL & LIAN E.I.R.L.', '', '20603475276', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25465', NULL, 'DISTRIBUIDORA KRISTELL & LIAN E.I.R.L.', '', '20603475276', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25466', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25467', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25468', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25469', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25470', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25471', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25472', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25473', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25474', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25475', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25476', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25477', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25478', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25479', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25480', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25481', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25482', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25483', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25484', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ARGENTINA NRO. 327 INT. EI-4 PJE. 3 SECUNDARIO (C.C. BELLOTA) LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25485', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25486', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25487', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25488', NULL, 'JANAVI SAC', '', '20525048218', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25489', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25490', NULL, 'ANN ELIZABETH CHAVEZ VALDIVIESO', '00000000', '', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25491', NULL, 'ANN ELIZABETH CHAVEZ VALDIVIESO', '00000000', '', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25492', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25493', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25494', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25495', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25496', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25497', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25498', NULL, 'FRANK', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25499', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25500', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25501', NULL, 'INVERSIONES LACTEAS FRANKLIN & ELSA E.I.R.L.', '', '20602113419', '', '', 'JR. BOLOGNESI NRO. 705 LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25502', NULL, 'JANAVI SAC', '', '20525048218', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25503', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25504', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25505', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS HEROES NRO. 515 INT. 4 MERCADO COOPERATIVA CIUDAD DE DIOS (GALERIA FUTURO 2DO PISO) LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25506', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25507', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25508', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25509', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25510', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25511', NULL, 'VARIOS', '00000000', '', '', '', 'JR. BOLOGNESI NRO. 705 LIMA - LIMA - MAGDALENA DEL MAR', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25512', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25513', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25514', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25515', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25516', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25517', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25518', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25519', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25520', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25521', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25522', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25523', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25524', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25525', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25526', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25527', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25528', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25529', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25530', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25531', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25532', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25533', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25534', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25535', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25536', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25537', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25538', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25539', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25540', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25541', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25542', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25543', NULL, 'MARIBEL', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25544', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25545', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25546', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25547', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25548', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25549', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25550', NULL, 'KETTY ELIZABETH JULCA VALDEZ', '42809863', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25551', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25552', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25553', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25554', NULL, 'KAMILA CUBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25555', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25556', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25557', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25558', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25559', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25560', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25561', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25562', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25563', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25564', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25565', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25566', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25567', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25568', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25569', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25570', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25571', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25572', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25573', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25574', NULL, 'CINDY', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25575', NULL, 'TECNICAS PREDICTIVAS SAC', '', '20535550639', '', '', 'JR. HERMILIO VALDIZAN NRO. 164 DPTO. 401 LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25576', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25577', NULL, 'VARIOS', '00000000', '', '', '', 'JR. HERMILIO VALDIZAN NRO. 164 DPTO. 401 LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25578', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25579', NULL, 'IAB PROYECTOS Y SUPERVISION DE OBRAS E.I.R.L.', '', '20604932557', '', '', 'AV. UNIVERSITARIA NRO. S/N DPTO. 103 PARCELA 1 (BQ D) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25580', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25581', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25582', NULL, 'VARIOS', '00000000', '', '', '', 'JR. HERMILIO VALDIZAN NRO. 164 DPTO. 401 LIMA - LIMA - JESUS MARIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25583', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25584', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25585', NULL, 'VARIOS', '00000000', '', '', '', 'AV. UNIVERSITARIA NRO. S/N DPTO. 103 PARCELA 1 (BQ D) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25586', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25587', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25588', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25589', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25590', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25591', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25592', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25593', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25594', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25595', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25596', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25597', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25598', NULL, 'SALDAÑA VELIZ JOSE LUIS', '', '10409947323', '', '', 'MZ B 3 LOTE 15 SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25599', NULL, 'VARIOS', '00000000', '', '', '', 'MZ B 3 LOTE 15 SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25600', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25601', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25602', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25603', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25604', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25605', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25606', NULL, 'VARIOS', '00000000', '', '', '', 'MZ B 3 LOTE 15 SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25607', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25608', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25609', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25610', NULL, 'VARIOS', '00000000', '', '', '', 'MZ B 3 LOTE 15 SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25611', NULL, 'VARIOS', '00000000', '', '', '', 'MZ B 3 LOTE 15 SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25612', NULL, 'VARIOS', '00000000', '', '', '', 'MZ B 3 LOTE 15 SURQUILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25613', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25614', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25615', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25616', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25617', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25618', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25619', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25620', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25621', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25622', NULL, 'GISELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25623', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25624', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25625', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25626', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25627', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25628', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25629', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25630', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25631', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25632', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25633', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25634', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25635', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25636', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25637', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25638', NULL, 'ines jaimes', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25639', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25640', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25641', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25642', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25643', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25644', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25645', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25646', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25647', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25648', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25649', NULL, 'DEYSI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25650', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25651', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25652', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25653', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25654', NULL, 'RK TECHNIC S.A.C', '', '20392510789', '', '', 'MZA. E LOTE. 22 URB. LAS BRISAS - 2DA ETAPA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25655', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25656', NULL, 'LUISA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25657', NULL, 'ana maria', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25658', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25659', NULL, 'VARIOS', '00000000', '', '', '', 'MZA. E LOTE. 22 URB. LAS BRISAS - 2DA ETAPA LIMA - LIMA - SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25660', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25661', NULL, 'ISABEL BUSTAMANTE', '46995059', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25662', NULL, 'JOSE MAQUERA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25663', NULL, 'LUCERO RIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25664', NULL, 'SANDRA GALARZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25665', NULL, 'JUANA ESPINOZA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25666', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25667', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25668', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25669', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25670', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25671', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25672', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25673', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25674', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25675', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25676', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25677', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25678', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25679', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25680', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25681', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25682', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25683', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25684', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25685', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25686', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25687', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25688', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25689', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25690', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25691', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25692', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25693', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25694', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25695', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25696', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25697', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25698', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25699', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25700', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25701', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25702', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25703', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25704', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25705', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25706', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25707', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25708', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25709', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25710', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25711', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25712', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25713', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25714', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25715', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25716', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25717', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25718', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25719', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25720', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25721', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25722', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25723', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25724', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25725', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25726', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25727', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25728', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25729', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25730', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25731', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25732', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25733', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25734', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25735', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25736', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25737', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25738', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25739', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25740', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25741', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25742', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25743', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25744', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25745', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25746', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25747', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25748', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25749', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25750', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25751', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25752', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25753', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25754', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25755', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25756', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25757', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25758', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25759', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25760', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25761', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25762', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25763', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25764', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25765', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25766', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25767', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25768', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25769', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25770', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25771', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25772', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25773', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25774', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25775', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25776', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25777', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25778', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25779', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25780', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25781', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25782', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25783', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25784', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25785', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25786', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25787', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25788', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25789', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25790', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25791', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25792', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25793', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25794', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25795', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25796', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25797', NULL, 'LUIS BULLON', '42326065', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25798', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25799', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25800', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25801', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25802', NULL, 'ITA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25803', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25804', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25805', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25806', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25807', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25808', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25809', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25810', NULL, 'RICARDO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25811', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25812', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25813', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25814', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25815', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25816', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25817', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25818', NULL, 'JOSERIEL AUTO MOTOR\'S PART\'S S.A.C', '', '20517469450', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25819', NULL, 'JOSERIEL AUTO MOTOR\'S PART\'S S.A.C', '', '20517469450', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25820', NULL, 'JOSERIEL AUTO MOTOR\'S PART\'S S.A.C', '', '20517469450', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25821', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25822', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25823', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25824', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25825', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25826', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25827', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25828', NULL, 'ANDERE LEHRE S.A.C.', '', '20604962324', '', '', 'MZA. D LOTE. 1B COO. HUAYTAPALLANA LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25829', NULL, 'ANDERE LEHRE S.A.C.', '', '20604962324', '', '', 'MZA. D LOTE. 1B COO. HUAYTAPALLANA LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25830', NULL, 'ANDERE LEHRE S.A.C.', '', '20604962324', '', '', 'MZA. D LOTE. 1B COO. HUAYTAPALLANA LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25831', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25832', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25833', NULL, 'VARIOS', '00000000', '', '', '', 'MZA. D LOTE. 1B COO. HUAYTAPALLANA LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25834', NULL, 'VARIOS', '00000000', '', '', '', 'MZA. D LOTE. 1B COO. HUAYTAPALLANA LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25835', NULL, 'WORLD SERVICE R & H S.A.C.', '', '20605426884', '', '', '----UNIDAD INMOBILIARIA 2 MZA. O LOTE. 33 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25836', NULL, 'BIANCA ARIAS SUAREZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25837', NULL, 'VARIOS', '00000000', '', '', '', 'MZA. D LOTE. 1B COO. HUAYTAPALLANA LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25838', NULL, 'VARIOS', '00000000', '', '', '', 'MZA. D LOTE. 1B COO. HUAYTAPALLANA LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25839', NULL, 'VARIOS', '00000000', '', '', '', '----UNIDAD INMOBILIARIA 2 MZA. O LOTE. 33 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25840', NULL, 'VARIOS', '00000000', '', '', '', '----UNIDAD INMOBILIARIA 2 MZA. O LOTE. 33 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25841', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25842', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25843', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25844', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25845', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25846', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25847', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25848', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25849', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25850', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25851', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25852', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25853', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25854', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25855', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25856', NULL, 'VARIOS', '00000000', '', '', '', 'JR. SAENZ PEÑA NRO. 155 INT. B2 LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25857', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25858', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25859', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25860', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25861', NULL, 'LUZ MERY PAIBA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25862', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25863', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25864', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25865', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25866', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25867', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25868', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25869', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25870', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25871', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25872', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25873', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25874', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25875', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25876', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25877', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25878', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25879', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25880', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25881', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25882', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25883', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25884', NULL, 'GRIFOS GES S.A.C.', '', '20605129154', '', '', 'AV. ISABEL LA CATOLICA NRO. S/N URB. MATUTE (ESQUINA CON JR ANDAHUAYLAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25885', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25886', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25887', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25888', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25889', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25890', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25891', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25892', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25893', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25894', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25895', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ISABEL LA CATOLICA NRO. S/N URB. MATUTE (ESQUINA CON JR ANDAHUAYLAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25896', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25897', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25898', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25899', NULL, 'VARIOS', '00000000', '', '', '', 'AV. ISABEL LA CATOLICA NRO. S/N URB. MATUTE (ESQUINA CON JR ANDAHUAYLAS) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25900', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25901', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25902', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25903', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25904', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25905', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25906', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25907', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25908', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25909', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25910', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25911', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25912', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25913', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25914', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25915', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25916', NULL, 'LUCAS TREJO FERNANDA', '90045346', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25917', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25918', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25919', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25920', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25921', NULL, 'ESTRELLA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25922', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25923', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25924', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25925', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25926', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25927', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25928', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25929', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25930', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25931', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25932', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25933', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25934', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25935', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25936', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25937', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25938', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25939', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25940', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25941', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25942', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25943', NULL, 'ANGELA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25944', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25945', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25946', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25947', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25948', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25949', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25950', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25951', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25952', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25953', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25954', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25955', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25956', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25957', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25958', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25959', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25960', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25961', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25962', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25963', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25964', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25965', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25966', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25967', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25968', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25969', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25970', NULL, 'SILVIA PARIAMACHI', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25971', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25972', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25973', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25974', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25975', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25976', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25977', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25978', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25979', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25980', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25981', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25982', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25983', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25984', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25985', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25986', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25987', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25988', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25989', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25990', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25991', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25992', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25993', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25994', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25995', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25996', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25997', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25998', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('25999', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26000', NULL, 'ANA LOPEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26001', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26002', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26003', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26004', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26005', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26006', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26007', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26008', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26009', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26010', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26011', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26012', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26013', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26014', NULL, 'NAVARRO SOLIS CLAUDIA JOHANA', '', '10416633539', '', '', 'JR HUASCAR CON BOLIVAR 496 -LURIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26015', NULL, 'NAVARRO SOLIS CLAUDIA JOHANA', '', '10416633539', '', '', 'JR HUASCAR CON BOLIVAR 496 -LURIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26016', NULL, 'NAVARRO SOLIS CLAUDIA JOHANA', '', '10416633539', '', '', 'JR HUASCAR CON BOLIVAR 496 -LURIN', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26017', NULL, 'VARIOS', '00000000', '', '', '', 'JR HUASCAR CON BOLIVAR 496 -LURIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26018', NULL, 'VARIOS', '00000000', '', '', '', 'JR HUASCAR CON BOLIVAR 496 -LURIN', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26019', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26020', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26021', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26022', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26023', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26024', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26025', NULL, 'GRUPO WV & K S.A.C.', '', '20555810530', '', '', 'CAL.LAS PRADERAS MZA. M LOTE. 19 APV. CASCADAS DE JAVIER PRADO (CERES-ESPALDA DE PLAZA VEA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26026', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26027', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26028', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26029', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26030', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26031', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26032', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26033', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.LAS PRADERAS MZA. M LOTE. 19 APV. CASCADAS DE JAVIER PRADO (CERES-ESPALDA DE PLAZA VEA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26034', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.LAS PRADERAS MZA. M LOTE. 19 APV. CASCADAS DE JAVIER PRADO (CERES-ESPALDA DE PLAZA VEA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26035', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.LAS PRADERAS MZA. M LOTE. 19 APV. CASCADAS DE JAVIER PRADO (CERES-ESPALDA DE PLAZA VEA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26036', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.LAS PRADERAS MZA. M LOTE. 19 APV. CASCADAS DE JAVIER PRADO (CERES-ESPALDA DE PLAZA VEA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26037', NULL, 'HERMANOS CAPUCHINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26038', NULL, 'HERMANOS CAPUCHINOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26039', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26040', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26041', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26042', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26043', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26044', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26045', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26046', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.LAS PRADERAS MZA. M LOTE. 19 APV. CASCADAS DE JAVIER PRADO (CERES-ESPALDA DE PLAZA VEA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26047', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26048', NULL, 'JUNTA DE PROPIETARIOS DE LA GALERIA CAPON CENTER', '', '20264805156', '', '', 'JR. PARURO NRO. 926 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26049', NULL, 'JUNTA DE PROPIETARIOS DE LA GALERIA CAPON CENTER', '', '20264805156', '', '', 'JR. PARURO NRO. 926 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26050', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26051', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26052', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26053', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26054', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26055', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26056', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.LAS PRADERAS MZA. M LOTE. 19 APV. CASCADAS DE JAVIER PRADO (CERES-ESPALDA DE PLAZA VEA) LIMA - LIMA - ATE', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26057', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26058', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26059', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26060', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26061', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26062', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26063', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26064', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26065', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26066', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26067', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26068', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26069', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26070', NULL, 'ECONOWEBPERU S.A.C.', '', '20601040400', '', '', 'CAL.LAS BEGONIAS MZA. P LOTE. 6 URB. URB ENTEL PERU LIMA - LIMA - SAN JUAN DE MIRAFLORES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26071', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26072', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26073', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26074', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26075', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26076', NULL, 'PEFASA INGENIEROS S.A.C.', '00000000', '20600569725', '', '', 'PRO.HUAMANGA NRO. 321 (3ER PISO) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26077', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26078', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26079', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26080', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26081', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26082', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26083', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26084', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26085', NULL, 'PEFASA INGENIEROS S.A.C.', '', '20600569725', '', '', 'PRO.HUAMANGA NRO. 321 (3ER PISO) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26086', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26087', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26088', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26089', NULL, 'VARIOS', '00000000', '', '', '', 'PRO.HUAMANGA NRO. 321 (3ER PISO) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26090', NULL, 'VARIOS', '00000000', '', '', '', 'PRO.HUAMANGA NRO. 321 (3ER PISO) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26091', NULL, 'VARIOS', '00000000', '', '', '', 'PRO.HUAMANGA NRO. 321 (3ER PISO) LIMA - LIMA - LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26092', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26093', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26094', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26095', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26096', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26097', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26098', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26099', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26100', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26101', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26102', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26103', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26104', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26105', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26106', NULL, 'JORGE CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26107', NULL, 'JORGE CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26108', NULL, 'JORGE CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26109', NULL, 'JORGE CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26110', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26111', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26112', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26113', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26114', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26115', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26116', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26117', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26118', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26119', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26120', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26121', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26122', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26123', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26124', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26125', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26126', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26127', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26128', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26129', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26130', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26131', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26132', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26133', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26134', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26135', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26136', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26137', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26138', NULL, 'GIOVANA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26139', NULL, 'ROSALVA romero guevara', '10284375', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26140', NULL, 'ROSALVA romero guevara', '10284375', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26141', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26142', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26143', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26144', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26145', NULL, 'CINTIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26146', NULL, 'SR. TROQUEL EIRL', '', '20520956388', '', '', 'CAL.CENTENARIO NRO. 1269 URB. AZCONA (ENTRE LA 11 Y 12 DE LA AV.TINGO MARIA) LIMA - LIMA - BREÑA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26147', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26148', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26149', NULL, 'FRANCO MIRANDA JUNIORS ALEXANDER', '', '10412576115', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26150', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26151', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26152', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26153', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26154', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26155', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26156', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26157', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26158', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26159', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26160', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26161', NULL, 'DAYANA carransa', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26162', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26163', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26164', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26165', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26166', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26167', NULL, 'JHONATAN GAMARRA SANCHEZ', '76598449', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26168', NULL, 'JHONATAN GAMARRA SANCHEZ', '76598449', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26169', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26170', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26171', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26172', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26173', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26174', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26175', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26176', NULL, 'SHERLEY ROJAS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26177', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26178', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26179', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26180', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26181', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26182', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26183', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26184', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26185', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26186', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26187', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26188', NULL, 'VARIOS', '00000000', '', '', '', 'JR CUZCO 3145 SAN MARTIN DE PORRES - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26189', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26190', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26191', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26192', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26193', NULL, 'SAMIRA CHAVEZ', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26194', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26195', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26196', NULL, 'EDUARDO RETAMOZO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26197', NULL, 'CYNTHIA APARCANA GOMEZ', '42042877', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26198', NULL, 'PALOMINO LICAS HERMINIO HUMBERTO', '', '10100439056', '', '', 'JR LAMPA 865 CERCADO DE LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26199', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26200', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26201', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26202', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26203', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26204', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26205', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26206', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26207', NULL, 'sebastian ponte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26208', NULL, 'sebastian ponte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26209', NULL, 'sebastian ponte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26210', NULL, 'sebastian ponte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26211', NULL, 'sebastian ponte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26212', NULL, 'sebastian ponte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26213', NULL, 'sebastian ponte', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26214', NULL, 'MELENDEZ ARIAS PEDRO AQUILINO', '', '10107261724', '', '', 'JR LOS COCALENOS 689 CANTO REY - SAN JUAN DE LURIGANCHO - LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26215', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26216', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26217', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26218', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26219', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26220', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26221', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26222', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26223', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26224', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26225', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26226', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26227', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26228', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26229', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26230', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26231', NULL, 'ALISON BENDEZU  SOLIS', '75389980', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26232', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26233', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26234', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26235', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26236', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26237', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26238', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26239', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26240', NULL, 'MODA TEXTIL RIOS SOCIEDAD ANONIMA CERRADA', '', '20549499016', '', '', 'MZA. D LOTE. 35 AGRUP.LOS ANGELES (CRUCE AV.STA.ROSA Y AV.TUSILAGOS) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26241', NULL, 'ALBERTO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26242', NULL, 'CRISTHIAN', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26243', NULL, 'VARIOS', '00000000', '', '', '', 'MZA. D LOTE. 35 AGRUP.LOS ANGELES (CRUCE AV.STA.ROSA Y AV.TUSILAGOS) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26244', NULL, 'VARIOS', '00000000', '', '', '', 'MZA. D LOTE. 35 AGRUP.LOS ANGELES (CRUCE AV.STA.ROSA Y AV.TUSILAGOS) LIMA - LIMA - SAN JUAN DE LURIGANCHO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26245', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26246', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26247', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26248', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26249', NULL, 'yover', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26250', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26251', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26252', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26253', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26254', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26255', NULL, 'VARIOS', '--', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26256', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26257', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26258', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26259', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26260', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26261', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26262', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26263', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26264', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26265', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26266', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26267', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26268', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26269', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26270', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26271', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26272', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26273', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26274', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26275', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26276', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26277', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26278', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26279', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26280', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26281', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26282', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26283', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26284', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26285', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26286', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26287', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26288', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26289', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26290', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26291', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26292', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26293', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26294', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26295', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26296', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26297', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26298', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26299', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26300', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26301', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26302', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26303', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26304', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26305', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26306', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26307', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26308', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26309', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26310', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26311', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26312', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26313', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26314', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26315', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26316', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26317', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26318', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26319', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26320', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26321', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26322', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26323', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26324', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26325', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26326', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26327', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26328', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26329', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26330', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26331', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26332', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26333', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26334', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26335', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26336', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26337', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26338', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26339', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26340', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26341', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26342', NULL, 'GUZMAN SOLIS LUIS LORENZO', '', '10400709896', '', '', 'MZC LT13 ASOCIACION DE POBLADORES OVALO DE PTE PIEDRA-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26343', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26344', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26345', NULL, 'VARIOS', '78104070', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26346', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26347', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26348', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26349', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26350', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26351', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26352', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26353', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26354', NULL, 'VARIOS', '00000000', '', '', '', 'MZC LT13 ASOCIACION DE POBLADORES OVALO DE PTE PIEDRA-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26355', NULL, 'VARIOS', '00000000', '', '', '', 'MZC LT13 ASOCIACION DE POBLADORES OVALO DE PTE PIEDRA-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26356', NULL, 'VARIOS', '00000000', '', '', '', 'MZC LT13 ASOCIACION DE POBLADORES OVALO DE PTE PIEDRA-LIMA-LIMA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26357', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26358', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26359', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26360', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26361', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26362', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26363', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26364', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26365', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26366', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26367', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26368', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26369', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26370', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26371', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26372', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26373', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26374', NULL, 'SONIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26375', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26376', NULL, 'alconia', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26377', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26378', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26379', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26380', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26381', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26382', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26383', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26384', NULL, 'AUDIOTIENDA IMPORT EIRL', '', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26385', NULL, 'AUDIOTIENDA IMPORT EIRL', '', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26386', NULL, 'AUDIOTIENDA IMPORT EIRL', '', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26387', NULL, 'AUDIOTIENDA IMPORT EIRL', '', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26388', NULL, 'AUDIOTIENDA IMPORT EIRL', '', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26389', NULL, 'AUDIOTIENDA IMPORT EIRL', '', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26390', NULL, 'AUDIOTIENDA IMPORT EIRL', '', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26391', NULL, 'AUDIOTIENDA IMPORT EIRL', '', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26392', NULL, 'VARIOS', '00000000', '20488077474', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26393', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26394', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26395', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26396', NULL, 'VARIOS', '00000000', '', '', '', 'CALLE LA HERRADURA MZ H LOTE 10 URB SAN VICENTE TRUJILLO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26397', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26398', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26399', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26400', NULL, 'CAMILA HOLGADO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26401', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26402', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26403', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26404', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26405', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26406', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26407', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26408', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26409', NULL, 'SAMUEL SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26410', NULL, 'SAMUEL SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26411', NULL, 'SAMUEL SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26412', NULL, 'SAMUEL SILVA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26413', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26414', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26415', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26416', NULL, 'APAPACHAME CENTRO INFANTIL E.I.R.L.', '', '20604618194', '', '', 'CAL.SANTA ROSA MZA. B LOTE. 12 A.H. MANUEL SCORZA LIMA - LIMA - EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26417', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26418', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26419', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26420', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.SANTA ROSA MZA. B LOTE. 12 A.H. MANUEL SCORZA LIMA - LIMA - EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26421', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.SANTA ROSA MZA. B LOTE. 12 A.H. MANUEL SCORZA LIMA - LIMA - EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26422', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.SANTA ROSA MZA. B LOTE. 12 A.H. MANUEL SCORZA LIMA - LIMA - EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26423', NULL, 'VARIOS', '00000000', '', '', '', 'CAL.SANTA ROSA MZA. B LOTE. 12 A.H. MANUEL SCORZA LIMA - LIMA - EL AGUSTINO', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26424', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26425', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26426', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26427', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26428', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26429', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26430', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26431', NULL, 'CINTHIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26432', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26433', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26434', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26435', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26436', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26437', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26438', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26439', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26440', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26441', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26442', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26443', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26444', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26445', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26446', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26447', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26448', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26449', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26450', NULL, 'INVERSIONES CASAM S.A.C.', '', '20603078838', '', '', 'JR. CARLOS SALAVERRY NRO. 3592 URB. PANAM. NORTE (COSTADO DEL RESTAURANTE EL AGUAJAL) LIMA - LIMA - LOS OLIVOS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26451', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26452', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26453', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26454', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26455', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26456', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26457', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26458', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26459', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26460', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26461', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26462', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26463', NULL, 'LA SANDWICHERIA', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26464', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26465', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26466', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26467', NULL, 'PIERO MELGAREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26468', NULL, 'PIERO MELGAREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26469', NULL, 'PIERO MELGAREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26470', NULL, 'PIERO MELGAREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26471', NULL, 'PIERO MELGAREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26472', NULL, 'PIERO MELGAREJO', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26473', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26474', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26475', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26476', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26477', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26478', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26479', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26480', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26481', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26482', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26483', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26484', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26485', NULL, 'HUARCAYA CONISLLA LUIS', '', '10218587114', '', '', 'jr. italia #273 ccnuevo mileniun stand 6 chincha-ica', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26486', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26487', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26488', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26489', NULL, 'VARIOS', '00000000', '', '', '', 'jr. italia #273 ccnuevo mileniun stand 6 chincha-ica', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26490', NULL, 'VARIOS', '00000000', '', '', '', 'jr. italia #273 ccnuevo mileniun stand 6 chincha-ica', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26491', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26492', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26493', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26494', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26495', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26496', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26497', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26498', NULL, 'BARRANTES CHIPANA NELLY', '', '10106031911', '', '', 'JR CARLOS BARTAFLOR 570 -SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26499', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26500', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26501', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26502', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26503', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26504', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26505', NULL, 'VARIOS', '00000000', '', '', '', 'JR CARLOS BARTAFLOR 570 -SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26506', NULL, 'VARIOS', '00000000', '', '', '', 'JR CARLOS BARTAFLOR 570 -SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26507', NULL, 'VARIOS', '00000000', '', '', '', 'JR CARLOS BARTAFLOR 570 -SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26508', NULL, 'VARIOS', '00000000', '', '', '', 'JR CARLOS BARTAFLOR 570 -SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26509', NULL, 'VARIOS', '00000000', '', '', '', 'JR CARLOS BARTAFLOR 570 -SAN MARTIN DE PORRES', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26510', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26511', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26512', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26513', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26514', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26515', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26516', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26517', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26518', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26519', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26520', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26521', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26522', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26523', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26524', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26525', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26526', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26527', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26528', NULL, 'adrian hector', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26529', NULL, 'adrian hector', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26530', NULL, 'adrian hector', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26531', NULL, 'adrian hector', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26532', NULL, 'BARTRA MEJIA VANESSA JAHAIDA', '', '10107989311', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26533', NULL, 'VARIOS', '00000000', '', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26534', NULL, 'VARIOS', '00000000', '', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26535', NULL, 'VARIOS', '00000000', '', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26536', NULL, 'VARIOS', '00000000', '', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26537', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26538', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26539', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26540', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26541', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26542', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26543', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26544', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26545', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26546', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26547', NULL, 'VARIOS', '00000000', '', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26548', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26549', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26550', NULL, 'VARIOS', '00000000', '', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26551', NULL, 'VARIOS', '00000000', '', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26552', NULL, 'VARIOS', '00000000', '', '', '', 'JR. PROLONGACION CANGALLO NRO. 145  LA VICTORIA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26553', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26554', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26555', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26556', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26557', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26558', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26559', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26560', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26561', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26562', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26563', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26564', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26565', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26566', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26567', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26568', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26569', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26570', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26571', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26572', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26573', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26574', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26575', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26576', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26577', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26578', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26579', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26580', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26581', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26582', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26583', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26584', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26585', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26586', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26587', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26588', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26589', NULL, 'MULTINEGOCIOS PERUANOS S.A.C. - MULTINEPERU S.A.C.', '', '20601890250', '', '', 'PJ. MARCO DURAN MARTEL NRO. A-04 A.H. DANIEL ALOMIA ROBLES HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26590', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26591', NULL, 'VARIOS', '00000000', '', '', '', 'PJ. MARCO DURAN MARTEL NRO. A-04 A.H. DANIEL ALOMIA ROBLES HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26592', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26593', NULL, 'YO LA LUCHO POLLOS & SALTEADOS S.A.C.', '', '20605400354', '', '', 'AV. RICARDO RIVERA NAVARRETE NRO. 645 INT. A URB. JARDIN LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26594', NULL, 'YO LA LUCHO POLLOS & SALTEADOS S.A.C.', '', '20605400354', '', '', 'AV. RICARDO RIVERA NAVARRETE NRO. 645 INT. A URB. JARDIN LIMA - LIMA - SAN ISIDRO', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26595', NULL, 'VARIOS', '00000000', '', '', '', 'PJ. MARCO DURAN MARTEL NRO. A-04 A.H. DANIEL ALOMIA ROBLES HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26596', NULL, 'VARIOS', '00000000', '', '', '', 'PJ. MARCO DURAN MARTEL NRO. A-04 A.H. DANIEL ALOMIA ROBLES HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26597', NULL, 'VARIOS', '00000000', '', '', '', 'PJ. MARCO DURAN MARTEL NRO. A-04 A.H. DANIEL ALOMIA ROBLES HUANUCO - HUANUCO - AMARILIS', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26598', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26599', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26600', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26601', NULL, 'ferdy ortega', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26602', NULL, 'DENTO ESTHETIC COMPANY S.A.C.', '', '20602600361', '', '', 'AV. LOS CONDORES NRO. 484 DPTO. 103 URB. LA CAPILLA LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26603', NULL, 'DENTO ESTHETIC COMPANY S.A.C.', '', '20602600361', '', '', 'AV. LOS CONDORES NRO. 484 DPTO. 103 URB. LA CAPILLA LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26604', NULL, 'DENTO ESTHETIC COMPANY S.A.C.', '', '20602600361', '', '', 'AV. LOS CONDORES NRO. 484 DPTO. 103 URB. LA CAPILLA LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26605', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26606', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26607', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26608', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26609', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26610', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26611', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS CONDORES NRO. 484 DPTO. 103 URB. LA CAPILLA LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26612', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS CONDORES NRO. 484 DPTO. 103 URB. LA CAPILLA LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26613', NULL, 'VARIOS', '00000000', '', '', '', 'AV. LOS CONDORES NRO. 484 DPTO. 103 URB. LA CAPILLA LIMA - LIMA - LA MOLINA', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26614', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26615', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26616', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26617', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26618', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26619', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26620', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26621', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26622', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26623', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26624', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26625', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26626', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26627', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26628', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26629', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26630', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26631', NULL, 'ESCUELA CAMINANTE ONG', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26632', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26633', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26634', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26635', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26636', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26637', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26638', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26639', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26640', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26641', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26642', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26643', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26644', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26645', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26646', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26647', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26648', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26649', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26650', NULL, 'ZINGA PERU EIRL', '', '20491717140', '', '', 'JR. ANGAMOS NRO. 1198 URB. SAN CARLOS (ESQ JR MIRAFLORES FRENTE HOST MANANTIAL) CAJAMARCA - CAJAMARCA - CAJAMARCA', NULL, NULL, NULL, NULL, NULL, '1', '', NULL, '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26651', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26652', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26653', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26654', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26655', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26656', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26657', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26658', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26659', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26660', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26661', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26662', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26663', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26664', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26665', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26666', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26667', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26668', NULL, 'VARIOS', '00000000', '', '', '', '', NULL, NULL, NULL, NULL, NULL, '1', '', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26669', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26670', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26671', NULL, 'ana chavez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26672', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26673', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26674', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26678', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26679', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26681', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26684', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26685', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26700', NULL, 'ANY APASA MENDOZA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26701', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26702', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26704', NULL, 'GUSTAVO VASQUEZ SALAZAR', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26705', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26706', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26707', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26708', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26709', NULL, 'TRANSERVIS ASCENCION SR. DE CACHUY EMPRESA INDIVIDUAL D', '--', '20521718146', '', '', 'CAL.LOS ROBLES NRO. 957 URB. LA ACHIRANA 2DA ETAPA (A 1/2 C. PUENTE AZUL ALT.COL.SAN JUDAS T) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26712', NULL, 'rosa de la cruz', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26717', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26718', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26719', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26720', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26729', NULL, 'INVERSIONES APU IPA S.A.C.', '--', '20604652759', '', '', 'CAL.5 MZA. I LOTE. 4 URB. LOS GIRASOLES DE LA MOLINA LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26732', NULL, 'JUAN CARLOS MORERA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26734', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26738', NULL, 'CONSTRUCTORA HBA E.I.R.L.', '--', '2052263468', '', '', 'CAL.CAJAMARCA MZA. K-1 LOTE. 29 DPTO. 201 URB. SAN JUAN MASIAS (ENTRE LA AV FAUCET CON AV. CANTA CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26739', NULL, 'CONSTRUCTORA HBA E.I.R.L.', '--', '20522634680', '', '', 'CAL.CAJAMARCA MZA. K-1 LOTE. 29 DPTO. 201 URB. SAN JUAN MASIAS (ENTRE LA AV FAUCET CON AV. CANTA CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26747', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26748', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26749', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26751', NULL, 'ZEGARRA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26752', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26756', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26758', NULL, 'QUILLA MAMANI RUFINO', '--', '10097392400', '', '', 'gabriel bejar 581 santa lusmila -comas', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26760', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26764', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26766', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26770', NULL, 'PEDRO AVILA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26771', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26774', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26776', NULL, 'TRANSATLANTIC AJUSTADORES DE SEGUROS SRL', '--', '20348677633', '', '', 'JR. SANTA HONORATA 560 MZA. G1-5 LOTE. 2-B INT. 303 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26777', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26778', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26783', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26786', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26787', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26788', NULL, 'LUIS ADRIAN  GARRO LIÑAN', '75377235', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26791', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26793', NULL, 'ANILUZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26795', NULL, 'margarita timani fiestas', '06266949', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26797', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26799', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26802', NULL, 'SEVEN DAYS CORPORATION S.A.C.', '--', '20513848901', '', '', 'AV. GEMINIS NRO. 357 URB. LAS BEGONIAS LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26803', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26804', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26805', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26806', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26810', NULL, 'JIRON ANDAHUAYLAS NUMERO 907-915-919 - CERCADO', '--', '20516721198', '', '', 'JR. CUSCO NRO. 716 (6TO PISO-OFICINA ADMINISTRATIVA NRO 601) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26811', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26812', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26816', NULL, 'PALOMARES CABRAL FREDDY', '--', '10255680949', '', '', 'URB STA MARINA SUR BLOCK 20   #213  CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26821', NULL, 'CASFRAN LOGISTIC & INVESTMENT S.A.C.', '--', '20603521197', '', '', 'MZA. L LOTE. 11 URB. SANTO DOMINGUITO LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26823', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26824', NULL, 'ALROSA SAC', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26825', NULL, 'ALROSA SAC', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26826', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26827', NULL, 'PRODUCTOS ENCURTIDOS S.A.C.', '--', '20101676120', '', '', 'AV. LOS CASTILLOS NRO. 301 URB. INDUSTRIAL SANTA ROSA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26829', NULL, 'carhuancho herrera giuliana', '42065067', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26831', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26835', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26836', NULL, 'DISTRIBUIDORA NACIONAL FORTALEZA E.I.R.L', '--', '20422831348', '', '', 'JR. EL CARMEN NRO. 146 LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26840', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26841', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26846', NULL, 'carlos arismendiz', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26847', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26849', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26866', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26868', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26869', NULL, 'MORALES POZO LUIS GUILLERMO', '--', '10429467204', '', '', 'JR. LOS AMAUTAS 159 ZARATE - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26871', NULL, 'JAMMIN COMPANY S.A.C.', '--', '20565523245', '', '', 'AV. MARIA PARADO DE BELLIDO NRO. 513 DPTO. 401 URB. SANTA ISABEL (UNIDAD INMOBILIARIA NUMERO 8) LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26872', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26873', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26880', NULL, 'NEGOCIACIONES E INVERSIONES DAMIFE S.A.C.', '--', '20518373472', '', '', 'JR. ANTONIO MIRO QUESADA NRO. 121 CERCADO (FTE A IGLESIA LA MERCED) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26881', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26883', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26886', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26887', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26888', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26890', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26894', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26895', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26896', NULL, 'PANMELSAC E.I.R.L.', '--', '20604518203', '', '', 'CAL.ENRIQUE ARNAEZ NRO. 550 URB. EL ROSARIO LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26901', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26904', NULL, 'HERNANDEZ MENESES PAUL', '--', '10434660250', '', '', 'AV JOSE CARLOS MAREATEGUI 624 - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26905', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26906', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26908', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26909', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26910', NULL, 'BARTRA MEJIA VANESSA JAHAIDA', '--', '10107989311', '', '', 'PROLONGACION CANGALLO 145 LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26914', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26922', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26923', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26924', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26925', NULL, 'TECNOLOGIA MODERNA CONSTRUCCION JM S.A.C.', '--', '20553637652', '', '', 'CAL.UNO MZA. B LOTE. 23 URB. EL MANANTIAL DE NARANJAL (MERCADO CENTRAL) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26932', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26933', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26935', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26940', NULL, 'DOGIA S.A.C', '--', '20511045526', '', '', 'CAL.AYACUCHO NRO. 390 URB. AMERICA (COSTADO DEL INGRESO MUSEO HUACA PUCLLANA) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26942', NULL, 'MULTISERVICIOS MULTIPLES GUILLERMO & S E.I.R.L.', '--', '20604183813', '', '', 'MZA. LL LOTE. 23 COMAS AS.P.VIV.9 DE OCTUBRE LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26944', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26949', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26950', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26951', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26952', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26955', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26956', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26957', NULL, 'LOAYZA TAICA JUAN JOSE', '--', '15384316929', '', '', 'AV RIVA AGUERO  300 - EL AGUSTINO - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26958', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26960', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26964', NULL, 'CONSTRUCCIONES MULTIPLES M & E S.R.L.', '--', '20602986862', '', '', 'AV. DU PETIT THOUARS NRO. 988 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26967', NULL, 'JENIFFER', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26969', NULL, 'MENDOZA VERGARA RAIDA MARCELA', '--', '10096935221', '', '', 'SECTOR 1 GRUPO 12  MZ I LOTE 1 VILLA EL SALVADOR - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26974', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26975', NULL, 'CURSOR EMPRESARIAL S.A.C. CURSORE S.A.C.', '--', '20537665441', '', '', 'CAL.12 MZA. L LOTE. 06 URB. EL PINAR LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26976', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26982', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26985', NULL, 'WINAGRO PERU S.A.C.', '--', '20604189234', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26988', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26989', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26993', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26995', NULL, 'haro cangahuala carlos alberto', '45372211', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26996', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26998', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('26999', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27000', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27002', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27003', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27004', NULL, 'BUSTINZA MAMANI JAVIER SALOMON', '--', '10435308240', '', '', 'AV MARISCAL CASTILLA 485-MOLLENDO - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27005', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27006', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27007', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27008', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27009', NULL, 'ASOCIACION IGLESIA ADVENTISTA DEL SEPTIMO DIA PERUANA D', '--', '20538633021', '', '', 'CAL.LOS ALAMOS NRO. 301 URB. LOS HALCONES LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27010', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27011', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27012', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27014', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27019', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27020', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27021', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27022', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27025', NULL, 'TEVES QUISPE JULIA', '--', '10238657992', '', '', 'UR MANZANARES  A-5 CUSCO-CUSCO-CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27026', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27028', NULL, 'VICENTE CISNEROS LUIS', '--', '10075041867', '', '', 'JR LAS CALENGULAS 1730-SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27031', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27032', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27033', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27034', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27035', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27036', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27037', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27042', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27043', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27046', NULL, 'IVAN HERRERA', '25653604', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27047', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27048', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27050', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27055', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27059', NULL, 'COMINMAQ PERU S.A.C.', '--', '20557464949', '', '', 'JR. HUAYUCCARI NRO. 190 COO. 27 DE ABRIL LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27060', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27061', NULL, 'GIOVANNA ROJAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27065', NULL, 'KSL S.A.C.', '--', '20556928313', '', '', 'AV. AVIACION NRO. 2477 DPTO. 401 URB. SAN BORJA LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27066', NULL, 'KSL S.A.C.', '--', '20556928313', '', '', 'AV. AVIACION NRO. 2477 DPTO. 401 URB. SAN BORJA LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27067', NULL, 'KSL S.A.C.', '--', '20556928313', '', '', 'AV. AVIACION NRO. 2477 DPTO. 401 URB. SAN BORJA LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27068', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27069', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27072', NULL, 'AGUA SISTEMA Y TECNOLOGÍA S.A.C', '--', '20538073211', '', '', 'PJ. FELIPE PINGLO ALVA NRO. 184 DPTO. 306 RES. LAS TORRES DE SAN BORJA LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27080', NULL, 'ASCENSORES TECNICO ASOCIADOS SAC', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27085', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27088', NULL, 'CHUMBIMUNE ZANABRIA ENRIQUE MANUEL', '--', '10076532007', '', '', 'JR POLO DE ONDEGARDO 299- RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27089', NULL, 'MSKPAIN PERU S.A.C.', '--', '20602913270', '', '', 'AV. GUARDIA CIVIL NRO. 1041 DPTO. 302 RES. LOS INKAS (EDIFICIO D) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27091', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27093', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27095', NULL, 'CELESTINA PARIAMACHI', '31613227', '', '', '', 'AV 13 DE DICIEMBRE 508 HUARAZ- ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27096', NULL, 'CELESTINA PARIAMACHI FLORES', '31613227', '', '', '', 'AV 13 DE DICIEMBRE 508 HUARAZ- ANCASH', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27097', NULL, 'JAMANCA PARIAMACHI COCO ELISEU', '--', '10445731949', '', '', 'AV 13 DE DICIEMBRE 508 HUARAZ- ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27098', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27100', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27102', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27104', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27105', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27106', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27107', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27108', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27109', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27110', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27112', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27113', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27114', NULL, 'MONTAJES GENERALES CORDOVA E.I.R.L.', '--', '20513724331', '', '', 'AV. MCL NIETO NRO. 162 (URB.EL PINO,ALT CDA 19 DE CIRCUNVALACION) LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27115', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27119', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27120', NULL, 'DIGNA ROJAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27121', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27122', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27124', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27127', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27128', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27134', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27140', NULL, 'MAGLAN E.I.R.L.', '--', '20517849287', '', '', 'PJ. INDEPENDENCIA NRO. 340 URB. 28 DE JULIO (ALT. CDRA. 13 DE LA AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27142', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27150', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27157', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27158', NULL, 'MARQUINA JULCA MANUEL JOSE BENJAMIN', '--', '10087972645', '', '', 'JR LOS TITANES MZ O 1 LOTE 12 CHORRILLOS LA CAMPIÑA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27159', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27161', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27165', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27168', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27169', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27172', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27174', NULL, 'SOPAS & MAS E.I.R.L.', '--', '20604994307', '', '', 'AV. LA MARINA NRO. 1541 LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27178', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27179', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27180', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27181', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27182', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27183', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27184', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27185', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27186', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27187', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27188', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27189', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27194', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27195', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27197', NULL, 'ALBINAGORTA DIETZ STEINER ERWIN', '--', '10416165438', '', '', 'AV LAS FLORES 942 SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27202', NULL, 'PALOMINO SUAREZ EUSEBIA', '--', '10107202779', '', '', 'JR CIUDAD DE LAS AMERICAS -SAN JUAN BAUTISTA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27206', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27207', NULL, 'MARIA', '--', '', '', '', 'HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27208', NULL, 'MARIA', '--', '', '', '', 'HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27209', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27210', NULL, 'DAVIS BALAN SANTOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27212', NULL, 'DAVID BALAN SANTOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27213', NULL, 'DAVID BALAN SANTOS', '15342857', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27214', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27218', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27221', NULL, 'FREDDY', '00000000', '', '996285618', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27222', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27228', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27233', NULL, 'GALARZA ALONSO ENRIQUE EUGENIO', '--', '10098356881', '', '', 'AV PERU MZ G 3 LOTE 9 CHORILLOS -  LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27234', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27235', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27236', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27237', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27240', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27247', NULL, 'LOZANO BROCA CARMEN DORIS', '--', '10178049513', '', '', 'MERCADO CENTRAL TD 136- TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27251', NULL, 'BUSTINZA MAMANI JAVIER SALOMON', '--', '10435308240', '', '', 'AV MARISCAL CASTILLA 845 MOLLENDO- AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27252', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27253', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27258', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27264', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27273', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27276', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27278', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27279', NULL, 'ROSAS MARTINEZ NESTOR', '--', '15347676451', '', '', 'URB SAN DIEGO MZ P LOTE 36 S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27280', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27281', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27285', NULL, 'OBRATEC E.I.R.L.', '--', '20539556909', '', '', 'CAL.PIEROLA NRO. 125 INT. 16 (FRENTE AL PORTON DEL BANCO DE LA NACION) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27287', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27288', NULL, 'TICLLA DE CONDOR EDELMIRA', '--', '10273720451', '', '', 'INCA GARCILAZO DE LA VEGA 367 -CHOTA- CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27289', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27291', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27292', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27293', NULL, 'REPRESENTACIONES GENERALES LOLO E.I.R.L.', '--', '20541692216', '', '', 'JR. ELIAS AGUIRRE NRO. 342 CERCADO (A MEDIA CUADRA DE TIENDAS CARSA) ANCASH - SANTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27295', NULL, 'CARLOS PARRA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27297', NULL, 'LOZANO BROCA CARMEN DORIS', '--', '10178049513', '', '', 'MERCADO CENTRAL TDA136 -TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27300', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27301', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27302', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27303', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27304', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27305', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27306', NULL, 'MARIA GONZALES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27314', NULL, 'PLASTICOS SMITH S.A.C.', '--', '20511231150', '', '', 'AV. LAS BRISAS MZA. A LOTE. 16 ASOCIACION 200 MILLAS (ALT PAR PLAYA RIMAC/FTE ASOC PLAYA RIMAC) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27318', NULL, 'LOZANO BROCA CARMEN DORIS', '--', '10178049513', '', '', 'MERCADO CENTRAL TDA 136 -TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27322', NULL, 'NOLA ALEJANDRO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27323', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27324', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27326', NULL, 'BERNANDINA ALEJANDRINA CRUZ MELO', '--', '10323838386', '', '', 'JR PARURO 1064  TDA 132 LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27327', NULL, 'JEAN LINARES ZAMORA', '--', '10107313503', '', '', 'JR MIGUEL ZAMORA 123 LIMA LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27330', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27334', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27339', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27341', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27342', NULL, 'INVERSIONES LUSAMA S.A.C.', '--', '20538143015', '', '', 'AV. SAN MARTIN DE PORRES NRO. 539 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27345', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27346', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27347', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27348', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27349', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27350', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27351', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27356', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27360', NULL, 'INFANCIA ZEGARRA TORRES', '08421317', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27361', NULL, 'INFANCIA ZEGARRA TORRES', '08421317', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27367', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27368', NULL, 'MANTENIMIENTO DE PLANTA Y SERVICIOS SOCIEDAD ANONIMA CE', '--', '20602331921', '', '', 'AV. AVIACION NRO. 3040 DPTO. 2A URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27374', NULL, 'INSTITUTO DE GINECOLOGIA Y REPRODUCCION SA', '--', '20137697450', '', '', 'AV MANUEL OLGUIN 1045 SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27375', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27376', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27384', NULL, 'CURO VICTORIA YESSENIA', '--', '10444999409', '', '', 'AV ABANCAY 1054 INT 508 LIMA - LIMA -  LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27389', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27390', NULL, 'HENOSTROZA ROJAS ROCIO MARILUZ', '', '10423626343', '', '', 'AV. FITZCARRALD#298 -BARR. COMO ALUVIONICO OESTE ANCASH-HUARAZ-HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27391', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27392', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27393', NULL, 'PALOMINO LOZA LUZ LIDES', '--', '10063621078', '', '', 'AV LAS AMERICAS 1404 -PISCO -ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27394', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27401', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27402', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27403', NULL, 'OPERACIONES Y SERVICIOS GENERALES S A', '--', '20210975862', '', '', 'AV. CAMINOS DEL INCA MZA. N LOTE. 19 URB. SAN JUAN BAUTISTA DE V. (URB.SAN JUAN BAUTISTA DE VILLA) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27404', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27405', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27406', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27410', NULL, 'INVERSIONES GENERALES ANGHI S.A.C.', '--', '20536391607', '', '', 'CAL.JULIO CONSIGLIERI ALVARAD MZA. H LOTE. 09 COO. COOVITIOMAR (FRENTE A MUNICIPALIDAD DE SANTA ROSA) LIMA - LIMA - SANTA ROSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27412', NULL, 'patricia trujillo', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27413', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27414', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27415', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27416', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27417', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27418', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27419', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27420', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27422', NULL, 'MEGAOFERTAS.COM E.I.R.L.', '--', '20606251433', '', '', 'JR. ILO NRO. 246 INT. 500 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27423', NULL, 'MEGAOFERTAS.COM E.I.R.L.', '--', '20606251433', '', '', 'JR. ILO NRO. 246 INT. 500 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27427', NULL, 'GUTIERREZ MENDOZA KATHIUSKA VANESSA', '--', '10456095891', '', '', 'COOPERATIVA 9 DE DICIEMBRE - RIMAC - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27430', NULL, 'MARIA RUIZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27432', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27433', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27436', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27437', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27447', NULL, 'LOTO MUNDO E.I.R.L.', '--', '20603020287', '', '', 'CAL.LOS OLIVOS MZA. S LOTE. 10 URB. LOS JAZMINES DE NARANJAL LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27458', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27461', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27464', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27465', NULL, 'CAPILLO HERRERA HYADIR JOSE', '--', '10085747334', '', '', 'JR RIO HUAURA 5463 URB. VILLA NORTE - LOS OLIVOS -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27466', NULL, 'CAPILLO HERRERA HYADIR JOSE', '--', '10085747334', '', '', 'JR RIO HUAURA 5463 URB VILLA NORTE LOS OLIVOS - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27471', NULL, 'HUA YU INTERNACIONAL COMERCIO GROUPO S.A.C.', '--', '20553732566', '', '', 'MZA. 2 LOTE. 7 AGR PACHACAMAC. PARCEL 3A (FRACCION 5-6) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27472', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27473', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27475', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27478', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27479', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27480', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27486', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27487', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27488', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27489', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27490', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27491', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27493', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27497', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27498', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27499', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27500', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27504', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27515', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27516', NULL, 'EMERGENCY ONLINE S.A.C.', '--', '20601382050', '', '', 'MZA. P1 LOTE. 20 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27517', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27518', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27522', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27525', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27531', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27532', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27533', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27534', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27535', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27536', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27537', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27541', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27542', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27543', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27544', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27545', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27546', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27547', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27558', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27560', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27561', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27562', NULL, 'ESPINOZA CORDOVA CLAUDIA VICTORIA', '--', '10424987072', '', '', 'AV SAN JUAN BAUTISTA JR.  SAN JERONIMO 235 - COMAS - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27563', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27565', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27567', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27572', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27575', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27576', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27577', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27578', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27579', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27580', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27585', NULL, 'DENISSE GAMERO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27591', NULL, 'COMERCIAL ELECTROFER PERU S.R.L.', '--', '20306631790', '', '', 'JR. PARURO NRO. 1322 INT. 224 (ASOC. COMERC. SANTA ROSA DE LIMA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27593', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27594', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27595', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27603', NULL, 'GIAPULMONAR E.I.R.L.', '--', '20603084153', '', '', 'CAL.28 DE JULIO NRO. 372 INT. 904 LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27604', NULL, 'GIAPULMONAR E.I.R.L.', '--', '20603084153', '', '', 'CAL.28 DE JULIO NRO. 372 INT. 904 LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27605', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27607', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27613', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27614', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27621', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27622', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27623', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27624', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27626', NULL, 'SILVIA PARIA MACHI FLORES', '80622452', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27627', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27628', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27629', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27630', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27632', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27636', NULL, 'YEFICO SOCIEDAD ANONIMA CERRADA', '--', '20514635952', '', '', 'SECTOR 2 MZA. F LOTE. 04 GRU. 13 (CRUCE AV REVULUCION Y AV VELASCO) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27637', NULL, 'YEFICO SOCIEDAD ANONIMA CERRADA', '--', '20514635952', '', '', 'SECTOR 2 MZA. F LOTE. 04 GRU. 13 (CRUCE AV REVULUCION Y AV VELASCO) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27638', NULL, 'YEFICO SOCIEDAD ANONIMA CERRADA', '--', '20514635952', '', '', 'SECTOR 2 MZA. F LOTE. 04 GRU. 13 (CRUCE AV REVULUCION Y AV VELASCO) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27639', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27640', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27643', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27644', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27645', NULL, 'ERODITA LEON DE MANTILLA', '17830441', '', '', '', 'TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27648', NULL, 'DIAZ VILCA WILMAN RICARDO', '--', '10476510029', '', '', 'JR CUSCO 640   INT. 2021 - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27649', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27650', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27651', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27652', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27653', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27654', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27655', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27656', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27664', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27665', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27666', NULL, 'PALOMINO LOZA LUZ LIDES', '--', '10063621078', '', '', 'AV LAS AMERICAS 1404 PISCO -  ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27668', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27680', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27682', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27683', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27684', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27685', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27686', NULL, 'ARGUME FLORES BEATRIZ ELENA', '--', '10094711016', '', '', 'JR. CAJATAMBO 211 KM 13 DE COMAS  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27688', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27689', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27690', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27696', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27701', NULL, 'AGUILAR DIAZ ROLANDO EBER', '--', '10443800153', '', '', 'AV MIGUEL GRAU S/N TUMPA  YUNGAY - ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27706', NULL, 'EMPRESA DE TRANSPORTES UNIDOS CHAMA SA', '--', '20145380546', '', '', 'AV. MATEO PUMACAHUA MZA. A1 LOTE. 1 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27717', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27718', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27719', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27720', NULL, 'JB DIESEL EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITAD', '--', '20548346321', '', '', 'JR. LOS CHASQUIS NRO. 336 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27721', NULL, 'JB DIESEL EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITAD', '--', '20548346321', '', '', 'JR. LOS CHASQUIS NRO. 336 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27726', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27727', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27729', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27730', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27731', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27732', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27733', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27734', NULL, 'AMAÑE QUISPE ABEL NARCISO', '--', '10403913371', '', '', 'AV JOSE ALDAMES MZ. E LOTE 13 IBERIA - MADRE DE DIOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27735', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27737', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27739', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27740', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27741', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27742', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27747', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27748', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27749', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27752', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27758', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27764', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27765', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27766', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27774', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27776', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27777', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27778', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27794', NULL, 'SALINAS RIVERA JORGE LUIS', '--', '10156472501', '', '', 'URB LAS PALMAS MZ M LOTE 31- HUALMAY -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27795', NULL, 'SALINAS RIVERA JORGE LUIS', '--', '10156472501', '', '', 'URB LAS PALMAS MZ M LOTE 31-HUALMAY -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27796', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27797', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27798', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27799', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27802', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27803', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27806', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27807', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27808', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27809', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27810', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27811', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27812', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27813', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27814', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27819', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27823', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27824', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27825', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27826', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27827', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27828', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27829', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27830', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27834', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27835', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27836', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27837', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27838', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27839', NULL, 'SUAREZ TAMBRA KEVIN CARLOS', '--', '10758180927', '', '', 'SEBASTIAN BARRANCA-ANTONIO BAZO 792-INT B 307 A-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27840', NULL, 'SUAREZ TAMBRA KEVIN CARLOS', '--', '10758180927', '', '', 'SEBASTIAN BARRANCA-ANTONIO BAZO 792-INT B 307 A-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27841', NULL, 'SUAREZ TAMBRA KEVIN CARLOS', '--', '10758180927', '', '', 'SEBASTIAN BARRANCA-ANTONIO BAZO 792-INT B 307 A-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27842', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27843', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27846', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27859', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27860', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27864', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27866', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27871', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27872', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27873', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27880', NULL, 'orfelina', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27881', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27883', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27884', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27885', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27887', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27890', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27891', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27892', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27893', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27894', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27895', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27897', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27898', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27901', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27905', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27908', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27909', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27910', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27917', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27918', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27919', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27920', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27921', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27922', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27923', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27927', NULL, 'NEC TANTARANCHE', '00000000', '', '', '', 'AV. AREQUIPA 381 URB SANTA BEATRIZ - LIMA', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27929', NULL, 'CASTILLO SANCHEZ JESUS GABRIEL', '--', '10094329278', '', '', 'URB MANZANILLA BLOQUE G 3 Dpto 107 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27937', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27938', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27939', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27940', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27941', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27942', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27943', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27945', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27946', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27947', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27948', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27949', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27950', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27951', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27952', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27953', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27958', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27960', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27963', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27964', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27965', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27970', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27971', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27972', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27973', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27974', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27983', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27985', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27991', NULL, 'MAQUIRED EXPORT SOCIEDAD ANONIMA CERRADA', '--', '20525147119', '', '', 'CAL.DEMOCRACIA NRO. 168 INT. PIS3 (CRUCE AV PACIFICO CON AV CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27992', NULL, 'MAQUIRED EXPORT SOCIEDAD ANONIMA CERRADA', '--', '20525147119', '', '', 'CAL.DEMOCRACIA NRO. 168 INT. PIS3 (CRUCE AV PACIFICO CON AV CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27993', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27994', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27995', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27996', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('27999', NULL, 'cristhian paredes', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28000', NULL, 'RIVERA MENDOZA SINTIA MARIA', '--', '10444929443', '', '', 'JR MONSEFU 418- CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28001', NULL, 'RIVERA MENDOZA SINTIA MARIA', '--', '10444929443', '', '', 'JR MONSEFU 418- CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28002', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28003', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28004', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28005', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28006', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28007', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28010', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28013', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28020', NULL, 'GRUPO PIMENTEL S.A.C.', '--', '20606026651', '', '', '----E LARRABURRE UNANUE NRO. 299 DPTO. 605 (PISO 6) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28021', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28022', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28023', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28026', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28028', NULL, 'INVERSIONES CENTERO PERU E.I.R.L.', '--', '20600740491', '', '', 'MZA. D LOTE. 25 ASC. LAS MARGARITAS II ET. LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28029', NULL, 'INVERSIONES CENTERO PERU E.I.R.L.', '--', '20600740491', '', '', 'MZA. D LOTE. 25 ASC. LAS MARGARITAS II ET. LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28030', NULL, 'INVERSIONES CENTERO PERU E.I.R.L.', '--', '20600740491', '', '', 'MZA. D LOTE. 25 ASC. LAS MARGARITAS II ET. LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28033', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28034', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28035', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28036', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28037', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28055', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28058', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28061', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28068', NULL, 'SONIA PEREZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28069', NULL, 'ELIZABETH PEREZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28076', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28082', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28083', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28090', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28091', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28093', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28094', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28095', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28097', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28098', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28099', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28102', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28103', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28104', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28105', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28106', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28107', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28108', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28109', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28113', NULL, 'MALPARTIDA REALPE NELCY RAQUEL', '--', '10067963585', '', '', 'JR OHIGGINS 274 SAN VICENTE - CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28114', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28115', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28116', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28117', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28119', NULL, 'LASINO S.A.', '--', '20388829452', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28122', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28123', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28124', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28127', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28128', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28131', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28132', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28134', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28135', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28136', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28137', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28138', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28139', NULL, 'OTROS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28156', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28157', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28158', NULL, 'VIRGEN DE LA ASUNCION M Y O S.A.C.', '--', '20600024150', '', '', 'CAL.SAN IGNACIO NRO. 443 URB. PALAO 1RA.ET. (ESPALDA HOSP.CAYETANO HEREDIA) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28159', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28160', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28161', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28164', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28165', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28166', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28167', NULL, 'PAREJA AGUIRRE HUGO', '--', '10420583210', '', '', 'MZ P LTE.7 SECTOR 1 BARRIO 2 URB PACHACAMAC-VILLA EL SALVADOR-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28168', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28169', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28171', NULL, 'SEGURA BUSTIOS CARLOS ALFREDO', '--', '10091424997', '', '', 'AV LOS ALAMOS MZ C LOTE 4 SAN JUAN DE MIRAFLORES - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28172', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28173', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28174', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28180', NULL, 'COESTI S.A.', '--', '20127765279', '', '', 'AV. CIRCUNVALACION DEL CLUB GOLF LOS INCAS NRO. 134 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE A PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28181', NULL, 'COESTI S.A.', '--', '20127765279', '', '', 'AV. CIRCUNVALACION DEL CLUB GOLF LOS INCAS NRO. 134 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE A PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28183', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28184', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28192', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28194', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28195', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28207', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28208', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28209', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28212', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28213', NULL, 'GRAU 700', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28214', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28215', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28216', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28217', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28221', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28228', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28234', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28235', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28236', NULL, 'HERRERA MULATILLO MARIA ESMERALDA', '--', '10028449378', '', '', 'UNIDAD 01 MZ 25 PUESTO # 1  MERCADO CENTRAL DE PIURA - PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28240', NULL, 'vivian mayo flores', '70321386', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28255', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28256', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28257', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28258', NULL, 'VALVERDE LOPEZ MARCIAL NICANOR', '--', '10079749121', '', '', 'JR HUAMACHUCO S/N POMABAMBA - ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28261', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28264', NULL, 'MONZON POPAYAN GIANCARLO CESAR', '--', '10437430140', '', '', 'CALLE COMERCIO MZA . 58 LT. 9 CHALA - CARAVELI - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28265', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28267', NULL, 'SERVICIOS EN INGENIERIA AMBIENTAL Y SEGURIDAD MINERA S.', '--', '20518390059', '', '', 'CAL.LOPEZ DE AYALA NRO. 1189 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28268', NULL, 'TIMANA YAMUNAQUE MANUELA', '--', '10026936212', '', '', 'JR CUSCO 592 - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28273', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28275', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28277', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28285', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28286', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28287', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28288', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28289', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28291', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28292', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28293', NULL, 'INVERSIONES TORMENTA MARINA E.I.R.L. - INV. TORMENTA MA', '--', '20600161424', '', '', 'JR. ANCASH NRO. 2510 P.J. ANCIETA ALTA ET. DOS (FRENTE A TOTTUS DE EL AGUSTINO) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28294', NULL, 'INVERSIONES TORMENTA MARINA E.I.R.L. - INV. TORMENTA MA', '--', '20600161424', '', '', 'JR. ANCASH NRO. 2510 P.J. ANCIETA ALTA ET. DOS (FRENTE A TOTTUS DE EL AGUSTINO) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28295', NULL, 'INVERSIONES TORMENTA MARINA E.I.R.L. - INV. TORMENTA MA', '--', '20600161424', '', '', 'JR. ANCASH NRO. 2510 P.J. ANCIETA ALTA ET. DOS (FRENTE A TOTTUS DE EL AGUSTINO) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28296', NULL, 'INVERSIONES TORMENTA MARINA E.I.R.L. - INV. TORMENTA MA', '--', '20600161424', '', '', 'JR. ANCASH NRO. 2510 P.J. ANCIETA ALTA ET. DOS (FRENTE A TOTTUS DE EL AGUSTINO) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28298', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28300', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28301', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28302', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28303', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28304', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28305', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28306', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28308', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28314', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28315', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28316', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28317', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28318', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28320', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28321', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28322', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28323', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28324', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28325', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28326', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28327', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28330', NULL, 'ASOCIACION DE COMERCIANTES PROPIETARIOS FRONTERAS UNIDA', '--', '20458462454', '', '', 'JR. MONTEVIDEO NRO. 766 (ALT.ESPALDA AV. GRAU CDRA.5) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28332', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28341', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28347', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28348', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28349', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28350', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28351', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28352', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28355', NULL, 'ESCUELA DE CHOFERES JORGE CHAVEZ S.R.L.', '--', '20492646823', '', '', 'AV. DE LA MARINA NRO. 3093 URB. MARANGA ET. SIETE LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28356', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28357', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28367', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28368', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28369', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28370', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28371', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28372', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28373', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28379', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28380', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28381', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28382', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28383', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28384', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28385', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28392', NULL, 'EMERSON TECHNOLOGY & SERVICE E.I.R.L.', '--', '20519135079', '', '', 'R. PUERTO PIZARRO MZA. I1 LOTE. 14 URB. PORTADA DEL SOL 1RA. ET. (3ER PISO, ALT CDRA 13 DE AV LOS FRESNOS) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28394', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28397', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28398', NULL, 'MENDOZA SUCAPUCA VDA DE PARI JULIA CONSTANTINA', '--', '10067163341', '', '', 'JR HONRADEZ 616 SEGUNDO PISO -URB PRO -LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28399', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28400', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28411', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28412', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28413', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28414', NULL, 'MAESTROS DEL CAFE PERU S.A.C. - MADECAP S.A.C.', '--', '20602848036', '', '', 'AV. SAN BORJA SUR NRO. 610 (ESTACIÓN SAN BORJA SUR, FTE AL PARQUE) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28415', NULL, 'MAESTROS DEL CAFE PERU S.A.C. - MADECAP S.A.C.', '--', '20602848036', '', '', 'AV. SAN BORJA SUR NRO. 610 (ESTACIÓN SAN BORJA SUR, FTE AL PARQUE) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28416', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28417', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28420', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28421', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28422', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28427', NULL, 'OSORIO BERAUN CECILIA LUZ', '--', '10727605989', '', '', 'JR HUANCAVELICA S/N CHAUPIMARCA - PASCO -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28428', NULL, 'OSORIO BERAUN CECILIA LUZ', '--', '10727605989', '', '', 'JR HUANCAVELICA S/N CHAUPIMARCA - PASCO -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28430', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28432', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28433', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28436', NULL, 'PH 15', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28438', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28439', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28440', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28442', NULL, 'PARROQUIA DE LOS DESAMPARADOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28448', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28449', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28452', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28453', NULL, 'PEREYRA MENDIZABAL RUTH YOLANDA', '--', '10015433898', '', '', 'AV  CAYETANO HEREDIA 380-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28454', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28455', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28456', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28457', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28458', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28459', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28460', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28461', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28462', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28463', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28464', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28465', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28466', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28467', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28468', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28469', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28470', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28471', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28473', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28475', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28478', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28485', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28486', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28487', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28488', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28489', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28491', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28492', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28493', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28494', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28495', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28496', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28497', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28498', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28499', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28500', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28503', NULL, 'LELS PC S.A.C.', '--', '20521755181', '', '', 'CAL.LOS RISCOS MZA. E LOTE. 12 (2DO PISO - ESPALDA COLEGIO ESTENOS) LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28505', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28506', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28513', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28514', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28515', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28516', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28517', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28518', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28521', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28522', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28523', NULL, 'GARCIA PIZARRO PEDRO', '--', '10085132798', '', '', 'JR SAN JORGE 299 SAN CARLOS COMAS - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28525', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28533', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28537', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28541', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28542', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28543', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28544', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28545', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28546', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28550', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28551', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28552', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28553', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28559', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28562', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28565', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28566', NULL, 'BERTHA REAL', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28567', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28569', NULL, 'CHAMPIONS IMPORT S.A.C.', '--', '20508141069', '', '', 'AV. C MZA. F LOTE. 10 URB. VILLA UNIVERSITARIA (ALT. CDRA 52 AV. UNIVERSITARIA LADO IZQ) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28580', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28582', NULL, 'MAGUIÑA POLO KATYA ELIZABETH', '--', '10072627291', '', '', 'MANUEL CASTAÑEDA 243 - LINCE - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28592', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28593', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28594', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28595', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28605', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28607', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28610', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28611', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28613', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28618', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28619', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28620', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28622', NULL, 'PCL CARGO S.A.C.', '--', '20605707069', '', '', 'CALLE OCHARAN NRO. 410 (PISO 2) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28628', NULL, 'MARKET CIRCOLO SOCIEDAD ANONIMA CERRADA - MARKET CIRCOL', '--', '20492519040', '', '', '-LOS MANZANOS NRO. 259 (ALT CDRA 4 AV NICOLAS AYLLON) LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28629', NULL, 'MARKET CIRCOLO SOCIEDAD ANONIMA CERRADA - MARKET CIRCOL', '--', '20492519040', '', '', '-LOS MANZANOS NRO. 259 (ALT CDRA 4 AV NICOLAS AYLLON) LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28630', NULL, 'RUBIO IDROGO MANUEL ANTONIO', '--', '10079310901', '', '', 'VARELA Y ORBEGOZO 285 -SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28631', NULL, 'RUBIO IDROGO MANUEL ANTONIO', '--', '10079310901', '', '', 'VARELA Y ORBEGOZO 285 -SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28634', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28635', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28636', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28637', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28639', NULL, 'ECHE PAIVA VICTORIANO', '--', '10414632772', '', '', 'MIGUEL EFESERO SECHURA - PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28640', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28641', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28642', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28645', NULL, 'DIAZ VILCA WILMAN RICARDO', '--', '10476510029', '', '', 'JR CUSCO 640 INTERIOR 2021 LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28649', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28650', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28651', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28653', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28658', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28661', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28662', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28665', NULL, 'GUISTAVO ANCALLE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28666', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28668', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28669', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28670', NULL, 'RAMOS RIOS ROSSELLA PAOLA', '--', '10477366215', '', '', 'VILLA ELVA MZ E LT. 21 SURCO - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28671', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28672', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28673', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28674', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28680', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28681', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28684', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28685', NULL, 'RIVERA MENDOZA SINTIA MARIA', '--', '10444929443', '', '', 'JR MONSEFU 420- CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28691', NULL, 'LUCIA LOYOLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28698', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28700', NULL, 'SAN INVERSIONES GENERALES S.A.C.', '--', '20605873937', '', '', 'JR. HUARI NRO. 574 BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28701', NULL, 'INVERSIONES ALFINZA SOCIEDAD ANONIMA CERRADA - INVERSIO', '--', '20537712032', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 403 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28705', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28708', NULL, 'CUBA & SPA SOCIEDAD ANONIMA CERRADA CUBA & SPA S.A.C.', '--', '20523056167', '', '', 'MZA. B LOTE. 27 A.V. VILLA JUANITA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28717', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28718', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28732', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28738', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28741', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28742', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28745', NULL, 'CENTRO SHAMA NINOS DE LA CALLE', '--', '20456378758', '', '', 'JR. JORGE SEDANO NRO. 395 URB. CANTO BELLO (ESQUINA CON CALLE EUCALIPTO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28746', NULL, 'CENTRO SHAMA NINOS DE LA CALLE', '--', '20456378758', '', '', 'JR. JORGE SEDANO NRO. 395 URB. CANTO BELLO (ESQUINA CON CALLE EUCALIPTO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28747', NULL, 'CENTRO SHAMA NINOS DE LA CALLE', '--', '20456378758', '', '', 'JR. JORGE SEDANO NRO. 395 URB. CANTO BELLO (ESQUINA CON CALLE EUCALIPTO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28748', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28752', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28756', NULL, 'MAS GUTIERREZ MALENA ROCIO', '--', '10443456258', '', '', 'JR CHINCHA ALTA 960-AMAZONAS -CHACHAPOYAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28757', NULL, 'MAS GUTIERREZ MALENA ROCIO', '--', '10443456258', '', '', 'JR CHINCHA ALTA 960-AMAZONAS -CHACHAPOYAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28758', NULL, 'MAS GUTIERREZ MALENA ROCIO', '--', '10443456258', '', '', 'JR CHINCHA ALTA 960-AMAZONAS -CHACHAPOYAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28759', NULL, 'MAS GUTIERREZ MALENA ROCIO', '--', '10443456258', '', '', 'JR CHINCHA ALTA 960-AMAZONAS -CHACHAPOYAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28764', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28766', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28768', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28772', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28775', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28777', NULL, 'MELCHOR HUAMANI EDUARDO', '--', '10804639778', '', '', 'AV MICAELA BASTIDAS 233 PICHANAQUI - JUNIN -CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28778', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28780', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28781', NULL, 'CORPORATION WITHMORY S.R.L.', '--', '20525165958', '', '', 'AV. NICOLAS DE ARRIOLA NRO. 2216 URB. SAN LUIS LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28782', NULL, 'CORPORATION WITHMORY S.R.L.', '--', '20525165958', '', '', 'AV. NICOLAS DE ARRIOLA NRO. 2216 URB. SAN LUIS LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28783', NULL, 'CORPORATION WITHMORY S.R.L.', '--', '20525165958', '', '', 'AV. NICOLAS DE ARRIOLA NRO. 2216 URB. SAN LUIS LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28797', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28799', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28802', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28803', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28804', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28805', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28806', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28807', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28808', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28809', NULL, 'CESPEDES RAMIREZ EDITH', '--', '10311768544', '', '', 'AV ANDAHUAYLAS MERCADO MODELO 08-ANDAHUAYLAS-APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28810', NULL, 'CESPEDES RAMIREZ EDITH', '--', '10311768544', '', '', 'AV ANDAHUAYLAS MERCADO MODELO 08-ANDAHUAYLAS-APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28812', NULL, 'PATRICIA TORRES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28816', NULL, 'ILMAN TAFUR DELVIS JHONATAN', '--', '10743636819', '', '', 'AV FRANCISCO BOLOGNESI 1075 SANTA ANITA  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28819', NULL, 'SEGUNDO DEGOLLADO POLO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28823', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28824', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28825', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28826', NULL, 'MARKETING DE RESULTADOS S.A.C.', '--', '20603639643', '', '', 'CAL.ENRIQUE PALACIOS NRO. 612 DPTO. 703 URB. SURQUILLO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28827', NULL, 'MARKETING DE RESULTADOS S.A.C.', '--', '20603639643', '', '', 'CAL.ENRIQUE PALACIOS NRO. 612 DPTO. 703 URB. SURQUILLO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28828', NULL, 'MARKETING DE RESULTADOS S.A.C.', '--', '20603639643', '', '', 'CAL.ENRIQUE PALACIOS NRO. 612 DPTO. 703 URB. SURQUILLO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28829', NULL, 'SUMISEGEN E.I.R.L.', '--', '20549912827', '', '', 'CAL.BELLISIMAS NRO. 144 URB. VIPOL (2DO PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28830', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28832', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28833', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28835', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28836', NULL, 'CORPORACION VARGAS CARBAJAL S.A.C.', '--', '20568612621', '', '', 'AV. MARISCAL RAMON CASTILLA NRO. S/N C.P. PUERTO BERMUDEZ (S72792506 ESQUINA CON AV OXAPAMPA) PASCO - OXAPAMPA - PUERTO BERMUDEZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28837', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28838', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28848', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28849', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28860', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28862', NULL, 'NAUPAY PIÑAN GISELA', '--', '10474454962', '', '', 'AV SAN PABLO 539 - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28866', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28868', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28869', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28871', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28873', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28875', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28876', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28877', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28878', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28879', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28880', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28881', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28883', NULL, 'PALME SERVICIOS GENERALES S.R.L.', '--', '20530738249', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28884', NULL, 'PALME SERVICIOS GENERALES S.R.L.', '--', '20530738249', '', '', 'JR. 28 DE JULIO NRO. S.N (FRENTE DE EMPRESA GVV S.R.L.) ANCASH - BOLOGNESI - HUALLANCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28885', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28887', NULL, 'MENDOZA CAMACHO JHANN POOL', '--', '10480458881', '', '', 'PASAJE UNIDAD FERNANDEZ 310 STA. ANA LA CONVENCION - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28894', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28895', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28896', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28904', NULL, 'MENDOZA CAMACHO JHANN POOL', '--', '10480458881', '', '', 'AV ANDAHUAYLAS 455-ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28905', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28907', NULL, 'CHORRES CORTEZ VICTORIA SOLEDAD', '--', '10327805067', '', '', 'URB. LOS PINOS MZ D LOTE 15 PUENTE PIEDRA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28908', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28909', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28911', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28917', NULL, 'AS INGENIEROS & SERVICIOS TECNICOS S.A.C.', '--', '20554859926', '', '', 'CAL.CORONEL ERNESTO ODRIOZOLA ANTES SANTIAGO TAVARA NRO. 169 URB. PUEBLO LIBRE (CDRA 25 AV.BRASIL) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28922', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28923', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28924', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28925', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28926', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28927', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28930', NULL, 'JARA LOPEZ MAYELA FLORENTINA', '--', '10258188395', '', '', 'MZ D 10 LOTE 16 MI PERU -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28931', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28935', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28937', NULL, 'CONSTRUCCIONES MULTIPLES M & E S.R.L.', '--', '20602986862', '', '', 'AV. DU PETIT THOUARS NRO. 988 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28938', NULL, 'CONSTRUCCIONES MULTIPLES M & E S.R.L.', '--', '20602986862', '', '', 'AV. DU PETIT THOUARS NRO. 988 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28940', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28943', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28945', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28946', NULL, 'GARAY MESTANZA GUILLERMO ROLANDO', '--', '10328177582', '', '', 'JR BRASIL MZ M LOTE 27 ESPERANZA ALTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28947', NULL, 'CONSULTORIA DE INVERSIONES CRISFEL EIRL', '--', '20522485749', '', '', 'CAL.LAS AMAPOLAS NRO. 113 (CARRETERA CENTRAL Y EVITAMIENTO) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28948', NULL, 'CONSULTORIA DE INVERSIONES CRISFEL EIRL', '--', '20522485749', '', '', 'CAL.LAS AMAPOLAS NRO. 113 (CARRETERA CENTRAL Y EVITAMIENTO) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28949', NULL, 'CONSULTORIA DE INVERSIONES CRISFEL EIRL', '--', '20522485749', '', '', 'CAL.LAS AMAPOLAS NRO. 113 (CARRETERA CENTRAL Y EVITAMIENTO) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28950', NULL, 'CONSULTORIA DE INVERSIONES CRISFEL EIRL', '--', '20522485749', '', '', 'CAL.LAS AMAPOLAS NRO. 113 (CARRETERA CENTRAL Y EVITAMIENTO) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28951', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28952', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28953', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28958', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28960', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28961', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28962', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28966', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28967', NULL, 'CONSULTORIA PSICOLOGICA SISTEMA LONDRES S.A.C.', '--', '20538216268', '', '', 'AV. AREQUIPA NRO. 1972 INT. 301 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28974', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28980', NULL, 'MITO PERU PROGRESO S.A.C.', '--', '20602128700', '', '', 'JR. BERNARDO ALCEDO NRO. 134 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28983', NULL, 'CONSTRUCCION Y SERVICIOS FLORES', '--', '20604850127', '', '', 'JR. ALFONSO UGARTE NRO. SN PBLO UCO (LT 5 A UNA CDRA DEL ESTADIO S51795319) ANCASH - HUARI - UCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28993', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28994', NULL, 'TECNOLOGIA APLICADA A LA INDUSTRIA', '--', '20600218558', '', '', 'CAL.S/N MZA. E1 LOTE. 7 STA LUZMILA COMAS (PARADERO POSTA MEDICA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('28999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29000', NULL, 'GARAY RODRIGUEZ JORGE ANTONIO', '--', '10068423789', '', '', 'AV CAHUIDE 836EL CARMEN COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29002', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29003', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29004', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29005', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29006', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29007', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29008', NULL, 'VASQUEZ SILVA HUGO ERNESTO', '--', '10093302911', '', '', 'AV PORTADA DEL SOL 212-ZARATE -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29009', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29010', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29011', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29012', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29021', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29022', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29023', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29026', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29030', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29038', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29039', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29044', NULL, 'MELCHOR HUAMANI GERARDO', '--', '10199886245', '', '', 'CALLE ANDRES AVELINO CACERES S/N PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29050', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29051', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29055', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29056', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29058', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29060', NULL, 'YARA PERU S.R.L.', '--', '20100193117', '', '', 'CAL.MONTERREY NRO. 355 DPTO. 601 URB. CHACARILLA DEL ESTANQUE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29061', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29068', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29069', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29070', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29071', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29072', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29073', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29074', NULL, 'JLC AND GOURMET SERVICES S.A.C.', '--', '20601920043', '', '', 'CAL.2 DE MAYO NRO. 516 INT. 201 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29075', NULL, 'JLC AND GOURMET SERVICES S.A.C.', '--', '20601920043', '', '', 'CAL.2 DE MAYO NRO. 516 INT. 201 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29076', NULL, 'JLC AND GOURMET SERVICES S.A.C.', '--', '20601920043', '', '', 'CAL.2 DE MAYO NRO. 516 INT. 201 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29079', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29082', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29085', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29086', NULL, 'LA PANELA PERU EIRL', '--', '20606286628', '', '', 'AV. JOSE SANTOS CHOCANO NRO. 869 URB. VILLA LOS ANGELES LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29087', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29088', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29089', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29091', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29093', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29094', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29095', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29097', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29098', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29099', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29102', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29103', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29104', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29106', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29107', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29108', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29110', NULL, 'PERU DAVIS INSTRUMENTS E.I.R.L.', '--', '20601428009', '', '', 'CAL.LAS CAMELIAS NRO. 877 INT. 302 (CRUCE CON JUAN DE ARONA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29113', NULL, 'MAMANI SILLO ROSALBINA', '--', '10090309981', '', '', 'JR FRANCISCO DE ZELA 166 - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29114', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29115', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29116', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29120', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29121', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29122', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29123', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29124', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29127', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29128', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29129', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29143', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29147', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29148', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29149', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29150', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29152', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29156', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29157', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29158', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29159', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29160', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29164', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29165', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29166', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29167', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29168', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29169', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29172', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29174', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29175', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29177', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29183', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29184', NULL, 'gloria morales', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29185', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29186', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29187', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29188', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29189', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29190', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29194', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29195', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29196', NULL, 'SP IRRIGA S.A.C.', '--', '20600071506', '', '', 'AV. PETIT THOUARS NRO. 3314 DPTO. 3C LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29197', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29199', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29200', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29207', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29208', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29209', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29211', NULL, 'POLLOS CROCANTES MI BALAY S.A.C.', '--', '20495022146', '', '', 'CAL.LIMA NRO. 500 (ESQUINA CALLE LIMA/LUIS MASSARO) ICA - CHINCHA - CHINCHA ALTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29212', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29214', NULL, 'COMERC. E IND DENT TARRILLO BARBA S.A.C', '--', '20100262291', '', '', 'AV. EMANCIPACION NRO. 267 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29229', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29230', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29240', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29241', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29242', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29245', NULL, 'LOS CHIFEROS S.A.C.', '--', '20606792396', '', '', 'CAL.LAS CAMELIAS NRO. 790 INT. 506 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29254', NULL, 'RETUERTO CRUZ AZUCENA DEL ROSARIO', '--', '10435240025', '', '', 'AV ARGENTINA 327 CENTRO COMERCIAL BELLOTA PASAJE 7 SECUNDARIO TIENDA T1 15', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29259', NULL, 'AQA QUIMICA SOCIEDAD ANONIMA', '--', '20145038384', '', '', 'AV. GENERAL GARZON NRO. 2210 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29260', NULL, 'AQA QUIMICA SOCIEDAD ANONIMA', '--', '20145038384', '', '', 'AV. GENERAL GARZON NRO. 2210 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29261', NULL, 'AQA QUIMICA SOCIEDAD ANONIMA', '--', '20145038384', '', '', 'AV. GENERAL GARZON NRO. 2210 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29268', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29269', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29276', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29278', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29281', NULL, 'DESTINO EXPRESS CARGO S.A.C.', '--', '20520955730', '', '', 'AV. BAUSATE Y MEZA NRO. 700 RADIO PATRULLA (ESQ.OBRERO CON BAUSATE Y MEZA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29282', NULL, 'DESTINO EXPRESS CARGO S.A.C.', '--', '20520955730', '', '', 'AV. BAUSATE Y MEZA NRO. 700 RADIO PATRULLA (ESQ.OBRERO CON BAUSATE Y MEZA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29287', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29288', NULL, 'tomayla zegarra sebastian damian', '77717257', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29289', NULL, 'tomayla zegarra sebastian damian', '77717257', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29290', NULL, 'tomayla zegarra sebastian damian', '77717257', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29295', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29297', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29300', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29301', NULL, 'FUNDACION UNIVERSITARIA IBEROAMERICANA', '--', '20475796781', '', '', 'CAL.CHIMU CAPAC NRO. 163 URB. LOS ROSALES (OVALO HIGUERETA) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29302', NULL, 'FUNDACION UNIVERSITARIA IBEROAMERICANA', '--', '20475796781', '', '', 'CAL.CHIMU CAPAC NRO. 163 URB. LOS ROSALES (OVALO HIGUERETA) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29303', NULL, 'FUNDACION UNIVERSITARIA IBEROAMERICANA', '--', '20475796781', '', '', 'CAL.CHIMU CAPAC NRO. 163 URB. LOS ROSALES (OVALO HIGUERETA) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29304', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29305', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29314', NULL, 'RCP-CONCESIONARIA S.A.C.', '--', '20601456797', '', '', 'AV. CAMINOS DEL INCA NRO. 2028 INT. 202 URB. LAS GARDENIAS ET. UNO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29315', NULL, 'RCP-CONCESIONARIA S.A.C.', '--', '20601456797', '', '', 'AV. CAMINOS DEL INCA NRO. 2028 INT. 202 URB. LAS GARDENIAS ET. UNO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29316', NULL, 'RCP-CONCESIONARIA S.A.C.', '--', '20601456797', '', '', 'AV. CAMINOS DEL INCA NRO. 2028 INT. 202 URB. LAS GARDENIAS ET. UNO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29317', NULL, 'CONSTRUCTORA Y SERVICIOS MULTIPLES TELAVIV EMPRESA INDI', '--', '20529149493', '', '', 'AV. EL MINERO NRO. 1100 P.J. COLUMNA PASCO (COSTADO DE LA CASETA DE VIGILANCIA) PASCO - PASCO - YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29318', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29323', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29324', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29325', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29328', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29331', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29333', NULL, 'LICORERIA MINIMARKET RIVAS S.R.L.', '--', '20514469092', '', '', 'MZA. G1 LOTE. 14 URB. EL CARMEN (ALT. KM 42.5 ANTIGUA PANAM. SUR) LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29334', NULL, 'LICORERIA MINIMARKET RIVAS S.R.L.', '--', '20514469092', '', '', 'MZA. G1 LOTE. 14 URB. EL CARMEN (ALT. KM 42.5 ANTIGUA PANAM. SUR) LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29335', NULL, 'LICORERIA MINIMARKET RIVAS S.R.L.', '--', '20514469092', '', '', 'MZA. G1 LOTE. 14 URB. EL CARMEN (ALT. KM 42.5 ANTIGUA PANAM. SUR) LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29339', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29340', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29341', NULL, 'TERRONES ZAMBRANO EVER', '--', '15506973713', '', '', 'JR LOS CHASQUIS 411 URB ZARATE -  SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29342', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29355', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29356', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29358', NULL, 'DENOS MINAYA ANA YNES', '--', '10102505722', '', '', 'JR ANDAHUAYLAS 1138 INT. 119 - AS - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29368', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29369', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29370', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29371', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29372', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29373', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29374', NULL, 'IXION STUDIO S.A.C.', '--', '20601174872', '', '', 'AV. JOSE CARLOS MARIATEGUI NRO. 2120 URB. HUANCAYO ET. DOS LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29375', NULL, 'IXION STUDIO S.A.C.', '--', '20601174872', '', '', 'AV. JOSE CARLOS MARIATEGUI NRO. 2120 URB. HUANCAYO ET. DOS LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29376', NULL, 'IXION STUDIO S.A.C.', '--', '20601174872', '', '', 'AV. JOSE CARLOS MARIATEGUI NRO. 2120 URB. HUANCAYO ET. DOS LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29377', NULL, 'IXION STUDIO S.A.C.', '--', '20601174872', '', '', 'AV. JOSE CARLOS MARIATEGUI NRO. 2120 URB. HUANCAYO ET. DOS LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29382', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29383', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29391', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29392', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29393', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29394', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29397', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29398', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29403', NULL, 'alangia mario', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29407', NULL, 'DEPILZONE S.A.C.', '--', '20547566239', '', '', 'AV. PRIMAVERA NRO. 517 (INT. SS102) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29408', NULL, 'DEPILZONE S.A.C.', '--', '20547566239', '', '', 'AV. PRIMAVERA NRO. 517 (INT. SS102) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29409', NULL, 'DEPILZONE S.A.C.', '--', '20547566239', '', '', 'AV. PRIMAVERA NRO. 517 (INT. SS102) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29410', NULL, 'DEPILZONE S.A.C.', '--', '20547566239', '', '', 'AV. PRIMAVERA NRO. 517 (INT. SS102) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29411', NULL, 'DEPILZONE S.A.C.', '--', '20547566239', '', '', 'AV. PRIMAVERA NRO. 517 (INT. SS102) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29412', NULL, 'DEPILZONE S.A.C.', '--', '20547566239', '', '', 'AV. PRIMAVERA NRO. 517 (INT. SS102) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29414', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29415', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29416', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29417', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29418', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29419', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29420', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29421', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29422', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29423', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29424', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29426', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29428', NULL, 'CORPORACION MENDOZA S.A.C.', '--', '20345150341', '', '', 'AV. JAVIER PRADO ESTE NRO. 6303 URB. LA RIVIERA DE MONTERRICO LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29429', NULL, 'CORPORACION MENDOZA S.A.C.', '--', '20345150341', '', '', 'AV. JAVIER PRADO ESTE NRO. 6303 URB. LA RIVIERA DE MONTERRICO LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29430', NULL, 'CORPORACION MENDOZA S.A.C.', '--', '20345150341', '', '', 'AV. JAVIER PRADO ESTE NRO. 6303 URB. LA RIVIERA DE MONTERRICO LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29431', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29433', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29436', NULL, 'REGALADO ALTAMIRANO RAUL ALEXANDER', '--', '10732873665', '', '', 'MZ D LOTE 12 URB VIRGEN DE FATIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29437', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29440', NULL, 'PHESCOOL INGENIEROS S.A.C.', '--', '20517138852', '', '', 'CAL.MICAELA BASTIDAS NRO. 138 URB. SAN GABRIEL ALTO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29441', NULL, 'PHESCOOL INGENIEROS S.A.C', '--', '20517138852', '', '', 'CAL.MICAELA BASTIDAS NRO. 138 URB. SAN GABRIEL ALTO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29449', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29454', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29458', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29461', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29464', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29465', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29466', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29467', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29469', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29470', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29471', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29473', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29474', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29475', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29477', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29478', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29479', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29480', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29483', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29484', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29485', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29486', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29487', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29488', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29489', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29491', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29492', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29493', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29494', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29495', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29496', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29497', NULL, 'SANCHEZ CARDENAS WILLIAM MANUEL', '--', '10060032110', '', '', 'JR CRIADO TEJADA 2612 LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29498', NULL, 'JESICA PATRICIA INCA FERNADEZ', '46845156', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29499', NULL, 'JESICA PATRICIA INCA FERNADEZ', '46845156', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29500', NULL, 'ROXANA VILLEGAS RICCI', '25577320', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29501', NULL, 'ROXANA VILLEGAS RICCI', '25577320', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29502', NULL, 'ROXANA VILLEGAS RICCI', '25577320', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29503', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29505', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29506', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29510', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29511', NULL, 'QUISPE VERGARA BRHAYAM JOSSEF', '--', '10450154879', '', '', 'JR CALLAO 220 OFICINA 201 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29512', NULL, 'QUISPE VERGARA BRHAYAM JOSSEF', '--', '10450154879', '', '', 'JR CALLAO 220 OFICINA 201 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29513', NULL, 'QUISPE VERGARA BRHAYAM JOSSEF', '--', '10450154879', '', '', 'JR CALLAO 220 OFICINA 201 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29514', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29515', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29516', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29517', NULL, 'ARENAS CRUZ DE REYES ROSA ELENA', '--', '10223134039', '', '', 'COOPERATIVA ALMIRANTE MIGUEL GRAU MZ H LOTE 32 - PISCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29518', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29519', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29520', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29521', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29522', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29526', NULL, 'VENTA DE SUMINISTROS Y MATERIALES ELÉCTRICOS S.R.L. - V', '--', '20543832317', '', '', 'MZA. D LOTE. 21 APV. VIRGEN DE COCHARCAS 3RA ETAPA (CRS. AV.PARAMONGA CON AV.SOL DE NARANJAL) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29528', NULL, 'RAMOS PALACIOS LEONCIO', '--', '10423813089', '', '', 'JR LIBERTAD NUMERO 100 HUANCAPASTA - PATAS - LA LIBERTAD', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29529', NULL, 'RAMOS PALACIOS LEONCIO', '--', '10423813089', '', '', 'JR LA LIBERTAD NUMERO 100 HUANCASPATA - PATAS - LA LIBERTAD', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29531', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29532', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29533', NULL, 'BLAS PINTADO MIGUEL ANGEL', '--', '10408586947', '', '', 'MAZ M LOTE 1 SAN FRANCISCO DE LA CRUZ - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29538', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29539', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29540', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29541', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29542', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29543', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29544', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29545', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29546', NULL, 'DB ORGANIC SCIENCE S.A.C.', '--', '20603814526', '', '', 'MZA. E LOTE. 10 SEC. 1 GRUPO 18 (AV LOS ALAMOS FTE COLEGIO REP DE BOLIVIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29550', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29551', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29552', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29553', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29554', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29555', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29556', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29557', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29560', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29561', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29562', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29563', NULL, 'LEON GALIANO HERNAN MAXIMO', '--', '10156130287', '', '', 'MERCADO CENTENARIO PABELLON H 37 - 43 - HUACHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29565', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29566', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29567', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29569', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29570', NULL, 'TISURG SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA', '--', '20529005491', '', '', 'JR. ABTAO NRO. 704 HUANUCO - HUANUCO - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29571', NULL, 'TISURG SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA', '--', '20529005491', '', '', 'JR. ABTAO NRO. 704 HUANUCO - HUANUCO - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29572', NULL, 'TISURG SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA', '--', '20529005491', '', '', 'JR. ABTAO NRO. 704 HUANUCO - HUANUCO - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29576', NULL, 'CONSTRUCTORA METALICA ALET EIRL', '--', '20330717956', '', '', 'AV. TOMAS MARSANO NRO. 4636 URB. SAN ROQUE (CRUCE DE AV.T.MARSANO Y JORGE CHAVEZ) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29580', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29583', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29584', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29589', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29593', NULL, 'SUAREZ CHAVEZ LUIS ALBERTO', '--', '10408716450', '', '', 'AV BAUSATE Y MEZA 279 LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29594', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29595', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29601', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29604', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29607', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29613', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29616', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29618', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29619', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29620', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29630', NULL, 'JAWIL COMPUTER NET E.I.R.L.', '--', '20606303298', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1251 INT. 144 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29631', NULL, 'JAWIL COMPUTER NET E.I.R.L.', '--', '20606303298', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1251 INT. 144 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29632', NULL, 'JAWIL COMPUTER NET E.I.R.L.', '--', '20606303298', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1251 INT. 144 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29637', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29638', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29639', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29640', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29643', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29644', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29653', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29654', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29655', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29656', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29661', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29662', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29665', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29666', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29667', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29682', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29683', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29684', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29685', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29686', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29687', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29688', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29689', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29690', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29700', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29701', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29710', NULL, 'ivan vega', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29711', NULL, 'SOLUCIONES TECNICAS DEL NORTE E.I.R.L. - SOLTECNOR E.I.', '--', '20600072057', '', '', 'JR. REJALGAR MZA. H LOTE. 1 URB. LOS PINARES LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29712', NULL, 'SOLUCIONES TECNICAS DEL NORTE E.I.R.L. - SOLTECNOR E.I.', '--', '20600072057', '', '', 'JR. REJALGAR MZA. H LOTE. 1 URB. LOS PINARES LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29713', NULL, 'SOLUCIONES TECNICAS DEL NORTE E.I.R.L. - SOLTECNOR E.I.', '--', '20600072057', '', '', 'JR. REJALGAR MZA. H LOTE. 1 URB. LOS PINARES LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29715', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29716', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29717', NULL, 'BUSTAMANTE PEÑA WILDER', '--', '10474931027', '', '', 'JR MARCAHUASI MZ M LOTE 5 URB. MANGOMARCA  - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29720', NULL, 'TRANSPORTES Y SERVICIOS MULTIPLES ROSITA S.A.C.', '--', '20604980209', '', '', 'MZA. F LOTE. 5 A.H. VILLA ALEJANDRO (FRENTE INST.EDUCAT. RODRIGO LARA BONILLA) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29721', NULL, 'TRANSPORTES Y SERVICIOS MULTIPLES ROSITA S.A.C.', '--', '20604980209', '', '', 'MZA. F LOTE. 5 A.H. VILLA ALEJANDRO (FRENTE INST.EDUCAT. RODRIGO LARA BONILLA) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29724', NULL, 'INVERSIONES JH EXCELENCIA S.A.C.', '--', '20545547296', '', '', 'AV. LAS PALMERAS NRO. 4922 URB. PARQUE EL NARANJAL 1RA ET (ALT. DEL PARQUE ZONAL YOQUE YUPANQUI) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29725', NULL, 'INVERSIONES JH EXCELENCIA S.A.C.', '--', '20545547296', '', '', 'AV. LAS PALMERAS NRO. 4922 URB. PARQUE EL NARANJAL 1RA ET (ALT. DEL PARQUE ZONAL YOQUE YUPANQUI) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29732', NULL, 'TRUJILLO OVIEDO JHON PETER', '--', '10067902187', '', '', 'AV ESPAÑA 782 TORRE 2 INTERIOR 103 BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29733', NULL, 'TRUJILLO OVIEDO JHON PETER', '--', '10067902187', '', '', 'AV ESPAÑA 782 TORRE 2 INTERIOR 103 BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29738', NULL, 'EGSCONTADORES S.A.C.', '--', '20548090343', '', '', 'CAILLOMA NRO. 714 DPTO. 405 (4TO PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29746', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29748', NULL, 'MOREY UGARELLI PROYECTOS E.I.R.L.', '--', '20600690524', '', '', 'JR. ATAHUALPA NRO. 2222 (JR ATAHUALPA 2222-A) LORETO - MAYNAS - IQUITOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29749', NULL, 'MOREY UGARELLI PROYECTOS E.I.R.L.', '--', '20600690524', '', '', 'JR. ATAHUALPA NRO. 2222 (JR ATAHUALPA 2222-A) LORETO - MAYNAS - IQUITOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29750', NULL, 'MOREY UGARELLI PROYECTOS E.I.R.L.', '--', '20600690524', '', '', 'JR. ATAHUALPA NRO. 2222 (JR ATAHUALPA 2222-A) LORETO - MAYNAS - IQUITOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29752', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29757', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29758', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29759', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29764', NULL, 'GUZMAN GONZALES DANIEL LEONARDO', '--', '10432429658', '', '', 'JUAN VELASCO ALVARADO 765 -SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29766', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29770', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29771', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29772', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29774', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29775', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29777', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29778', NULL, 'PRIVATE PROTECTION CG SOCIEDAD ANONIMA CERRADA - PRIVAT', '--', '20603556802', '', '', 'PJ. 5 MZA. K LOTE. 13 INT. A URB. ALBINO HERRERA (1ER PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29780', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29781', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29782', NULL, 'CAMPOS TRUJILLO FREDDY LUIS', '--', '10412351008', '', '', 'ROSARIO DE ASIA AV JOSE OLAYA MZ W LOTE 7 -ASIA- CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29783', NULL, 'ANGELO MIO S.A.C.', '--', '20600237943', '', '', 'CAL.RESTAURACION NRO. 479 LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29784', NULL, 'ANGELO MIO S.A.C.', '--', '20600237943', '', '', 'CAL.RESTAURACION NRO. 479 LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29785', NULL, 'ANGELO MIO S.A.C.', '--', '20600237943', '', '', 'CAL.RESTAURACION NRO. 479 LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29789', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29796', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29797', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29798', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29800', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29802', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29806', NULL, 'JULIA RONDO', '18094203', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29811', NULL, 'CABALLERO ALBERTO ROSARIO', '--', '10448787635', '', '', 'CALLE 14290- LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29816', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29824', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29825', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29826', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29827', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29828', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29831', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29834', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29835', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29836', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29845', NULL, 'CASTILLA ESTRADA MARIA ELENA', '--', '10406907118', '', '', 'COOP. SANTA URSULA MZ J LOTE 27- SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29849', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29857', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29858', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29860', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29864', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29866', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29868', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29869', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29871', NULL, 'INVERSIONES Y REPRESENTACIONES LINMARCOM EIRL', '--', '20477914218', '', '', 'MZA. H LOTE. 4 A.H. HORACIO ZEVALLOS ET. I (ALT. POSTA FLOR DE AMANCAES) LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29872', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29873', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29876', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29877', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29883', NULL, 'APAZA VILCA REBECA VICTORIA', '43843859', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29884', NULL, 'INDUSTRIAL RUBBER CORPORATION S.A.C.-INRUCOR S.A.C.', '--', '20514693219', '', '', 'JR. EL SODIO NRO. 122 URB. INDUSTRIAL INFANTAS (ALT PARADERO 3 POSTES DE PAN NORTE) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29887', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29890', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29891', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29892', NULL, 'J & M INVERSIONES E IMPORTACIONES S.A.C.', '--', '20606345802', '', '', 'CAL.CESAR LOPEZ ROJAS NRO. 341 URB. MARANGA 7MA ETAPA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29893', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29894', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29895', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29896', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29904', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29905', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29908', NULL, 'ANGIE MAGALLANES', '42258968', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29909', NULL, 'LELS PC S.A.C.', '--', '20521755181', '', '', 'CAL.LOS RISCOS MZA. E LOTE. 12 (2DO PISO - ESPALDA COLEGIO ESTENOS) LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29916', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29930', NULL, 'INGENIEROS 3SQ PERU S.A.C.', '--', '20606406631', '', '', 'PJ. MANCORA MZA. J LOTE. 9 URB. 3 DEOCTUBRE Y MIGUEL GRAU PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29931', NULL, 'INGENIEROS 3SQ PERU S.A.C.', '--', '20606406631', '', '', 'PJ. MANCORA MZA. J LOTE. 9 URB. 3 DEOCTUBRE Y MIGUEL GRAU PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29932', NULL, 'INGENIEROS 3SQ PERU S.A.C.', '--', '20606406631', '', '', 'PJ. MANCORA MZA. J LOTE. 9 URB. 3 DEOCTUBRE Y MIGUEL GRAU PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29933', NULL, 'INGENIEROS 3SQ PERU S.A.C.', '--', '20606406631', '', '', 'PJ. MANCORA MZA. J LOTE. 9 URB. 3 DEOCTUBRE Y MIGUEL GRAU PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29937', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29938', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29939', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29940', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29941', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29942', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29943', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29945', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29946', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29947', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29956', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29958', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29960', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29963', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29964', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29965', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29966', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29967', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29969', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29970', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29972', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'URB SAN ANTONIO DE CARAPONGO E2 LOTE 6 LURIGANCHO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29973', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29974', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29982', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29985', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29993', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29995', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29996', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29998', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('29999', NULL, 'ALVA MALAVER JOSE ALAMIRO', '--', '10097953142', '', '', 'AV AGUSTIN GAMARRA 705 CHUCUITO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30000', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30002', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30003', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30004', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30005', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30006', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30007', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30008', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30009', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30010', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30012', NULL, 'MARCO MANRIQUE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30013', NULL, 'MARCO MANRIQUE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30014', NULL, 'MARCO MANRIQUE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30019', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30020', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30021', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30022', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30025', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30031', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30032', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30033', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30034', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30035', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30036', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30037', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30039', NULL, 'PEREZ REGIS HENRRY ALBERTO', '--', '10192424637', '', '', 'MANUEL LORENZO AGUIRRE MZ A LT 15 DEP.702 SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30055', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30060', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30061', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30067', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30069', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30070', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30071', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30072', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30073', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30074', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30075', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30076', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30085', NULL, 'LUIS AGIP BUSTAMANTE', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30091', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30093', NULL, 'MANTENIMIENTO DE PLANTA Y SERVICIOS S.A.C', '--', '20602331921', '', '', 'AV AVIACION 340 OFIC. 2A -SAN BORJA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30094', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30095', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30097', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30098', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30100', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30102', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30104', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30106', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30107', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30108', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30110', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30113', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30114', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30115', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30119', NULL, 'DEGOLLAR LANTERON DE CHAVEZ MARIA DEL PILAR', '--', '10066581891', '', '', 'CALLE CENTENARIO 179 BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30126', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30127', NULL, 'BORJA VALDEZ ALEXANDER GEORGI', '--', '10437417011', '', '', 'AV LIMA SUR 1581 -LURIGANCHO -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30128', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30131', NULL, 'INVERSIONES ERBAL E.I.R.L.', '--', '20606845317', '', '', 'AV. JOSE ARNALDO MARQUEZ NRO. 626 RES. PORTADA DE JESUS MARIA LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30132', NULL, 'INVERSIONES ERBAL E.I.R.L.', '--', '20606845317', '', '', 'AV. JOSE ARNALDO MARQUEZ NRO. 626 RES. PORTADA DE JESUS MARIA LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30133', NULL, 'INVERSIONES ERBAL E.I.R.L.', '--', '20606845317', '', '', 'AV. JOSE ARNALDO MARQUEZ NRO. 626 RES. PORTADA DE JESUS MARIA LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30153', NULL, 'IZAGUIRRE SARCO RAYZA YSABEL', '--', '10732122945', '', '', 'JR ZORRITOS 1399 BLOCK 47 DEPTO 503-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30156', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30157', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30158', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30159', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30160', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30168', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30172', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30173', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30174', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30178', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30179', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30183', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30184', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30190', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30194', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30195', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30197', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30199', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30200', NULL, 'MAYTA HUANUCO MERI YANET', '--', '10407646431', '', '', 'AV FELIPE ARANSIDIA 300-RIMAC -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30201', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30202', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30203', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30204', NULL, 'DELGADO GARCIA MANUEL ANTONIO', '--', '10256297472', '', '', 'EZEQUIEL OSORIO PEÑERANDA - CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30207', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30208', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30209', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30212', NULL, 'FAMCAVEL SERVICIOS GENERALES E.I.R.L.', '--', '20569100349', '', '', 'JR. RAMON CASTILLA NRO. 125 INT. 1PIS CENTRO SIHUAS ANCASH - SIHUAS - SIHUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30214', NULL, 'CASTRO BERROSPI DAVID ANGEL', '--', '10097341937', '', '', 'JR PACIFICO 729 -SAN FELIPE -COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30215', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30216', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30217', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30228', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30247', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30248', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30249', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30250', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30251', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30252', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30253', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30254', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30259', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30260', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30263', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30264', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30268', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30269', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30276', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30278', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30279', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30280', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30281', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30282', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30285', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30286', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30287', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30288', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30289', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30293', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30294', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30298', NULL, 'MALASQUEZ PEREZ NELIDA MARIA LEANDRA', '--', '10154416141', '', '', 'MALECON CERRO AZUL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30299', NULL, 'MALASQUEZ PEREZ NELIDA MARIA LEANDRA', '--', '10154416141', '', '', 'MALECON CERRO AZUL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30300', NULL, 'MALASQUEZ PEREZ NELIDA MARIA LEANDRA', '--', '10154416141', '', '', 'MALECON CERRO AZUL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30304', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30305', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30314', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30315', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30316', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30317', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30318', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30320', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30321', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30322', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30323', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30324', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30328', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30331', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30334', NULL, 'INVERSIONES DI CADORE S.A.C.', '--', '20600473426', '', '', 'CAL.SALVADOR CARMONA NRO. 212 U. IND VULCANO 2DA ETAPA (ENTRE LA CDRA 3 Y 4 DE LA AV. LA MOLINA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30335', NULL, 'INVERSIONES DI CADORE S.A.C.', '--', '20600473426', '', '', 'CAL.SALVADOR CARMONA NRO. 212 U. IND VULCANO 2DA ETAPA (ENTRE LA CDRA 3 Y 4 DE LA AV. LA MOLINA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30341', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30356', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30357', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30367', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30368', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30369', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30370', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30371', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30372', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30373', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30374', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30375', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30376', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30377', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30378', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30379', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30380', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30381', NULL, 'EXTINGUIDORES SHARON S.A.C.', '--', '20460248851', '', '', 'AV. AVIACION NRO. 1122 URB. APOLO (ALT. CRUCE DE MEXICO Y AVIACION) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30382', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30383', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30384', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30385', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30386', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30387', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30388', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30389', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30390', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30391', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30392', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30393', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30394', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30397', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30398', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30399', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30400', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30407', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30408', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30409', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30410', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30414', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30415', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30416', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30417', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30418', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30419', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30420', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30421', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30422', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30423', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30424', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30426', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30428', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30429', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30430', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30431', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30433', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30434', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30435', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30436', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30438', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30439', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30440', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30441', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30442', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30449', NULL, 'SERVICIOS MEDICOS MATERNO INFANTIL SANCHEZ S.A.C.', '--', '20551811442', '', '', 'JR. LOS AMELOS NRO. 1725 URB. SAN HILARION LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30452', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30453', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30455', NULL, 'CERO PRODUCTOS Y SERVICIOS GENERALES EMPRESA INDIVIDUAL', '--', '20604375810', '', '', 'MZA. J LOTE. 10 A.H. SAN JUAN BAUTISTA (ESPALDA PARQUE DE LAS REINAS) ICA - NASCA - MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30456', NULL, 'CERO PRODUCTOS Y SERVICIOS GENERALES EMPRESA INDIVIDUAL', '--', '20604375810', '', '', 'MZA. J LOTE. 10 A.H. SAN JUAN BAUTISTA (ESPALDA PARQUE DE LAS REINAS) ICA - NASCA - MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30457', NULL, 'CERO PRODUCTOS Y SERVICIOS GENERALES EMPRESA INDIVIDUAL', '--', '20604375810', '', '', 'MZA. J LOTE. 10 A.H. SAN JUAN BAUTISTA (ESPALDA PARQUE DE LAS REINAS) ICA - NASCA - MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30458', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30461', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30462', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30463', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30464', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30465', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30466', NULL, 'lily torres', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30467', NULL, 'lily torres', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30472', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30473', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30475', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30478', NULL, 'liliana araujo', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30479', NULL, 'liliana araujo', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30481', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30483', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30484', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30485', NULL, 'NORMA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30486', NULL, 'NORMA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30487', NULL, 'NORMA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30488', NULL, 'NORMA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30489', NULL, 'NORMA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30490', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30491', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30493', NULL, 'CAMPOS CALZADA JUANA VALENTINA', '--', '10040697191', '', '', 'SECTOR 7 GRUPO 1 MZ G 20 VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30494', NULL, 'CAMPOS CALZADA JUANA VALENTINA', '--', '10040697191', '', '', 'SECTOR 7 GRUPO 1 MZ G 20 VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30495', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30496', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30497', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30498', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30499', NULL, 'ANAYA LOZANO CESAR AUGUSTO', '--', '10097767896', '', '', 'AV NICOLAS AYLLON 1039 SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30500', NULL, 'ANAYA LOZANO CESAR AUGUSTO', '--', '10097767896', '', '', 'AV NICOLAS AYLLON 1039 SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30501', NULL, 'ANAYA LOZANO CESAR AUGUSTO', '--', '10097767896', '', '', 'AV NICOLAS AYLLON 1039 SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30505', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30506', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30515', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30516', NULL, 'CIA DE SEGURIDAD PROSEGUR S A', '--', '20100148162', '', '', 'AV. MORRO SOLAR NRO. 1086 URB. STA TERESA DE LA GARDENIA LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30517', NULL, 'CIA DE SEGURIDAD PROSEGUR S A', '--', '20100148162', '', '', 'AV. MORRO SOLAR NRO. 1086 URB. STA TERESA DE LA GARDENIA LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30518', NULL, 'CIA DE SEGURIDAD PROSEGUR S A', '--', '20100148162', '', '', 'AV. MORRO SOLAR NRO. 1086 URB. STA TERESA DE LA GARDENIA LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30519', NULL, 'ÑAHUI CASTILLO CARLOS DAVID', '--', '10420098362', '', '', 'JIRON GARCIA NARANJO 060- LA VICTORIA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30522', NULL, 'DR DROP SOCIEDAD ANONIMA CERRADA', '--', '20606559900', '', '', 'AV. ALFREDO BENAVIDES NRO. 2854 URB. EL RANCHO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30526', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30527', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30528', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30529', NULL, 'julio fernandez', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30530', NULL, 'julio fernandez', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30533', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30538', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30539', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30540', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30541', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30542', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30543', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30550', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30551', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30552', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30553', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30554', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30555', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30556', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30557', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30558', NULL, 'SELECTO PERUANO S.A.C.', '--', '20607308781', '', '', 'JR. TIRAVANTI NRO. 234 DPTO. 314 LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30559', NULL, 'SELECTO PERUANO S.A.C.', '--', '20607308781', '', '', 'JR. TIRAVANTI NRO. 234 DPTO. 314 LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30560', NULL, 'SELECTO PERUANO S.A.C.', '--', '20607308781', '', '', 'JR. TIRAVANTI NRO. 234 DPTO. 314 LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30561', NULL, 'SELECTO PERUANO S.A.C.', '--', '20607308781', '', '', 'JR. TIRAVANTI NRO. 234 DPTO. 314 LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30565', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30566', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30567', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30569', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30570', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30571', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30572', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30573', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30574', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30575', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30576', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30580', NULL, 'DELGADO QUINTANA DE ELLA CARMEN ROSA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30581', NULL, 'CUADROS SOCUALAYA ROSARIO', '--', '10411383305', '', '', 'FRANCISCO PIZARRO 389 - RIMAC - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30585', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30586', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30587', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30593', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30594', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30595', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30596', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30597', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30598', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30599', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30600', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30605', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30607', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30613', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30614', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30615', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30618', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30619', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30620', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30630', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30631', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30634', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30635', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30636', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30637', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30638', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30639', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30640', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30643', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30644', NULL, 'CASTILLO LANDAURO SANTOS FRANCISCO', '--', '10095625113', '', '', 'JR HUANUCO 3059 - SAN MARTIN DE PORRES - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30645', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30652', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30653', NULL, 'GRUPO TECNICAT E.I.R.L.', '--', '20600473078', '', '', 'CAL.ICA MZA. E LOTE. 52 A.H. VICTOR RAUL HAYA DE LA TO (COSTADO ANTENA CANAL 7) PASCO - PASCO - YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30654', NULL, 'GRUPO TECNICAT E.I.R.L.', '--', '20600473078', '', '', 'CAL.ICA MZA. E LOTE. 52 A.H. VICTOR RAUL HAYA DE LA TO (COSTADO ANTENA CANAL 7) PASCO - PASCO - YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30655', NULL, 'GRUPO TECNICAT E.I.R.L.', '--', '20600473078', '', '', 'CAL.ICA MZA. E LOTE. 52 A.H. VICTOR RAUL HAYA DE LA TO (COSTADO ANTENA CANAL 7) PASCO - PASCO - YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30665', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30666', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30676', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30677', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30678', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30679', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30681', NULL, 'EDUARD JULIAN ORIHUELA', '43387443', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30683', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30684', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30685', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30689', NULL, 'SISTEMAS PERUCONTABLE E.I.R.L.', '--', '20606105046', '', '', 'AV. 6 DE AGOSTO NRO. 759 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30698', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30701', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30702', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30705', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30706', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30707', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30708', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30717', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30718', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30719', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30720', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30732', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30735', NULL, 'CORDOVA MONDALGO DELFINA NELIDA', '--', '10211381472', '', '', 'JR AMAZONAS 378- TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30737', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30745', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30746', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30748', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30751', NULL, 'MAQ & RENT INVERSIONES S.A.C.', '--', '20601831164', '', '', 'JR. ORBEGOSO NRO. 868A (COLEGIO MARIANO MELGAR) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30752', NULL, 'MAQ & RENT INVERSIONES S.A.C.', '--', '20601831164', '', '', 'JR. ORBEGOSO NRO. 868A (COLEGIO MARIANO MELGAR) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30753', NULL, 'MAQ & RENT INVERSIONES S.A.C.', '--', '20601831164', '', '', 'JR. ORBEGOSO NRO. 868A (COLEGIO MARIANO MELGAR) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30754', NULL, 'MAQ & RENT INVERSIONES S.A.C.', '--', '20601831164', '', '', 'JR. ORBEGOSO NRO. 868A (COLEGIO MARIANO MELGAR) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30755', NULL, 'MAQ & RENT INVERSIONES S.A.C.', '--', '20601831164', '', '', 'JR. ORBEGOSO NRO. 868A (COLEGIO MARIANO MELGAR) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30756', NULL, 'MAQ & RENT INVERSIONES S.A.C.', '--', '20601831164', '', '', 'JR. ORBEGOSO NRO. 868A (COLEGIO MARIANO MELGAR) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30758', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30764', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30766', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30768', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30775', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30777', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30778', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30780', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30781', NULL, 'INVERSIONES SIFMANGUF EIRL', '--', '20604957517', '', '', 'JR BACAFLOR 146 DPT 303 - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30788', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30794', NULL, 'FORIJ GLASS E.I.R.L.', '--', '20549474617', '', '', '----AUGUSTO WIESE NRO. 719 DPTO. 312 (A MEDIA CUDRA DE LA PLAZA SAN MARTIN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30795', NULL, 'FORIJ GLASS E.I.R.L.', '--', '20549474617', '', '', '----AUGUSTO WIESE NRO. 719 DPTO. 312 (A MEDIA CUDRA DE LA PLAZA SAN MARTIN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30796', NULL, 'FORIJ GLASS E.I.R.L.', '--', '20549474617', '', '', '----AUGUSTO WIESE NRO. 719 DPTO. 312 (A MEDIA CUDRA DE LA PLAZA SAN MARTIN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30797', NULL, 'FORIJ GLASS E.I.R.L.', '--', '20549474617', '', '', '----AUGUSTO WIESE NRO. 719 DPTO. 312 (A MEDIA CUDRA DE LA PLAZA SAN MARTIN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30798', NULL, 'FORIJ GLASS E.I.R.L.', '--', '20549474617', '', '', '----AUGUSTO WIESE NRO. 719 DPTO. 312 (A MEDIA CUDRA DE LA PLAZA SAN MARTIN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30799', NULL, 'FORIJ GLASS E.I.R.L.', '--', '20549474617', '', '', '----AUGUSTO WIESE NRO. 719 DPTO. 312 (A MEDIA CUDRA DE LA PLAZA SAN MARTIN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30806', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30812', NULL, 'VILCHEZ FERNANDINI JAIME CESAR', '--', '10066604107', '', '', 'JR TARAPACA 150 -E BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30813', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30814', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30816', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30817', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30824', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30831', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30834', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30835', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30836', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30846', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30847', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30848', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30849', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30854', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30859', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30860', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30864', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30866', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30868', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30869', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30871', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30873', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30876', NULL, 'ESTEFANY ISABEL URQUIZO RAMOS', '48659232', '', '', '', 'ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30877', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30878', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30879', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30880', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30881', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30883', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30884', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30885', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30887', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30890', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30891', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30892', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30894', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30895', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30896', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30901', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30904', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30905', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30908', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30909', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30910', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30913', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30914', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30916', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30924', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30925', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30926', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30927', NULL, 'ANAYA LOZANO CESAR AUGUSTO', '--', '10097767896', '', '', 'NICOLAS AYLLON 1039-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30928', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30929', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30930', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30931', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30937', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30938', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30939', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30940', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30941', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30942', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30945', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30946', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30947', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30948', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30949', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30950', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30951', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30952', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30953', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30958', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30960', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30961', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30962', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30967', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30973', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30974', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30982', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30988', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30989', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30990', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30991', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30992', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30993', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30994', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30995', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30996', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30998', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('30999', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31000', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31002', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31003', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31004', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31005', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31006', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31007', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31010', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31011', NULL, 'francisca castro', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31012', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31014', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31015', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31016', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31019', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31020', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31021', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31022', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31025', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31031', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31032', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31033', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31038', NULL, 'CONSULTORA CONSTRUCTORA Y SERVICIOS GENERALES S & T S.A', '--', '20603163801', '', '', 'NRO. SN C.P. HUAMBURQUE (FRENTE MUNICIPIO C2P VERDE) APURIMAC - CHINCHEROS - EL PORVENIR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31039', NULL, 'CONSULTORA CONSTRUCTORA Y SERVICIOS GENERALES S & T S.A', '--', '20603163801', '', '', 'NRO. SN C.P. HUAMBURQUE (FRENTE MUNICIPIO C2P VERDE) APURIMAC - CHINCHEROS - EL PORVENIR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31040', NULL, 'CONSULTORA CONSTRUCTORA Y SERVICIOS GENERALES S & T S.A', '--', '20603163801', '', '', 'NRO. SN C.P. HUAMBURQUE (FRENTE MUNICIPIO C2P VERDE) APURIMAC - CHINCHEROS - EL PORVENIR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31042', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31046', NULL, 'VARIOS', '--', '', '', '', 'NRO. SN C.P. HUAMBURQUE (FRENTE MUNICIPIO C2P VERDE) APURIMAC - CHINCHEROS - EL PORVENIR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31047', NULL, 'VARIOS', '--', '', '', '', 'NRO. SN C.P. HUAMBURQUE (FRENTE MUNICIPIO C2P VERDE) APURIMAC - CHINCHEROS - EL PORVENIR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31055', NULL, 'COLOSO EDIFICACIONES & SERVICIOS SOCIEDAD ANONIMA CERRA', '--', '20603321856', '', '', 'MZA. H LOTE. 6 ASOC SANTA BEATRIZ PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31059', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31060', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31061', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31064', NULL, 'TINCA INVERSIONES SAC', '--', '20524782601', '', '', 'JR. CHANCAY NRO. 999 URB. LIMA CERCADO LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31068', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31069', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31070', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31071', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31072', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31073', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31074', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31075', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31082', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31083', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31087', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31090', NULL, 'CORAS CONTRERAS ROCIO', '--', '10282885447', '', '', 'JR LIBERTAD 687 -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31091', NULL, 'CORAS CONTRERAS ROCIO', '--', '10282885447', '', '', 'JR LIBERTAD 687 -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31092', NULL, 'CORAS CONTRERAS ROCIO', '--', '10282885447', '', '', 'JR LIBERTAD 687 -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31093', NULL, 'CORAS CONTRERAS ROCIO', '--', '10282885447', '', '', 'JR LIBERTAD 687 -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31095', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31097', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31098', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31099', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31102', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31103', NULL, 'AGUA GALI S.R.L.', '--', '20494587549', '', '', 'CAL.EMILIO ROMAN NRO. 100 (BARRIO DE SARAVIA) ICA - CHINCHA - GROCIO PRADO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31104', NULL, 'AGUA GALI S.R.L.', '--', '20494587549', '', '', 'CAL.EMILIO ROMAN NRO. 100 (BARRIO DE SARAVIA) ICA - CHINCHA - GROCIO PRADO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31105', NULL, 'AGUA GALI S.R.L.', '--', '20494587549', '', '', 'CAL.EMILIO ROMAN NRO. 100 (BARRIO DE SARAVIA) ICA - CHINCHA - GROCIO PRADO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31106', NULL, 'AGUA GALI S.R.L.', '--', '20494587549', '', '', 'CAL.EMILIO ROMAN NRO. 100 (BARRIO DE SARAVIA) ICA - CHINCHA - GROCIO PRADO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31107', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31108', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31112', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31113', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31114', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31115', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31120', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31121', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31122', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31123', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31124', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31127', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31128', NULL, 'HUARCA ENRIQUEZ GLADYS ROXANA', '--', '10107061334', '', '', 'MZ B LOTE 17 SEGUNDO SECTOR NUEVO PROGRESO V.M.T', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31148', NULL, 'MALPARTIDA DAVIRAN ALINA REYNA', '--', '10708674295', '', '', 'PRADERAS DE PARIACHI- MZ L- LOTE 29 -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31149', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31150', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31156', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31157', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31158', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31159', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31160', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31161', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31164', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31165', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31166', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31167', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31168', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31169', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31172', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31174', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31178', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31179', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31180', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31181', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31182', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31183', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31184', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31192', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31194', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31195', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31203', NULL, 'RIVERA OLAYA FERNANDO', '--', '10413489984', '', '', 'AV UNION MZ  R LT 58 URB. SAN DIEGO - LOS OLIVOS - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31207', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31208', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31209', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31212', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31213', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31214', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31215', NULL, 'C&E LOGISTICA SAC', '--', '20602328636', '', '', 'Mz G7 LOTE 12 - 1 ER SECTOR DE ANGAMOS - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31216', NULL, 'LUCAS  RAMIRES ALTMIRANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31217', NULL, 'LUCAS  RAMIRES ALTMIRANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31218', NULL, 'LUCAS  RAMIRES ALTMIRANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31228', NULL, 'HUARCA ENRIQUEZ GLADYS ROXANA', '--', '10107061334', '', '', 'MZ B LOTE 17 - AH NVO PROGRESO 2DA ET. GR.2 VILLA MARIA DEL TRIUNFO - LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31236', NULL, 'FLORES CCARITA EDUARDO SIMON', '--', '17167371434', '', '', 'AV CAMINO REAL 340  COOPERATIVA 5 DE AGOSTO - SANTA ANITA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31237', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31247', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31248', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31249', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31250', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31251', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31252', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31253', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31255', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31256', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31257', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31258', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31261', NULL, 'rosa ramos leon', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31262', NULL, 'rosa ramos leon', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31263', NULL, 'rosa ramos leon', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31264', NULL, 'rosa ramos leon', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31268', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31269', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31276', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31278', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31279', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31280', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31281', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31282', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31283', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31284', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31285', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31286', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31287', NULL, 'CORPORACION DE SERVICIOS TURISTICOS LIRIO S.A.C.', '--', '20493995295', '', '', 'CAL.ARICA NRO. 111 URB. EL CENTRO LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31288', NULL, 'CORPORACION DE SERVICIOS TURISTICOS LIRIO S.A.C.', '--', '20493995295', '', '', 'CAL.ARICA NRO. 111 URB. EL CENTRO LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31289', NULL, 'CORPORACION DE SERVICIOS TURISTICOS LIRIO S.A.C.', '--', '20493995295', '', '', 'CAL.ARICA NRO. 111 URB. EL CENTRO LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31290', NULL, 'CORPORACION DE SERVICIOS TURISTICOS LIRIO S.A.C.', '--', '20493995295', '', '', 'CAL.ARICA NRO. 111 URB. EL CENTRO LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31291', NULL, 'CORPORACION DE SERVICIOS TURISTICOS LIRIO S.A.C.', '--', '20493995295', '', '', 'CAL.ARICA NRO. 111 URB. EL CENTRO LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31293', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31294', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31298', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31299', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31300', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31301', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31302', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31304', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31305', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31314', NULL, 'PASCUAL LOPEZ COLCHADO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31315', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31316', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31317', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31318', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31319', NULL, 'CHAVEZ PAUCAR BEATRIZ ASUNTA', '--', '10096969347', '', '', 'PARCELA 2  MZ 2 LOTE 14 -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31320', NULL, 'PALACIOS GARCIA LESTER HERNAN', '--', '10071867582', '', '', 'AV SANTUARIO 1457-URB ZARATE S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31321', NULL, 'PALACIOS GARCIA LESTER HERNAN', '--', '10071867582', '', '', 'AV SANTUARIO 1457-URB ZARATE S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31322', NULL, 'LUIS HUARCAYA', '--', '', '', '', 'CHINCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31323', NULL, 'LUIS HUARCAYA', '--', '', '', '', 'CHINCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31324', NULL, 'LUIS HUARCAYA', '--', '', '', '', 'CHINCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31325', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31326', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31327', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31328', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31331', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31334', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31335', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31336', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31337', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31338', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31339', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31340', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31341', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31342', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31346', NULL, 'PIQUERAS BEER S.A.C.', '--', '20607316261', '', '', 'CAL.MANUEL PIQUERAS NRO. 113 OTR. TORRES DE LIMATAMBO LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31347', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31348', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31355', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31356', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31358', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31359', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31360', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31361', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31362', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31363', NULL, 'C & E LOGISTICA S.A.C.', '--', '20602328636', '', '', 'MZA. G7 LOTE. 12 URB. ANGAMOS SECT 1 (CRUZANDO REFINERIA LA PAMPILLA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31366', NULL, 'MAMANI EUGENIO ENRIQUE', '--', '10411949091', '', '', 'AV LA MOLINA 853-LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31367', NULL, 'MAMANI EUGENIO ENRIQUE', '--', '10411949091', '', '', 'AV LA MOLINA 853-LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31368', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31372', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31373', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31383', NULL, 'david taipe', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31384', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31385', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31386', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31387', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31388', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31389', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31390', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31391', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31392', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31393', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31394', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31400', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31403', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31404', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31407', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31408', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31411', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31412', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31413', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31414', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31415', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31416', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31417', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31418', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31419', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31427', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31429', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31430', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31431', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31433', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31436', NULL, 'ANTONIO ALCEDO LUIS', '--', '10421536819', '', '', 'LOS SAUCES MZ G LOTE 9 BELLA HORIZONTE -CHORRILOOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31437', NULL, 'ANTONIO ALCEDO LUIS', '--', '10421536819', '', '', 'LOS SAUCES MZ G LOTE 9 BELLA HORIZONTE -CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31438', NULL, 'ANTONIO ALCEDO LUIS', '--', '10421536819', '', '', 'LOS SAUCES MZ G LOTE 9 BELLA HORIZONTE -CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31444', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31445', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31446', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31447', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31448', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31449', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31452', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31453', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31454', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31455', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31456', NULL, 'INABIF', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31457', NULL, 'INABIF', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31458', NULL, 'INABIF', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31459', NULL, 'INABIF', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31460', NULL, 'INABIF', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31461', NULL, 'INABIF', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31462', NULL, 'INABIF', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31463', NULL, 'INABIF', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31464', NULL, 'INABIF', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31465', NULL, 'INABIF', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31466', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31468', NULL, 'COMPAÑIA TIP TOP SOCIEDAD ANONIMA', '--', '20100306841', '', '', 'JR. PEDRO CONDE NRO. 124 (ALTURA CDA 24 DE AV. ARENALES) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31471', NULL, 'LOZANO BROCA CARMEN DORIS', '--', '10178049513', '', '', 'MERCADO CENTRAL INTERIOR 136 TRUJILLO - LA LIBERTAD', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31473', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31474', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31475', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31476', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31477', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31480', NULL, 'FLORES CARY KARIN JESSICA', '--', '10430571376', '', '', 'CALLE INDEPENDENCIA MZ H LOTE 2 MOQUEGUA  MARISCAL NIETO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31481', NULL, 'FLORES CARY KARIN JESSICA', '--', '10430571376', '', '', 'CALLE INDEPENDENCIA MZ HLOTE 2 MOQUEGUA - MARISCAL NIETO - MOQUEGUA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31483', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31484', NULL, 'WONG ZAANONI CLAUDIA GIULIANA', '--', '10413633864', '', '', 'JR AMADOR GARCIA 3300 SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31486', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31487', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31488', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31489', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31491', NULL, 'IECPNA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31492', NULL, 'IECPNA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31493', NULL, 'IECPNA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31494', NULL, 'IECPNA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31495', NULL, 'IECPNA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31496', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31497', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31499', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31500', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31501', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31502', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31503', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31505', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31506', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31510', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31511', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'URB SAN ANTONIO DE CARAPONGO LOTE 6 MZ ED -CARAPONGO -LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31512', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'URB SAN ANTONIO DE CARAPONGO LOTE 6 MZ ED -CARAPONGO -LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31513', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'URB SAN ANTONIO DE CARAPONGO LOTE 6 MZ ED -CARAPONGO -LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31514', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'URB SAN ANTONIO DE CARAPONGO LOTE 6 MZ ED -CARAPONGO -LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31515', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'URB SAN ANTONIO DE CARAPONGO LOTE 6 MZ ED -CARAPONGO -LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31516', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'URB SAN ANTONIO DE CARAPONGO LOTE 6 MZ ED -CARAPONGO -LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31517', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'URB SAN ANTONIO DE CARAPONGO LOTE 6 MZ ED -CARAPONGO -LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31518', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31519', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31520', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31521', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31522', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31526', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31527', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31528', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31530', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31532', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31533', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31534', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31535', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31536', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31537', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31538', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31539', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31540', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31541', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31542', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31543', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31544', NULL, 'G & V INVERSIONES Y SERVICIOS GENERALES E.I.R.L.', '--', '20557861603', '', '', 'MZA. D LOTE. 13 ASC. SEÑOR DE LOS MILAGROS (CRUCE DE AV ALISOS CON AV HUANDOY) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31545', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31546', NULL, 'PLUMAS CIELO E.I.R.L', '--', '20514674699', '', '', 'AV. JOSE DE SAN MARTIN NRO. 1243 A.H. SAN GABRIEL ALTO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31547', NULL, 'PLUMAS CIELO E.I.R.L', '--', '20514674699', '', '', 'AV. JOSE DE SAN MARTIN NRO. 1243 A.H. SAN GABRIEL ALTO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31550', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31551', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31552', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31553', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31557', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31559', NULL, 'samuel', '25486740', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31565', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31566', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31567', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31569', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31570', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31571', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31572', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31573', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31574', NULL, 'KIAN PERU E.I.R.L.', '--', '20603833644', '', '', 'CAL.MARIANO PASTOR SEVILLA NRO. 217 INT. 302 URB. EL CARMEN LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31575', NULL, 'KIAN PERU E.I.R.L.', '--', '20603833644', '', '', 'CAL.MARIANO PASTOR SEVILLA NRO. 217 INT. 302 URB. EL CARMEN LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31576', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31577', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31578', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31579', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31580', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31581', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31582', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31583', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31584', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31595', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31605', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31607', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31613', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31618', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31619', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31620', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31627', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31630', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31631', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31637', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31638', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31639', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31640', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31641', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31642', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31643', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31644', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31645', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31651', NULL, 'GALLEGOS MARTINEZ CHRISTIAN ALEXIS', '--', '10444302238', '', '', 'AV ANGAMOS ESTE 1551 BLOCK2 PISO 1 TIENDA 290- SURQUILLO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31652', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31653', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31654', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31655', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31656', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31664', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31665', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31666', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31667', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31674', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31675', NULL, 'STRATEGO LOGISTIC S.A.C.', '--', '20601824788', '', '', 'JR. FRANCISCO BOLOGNESI NRO. 435 P.J. CERCADO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31676', NULL, 'STRATEGO LOGISTIC S.A.C.', '--', '20601824788', '', '', 'JR. FRANCISCO BOLOGNESI NRO. 435 P.J. CERCADO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31677', NULL, 'STRATEGO LOGISTIC S.A.C.', '--', '20601824788', '', '', 'JR. FRANCISCO BOLOGNESI NRO. 435 P.J. CERCADO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31678', NULL, 'STRATEGO LOGISTIC S.A.C.', '--', '20601824788', '', '', 'JR. FRANCISCO BOLOGNESI NRO. 435 P.J. CERCADO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31679', NULL, 'ARELLANO SINCHI FLAVIA FAUSTINA', '--', '10210871522', '', '', 'JR AMAZONAS N353- TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31682', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31683', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31684', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31685', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31686', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31689', NULL, 'ECODISEÑO S.A.C', '--', '20547237332', '', '', 'JR. PROLONGACION CUSCO NRO. 740 INT. 33 LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31701', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31705', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31706', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31707', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31708', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31717', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31718', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31719', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31720', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31732', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31739', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31740', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31747', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31748', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31749', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31752', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31753', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31758', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31760', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31764', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31766', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31776', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31777', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31778', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31787', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31796', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31797', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31798', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31800', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31806', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31807', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31808', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31810', NULL, 'INVERSIONES TURISTICAS HILTON SAC', '--', '20493100301', '', '', 'JR. JULIO C. TELLO NRO. 802 (ALT.CDRA. 20AV. ARENALES MANO DERECHA) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31812', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31813', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31814', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31816', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31817', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31824', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31830', NULL, 'BSH EJECUTORES GENERALES S.A.C.', '--', '20606277068', '', '', 'MZA. Q LOTE. 21 URB. ENRIQUE MONTENEGRO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31832', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31833', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31835', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31836', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31846', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31847', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31848', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31849', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31855', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31857', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31858', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31859', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31860', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31861', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31862', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31863', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31864', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31865', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31866', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31867', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31868', NULL, 'INVERSIONES ASOCIADOS SRJ S.A.C.', '--', '20549278940', '', '', 'AV. JAVIER PRADO ESTE NRO. 5335 URB. CAMINO REAL (CRUCE JAVIER PRADO CON FRUTALES) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31869', NULL, 'SACH EIRL', '--', '20515237179', '', '', '---SC 1 MZA. J LOTE. 10 GRU. 12 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31870', NULL, 'SACH EIRL', '--', '20515237179', '', '', '---SC 1 MZA. J LOTE. 10 GRU. 12 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31871', NULL, 'SACH EIRL', '--', '20515237179', '', '', '---SC 1 MZA. J LOTE. 10 GRU. 12 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31873', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31875', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31876', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31877', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31883', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31886', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31887', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31888', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31894', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31895', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31897', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31898', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31901', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31904', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31905', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31906', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31907', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31908', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31909', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31910', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31911', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31912', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31913', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31914', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31915', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31916', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31917', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31918', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31919', NULL, 'CONSORCIO SUPER VERDE E.I.R.L.', '--', '20601505186', '', '', 'MZA. B9 LOTE. 34 URB. RESIDENCIAL SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31920', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31921', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31925', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31926', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31927', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31928', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31937', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31938', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31939', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31940', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31944', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31955', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31956', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31958', NULL, 'AG TRANSPORTE REFRIGERADO Y SERVICIOS GENERALES E.I.R.L', '--', '20555138998', '', '', 'CAL.CORICANCHA NRO. 122 COO. CHANCAS DE ANDAHUAYLAS LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31959', NULL, 'AG TRANSPORTE REFRIGERADO Y SERVICIOS GENERALES E.I.R.L', '--', '20555138998', '', '', 'CAL.CORICANCHA NRO. 122 COO. CHANCAS DE ANDAHUAYLAS LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31960', NULL, 'AG TRANSPORTE REFRIGERADO Y SERVICIOS GENERALES E.I.R.L', '--', '20555138998', '', '', 'CAL.CORICANCHA NRO. 122 COO. CHANCAS DE ANDAHUAYLAS LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31961', NULL, 'AG TRANSPORTE REFRIGERADO Y SERVICIOS GENERALES E.I.R.L', '--', '20555138998', '', '', 'CAL.CORICANCHA NRO. 122 COO. CHANCAS DE ANDAHUAYLAS LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31962', NULL, 'AG TRANSPORTE REFRIGERADO Y SERVICIOS GENERALES E.I.R.L', '--', '20555138998', '', '', 'CAL.CORICANCHA NRO. 122 COO. CHANCAS DE ANDAHUAYLAS LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31967', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31974', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31980', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31982', NULL, 'AMANQUI ARTEAGA DOMITILA RUFINA', '--', '10215084294', '', '', 'PANAMERICANA SUR KM  318  - SANTIAGO - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31992', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31993', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31994', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31995', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31996', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31998', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('31999', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32000', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32001', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32002', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32003', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32004', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32005', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32006', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32007', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32008', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32009', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32010', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32011', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32012', NULL, 'TRANS. EXCLUSIVA PERU S.R.L.', '--', '20601539846', '', '', 'JR. MIGUEL GRAU NRO. 368 PBLO SAN MIGUEL CAJAMARCA - SAN MIGUEL - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32013', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32019', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32021', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32022', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32025', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32030', NULL, 'INVERSIONES ATLANTA FALCONS S.A.C.', '--', '20606332948', '', '', 'MZA. D LOTE. 10 A.H. HOUSTON (CERCA A LA AV. AGRARIA) ANCASH - SANTA - NUEVO CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32033', NULL, 'INVERSIONES ATLANTA FALCONS S.A.C.', '--', '20606332948', '', '', 'MZA. D LOTE. 10 A.H. HOUSTON (CERCA A LA AV. AGRARIA) ANCASH - SANTA - NUEVO CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32034', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32035', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32036', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32037', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32040', NULL, 'NEGOCIACIONES MELCHOR EMPRESA INDIVIDUAL DE RESPONSABIL', '--', '20606697610', '', '', 'AV. MICAELA BASTIDAS NRO. 280 URB. PICHANAKI (A MEDIA CUADRA DEL JR. LIMA) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32041', NULL, 'NEGOCIACIONES MELCHOR EMPRESA INDIVIDUAL DE RESPONSABIL', '--', '20606697610', '', '', 'AV. MICAELA BASTIDAS NRO. 280 URB. PICHANAKI (A MEDIA CUADRA DEL JR. LIMA) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32042', NULL, 'NEGOCIACIONES MELCHOR EMPRESA INDIVIDUAL DE RESPONSABIL', '--', '20606697610', '', '', 'AV. MICAELA BASTIDAS NRO. 280 URB. PICHANAKI (A MEDIA CUADRA DEL JR. LIMA) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32043', NULL, 'NEGOCIACIONES MELCHOR EMPRESA INDIVIDUAL DE RESPONSABIL', '--', '20606697610', '', '', 'AV. MICAELA BASTIDAS NRO. 280 URB. PICHANAKI (A MEDIA CUADRA DEL JR. LIMA) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32044', NULL, 'NEGOCIACIONES MELCHOR EMPRESA INDIVIDUAL DE RESPONSABIL', '--', '20606697610', '', '', 'AV. MICAELA BASTIDAS NRO. 280 URB. PICHANAKI (A MEDIA CUADRA DEL JR. LIMA) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32045', NULL, 'NEGOCIACIONES MELCHOR EMPRESA INDIVIDUAL DE RESPONSABIL', '--', '20606697610', '', '', 'AV. MICAELA BASTIDAS NRO. 280 URB. PICHANAKI (A MEDIA CUADRA DEL JR. LIMA) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32046', NULL, 'MOROCHO NEGRON FRANK SMITH', '--', '10409898420', '', '', 'AV PROGRESO 1213 - CASTILLA - PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32047', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32048', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32050', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32051', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32055', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32061', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32067', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32069', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32070', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32071', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32072', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32073', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32074', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32075', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32076', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32085', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32090', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32091', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32092', NULL, 'INVERSIONES TURISTICAS HILTON SAC', '--', '20493100301', '', '', 'JR. JULIO C. TELLO NRO. 802 (ALT.CDRA. 20AV. ARENALES MANO DERECHA) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32093', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32095', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32096', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32097', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32098', NULL, 'LA ROSA ORBEGOZO GLORIA LOURDES', '--', '10106727606', '', '', 'JR ENRIQUE OLMEDO 537 DPT 402 BLOCK C - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32099', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32102', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32103', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32104', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32106', NULL, 'VELBRO GLOBAL TRADING S.A.C', '--', '20552289146', '', '', 'AV. CAMINO DE AMANCAES NRO. 100 INT. 603 (BLOCK I) LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32107', NULL, 'VELBRO GLOBAL TRADING S.A.C', '--', '20552289146', '', '', 'AV. CAMINO DE AMANCAES NRO. 100 INT. 603 (BLOCK I) LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32108', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32112', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32113', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32114', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32115', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32120', NULL, 'ZAVALETA DURAN ROSA LUZ', '--', '10401749301', '', '', 'FAUSTINO SANCHEZ CARRION 166 DEPARTAMENTO 703 - MAGDALENA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32126', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32127', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32128', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32131', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32132', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32140', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32141', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32142', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32143', NULL, 'LUIS DANIEL PAREJA RAMOS', '44854207', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32146', NULL, 'PETER MICHAEL PONCE MONTENEGRO', '44780790', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32147', NULL, 'PETER MICHAEL PONCE MONTENEGRO', '44780790', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32148', NULL, 'PETER MICHAEL PONCE MONTENEGRO', '44780790', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32149', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32150', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32156', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32157', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32159', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32160', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32161', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32164', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32168', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32172', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32174', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32175', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32177', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32178', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32179', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32180', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32183', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32184', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32185', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32186', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32187', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32188', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32189', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32190', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32194', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32195', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32197', NULL, 'SERVIDONG SOCIEDAD ANONIMA CERRADA - SERVIDONG S.A.C.', '--', '20600736478', '', '', 'AV. SAN LUIS NRO. 1950 URB. SAN BORJA NORTE (2DO PISO) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32199', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32200', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32201', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32202', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32203', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32204', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32205', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32206', NULL, 'INVERSIONES & SOLUCIONES EMPRESARIALES SAETA S.A.C.', '--', '20603522070', '', '', 'CAL.40 NRO. 190 INT. 4 URB. CORPAC LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32207', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32208', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32209', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32210', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32211', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32212', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32214', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32218', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32221', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32222', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32223', NULL, 'kristel gonzales', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32229', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32230', NULL, 'TECSE CCORIHUAMAN LUZMILA', '--', '10436438929', '', '', 'CALLE CHAVIN 303 OFICINA 02-03 COOPERATIVA ANDAHUAYLAS  - SATA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32255', NULL, 'CONSTRUCTORA LUMBRE & ASOCIADOS E.I.R.L.', '--', '20600205448', '', '', 'CAL.. MZA. A-1 LOTE. 06 A.H. SAUL CANTORAL HUA LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32259', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32260', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32261', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32265', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32276', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32280', NULL, 'INVERSIONES MEDINA S.A.C', '--', '20523156382', '', '', 'AV. JAPON CUADRA 12 MZA. D LOTE. 44 URB. LOS OLIVOS - LOS LIRIOS (2DO PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32287', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32288', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32289', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32290', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32291', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32292', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32295', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32297', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32300', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32301', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32302', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32303', NULL, 'ZABARBURU MIRO MAX SILVER', '--', '10429458795', '', '', 'SARITA COLONIA MZ J LOTE 11 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32304', NULL, 'ZABARBURU MIRO MAX SILVER', '--', '10429458795', '', '', 'SARITA COLONIA MZ J LOTE 11 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32305', NULL, 'ZABARBURU MIRO MAX SILVER', '--', '10429458795', '', '', 'SARITA COLONIA MZ J LOTE 11 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32306', NULL, 'ZABARBURU MIRO MAX SILVER', '--', '10429458795', '', '', 'SARITA COLONIA MZ J LOTE 11 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32311', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32312', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32318', NULL, 'AGENCIA DE ADUANA SION S.A.C.', '--', '20519484677', '', '', 'CAL.ENRIQUE GINOCCHIO NRO. 160 URB. MI REFUGIO (FRENTE A PLAZA VEA DE LA COLONIAL) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32319', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32321', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32322', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32331', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32334', NULL, 'ANAYA LOZANO CESAR AUGUSTO', '--', '10097767896', '', '', 'AV NICOLAS AYLLON 1039-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32335', NULL, 'ANAYA LOZANO CESAR AUGUSTO', '--', '10097767896', '', '', 'AV NICOLAS AYLLON 1039-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32336', NULL, 'ANAYA LOZANO CESAR AUGUSTO', '--', '10097767896', '', '', 'AV NICOLAS AYLLON 1039-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32337', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32338', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32340', NULL, 'CORPORACION TURISTICA LAS HAMACAS S.A.C.', '--', '20602307183', '', '', 'JR. HUALLAGA NRO. 636 SAN MARTIN - SAN MARTIN - SAUCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32341', NULL, 'CORPORACION TURISTICA LAS HAMACAS S.A.C.', '--', '20602307183', '', '', 'JR. HUALLAGA NRO. 636 SAN MARTIN - SAN MARTIN - SAUCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32342', NULL, 'CORPORACION TURISTICA LAS HAMACAS S.A.C.', '--', '20602307183', '', '', 'JR. HUALLAGA NRO. 636 SAN MARTIN - SAN MARTIN - SAUCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32343', NULL, 'CORPORACION TURISTICA LAS HAMACAS S.A.C.', '--', '20602307183', '', '', 'JR. HUALLAGA NRO. 636 SAN MARTIN - SAN MARTIN - SAUCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32353', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32355', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32356', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32358', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32359', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32360', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32361', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32362', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32363', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32364', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32365', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32368', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32369', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32370', NULL, 'EMPRESA DE TRANSPORTES MALLMA & SERVICIOS GENERALES S.A', '--', '20601453291', '', '', 'AV. JOSE CARLOS MARIATEGUI MZA. A LOTE. 05 COO. HUANCAYO LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32371', NULL, 'EMPRESA DE TRANSPORTES MALLMA & SERVICIOS GENERALES S.A', '--', '20601453291', '', '', 'AV. JOSE CARLOS MARIATEGUI MZA. A LOTE. 05 COO. HUANCAYO LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32372', NULL, 'EMPRESA DE TRANSPORTES MALLMA & SERVICIOS GENERALES S.A', '--', '20601453291', '', '', 'AV. JOSE CARLOS MARIATEGUI MZA. A LOTE. 05 COO. HUANCAYO LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32373', NULL, 'EMPRESA DE TRANSPORTES MALLMA & SERVICIOS GENERALES S.A', '--', '20601453291', '', '', 'AV. JOSE CARLOS MARIATEGUI MZA. A LOTE. 05 COO. HUANCAYO LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32374', NULL, 'EMPRESA DE TRANSPORTES MALLMA & SERVICIOS GENERALES S.A', '--', '20601453291', '', '', 'AV. JOSE CARLOS MARIATEGUI MZA. A LOTE. 05 COO. HUANCAYO LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32375', NULL, 'EMPRESA DE TRANSPORTES MALLMA & SERVICIOS GENERALES S.A', '--', '20601453291', '', '', 'AV. JOSE CARLOS MARIATEGUI MZA. A LOTE. 05 COO. HUANCAYO LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32379', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32380', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32381', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32382', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32383', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32384', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32385', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32386', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32387', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32388', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32389', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32390', NULL, 'BLANCA VILLAR', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32391', NULL, 'BLANCA VILLAR', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32392', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32393', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32394', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32397', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32398', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32399', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32400', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32407', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32408', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32409', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32410', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32414', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32415', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32416', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32417', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32418', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32419', NULL, 'HUARCA ENRIQUEZ GLADYS ROXANA', '--', '10107061334', '', '', 'MZ B LOTE 17 - AH NVO PROGRESO 2DA ET. GR.2 VILLA MARIA DEL TRIUNFO - LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32426', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32428', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32429', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32430', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32431', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32433', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32434', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32435', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32436', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32438', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32439', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32440', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32441', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32442', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32443', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32444', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32445', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32447', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32448', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32449', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32454', NULL, 'INVERSIONES YOSHI SAC', '--', '20524699291', '', '', 'JR. DE LA UNION NRO. 416 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32455', NULL, 'INVERSIONES YOSHI SAC', '--', '20524699291', '', '', 'JR. DE LA UNION NRO. 416 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32456', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32457', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32458', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32459', NULL, 'RICARDO VEGA HUAPAYA', '--', '10450660201', '', '', 'CALLE 2 MZ B LOTE 38 -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32460', NULL, 'RICARDO VEGA HUAPAYA', '--', '10450660201', '', '', 'CALLE 2 MZ B LOTE 38 -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32461', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32462', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32463', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32464', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32465', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32466', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32467', NULL, 'CARMEN ROSA HOLDING SOCIEDAD ANONIMA CERRADA - CARMEN R', '--', '20607722987', '', '', '---LAS LADERAS MZA. B LOTE. 7 DPTO. 801 URB. EL MIRADOR LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32468', NULL, 'CARMEN ROSA HOLDING SOCIEDAD ANONIMA CERRADA - CARMEN R', '--', '20607722987', '', '', '---LAS LADERAS MZA. B LOTE. 7 DPTO. 801 URB. EL MIRADOR LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32469', NULL, 'CARMEN ROSA HOLDING SOCIEDAD ANONIMA CERRADA - CARMEN R', '--', '20607722987', '', '', '---LAS LADERAS MZA. B LOTE. 7 DPTO. 801 URB. EL MIRADOR LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32470', NULL, 'CARMEN ROSA HOLDING SOCIEDAD ANONIMA CERRADA - CARMEN R', '--', '20607722987', '', '', '---LAS LADERAS MZA. B LOTE. 7 DPTO. 801 URB. EL MIRADOR LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32471', NULL, 'CARMEN ROSA HOLDING SOCIEDAD ANONIMA CERRADA - CARMEN R', '--', '20607722987', '', '', '---LAS LADERAS MZA. B LOTE. 7 DPTO. 801 URB. EL MIRADOR LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32472', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32473', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32475', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32478', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32479', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32480', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32486', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32487', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32488', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32489', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32490', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32491', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32493', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32497', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32499', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32503', NULL, 'PRODUCTOS INDUSTRIALES L&R S.A.C.', '--', '20601160464', '', '', 'MZA. R-5 LOTE. 04 APV. PROFAM PERU LIMA - LIMA - SANTA ROSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32504', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32514', NULL, 'FABRICACIONES ELECTRICAS GENERALES EIRL', '--', '20504991467', '', '', 'AV. BOLIVAR NRO. 2150 DPTO. 101 BLQ. 28 (FRENTE AL COMERCIO) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32515', NULL, 'FABRICACIONES ELECTRICAS GENERALES EIRL', '--', '20504991467', '', '', 'AV. BOLIVAR NRO. 2150 DPTO. 101 BLQ. 28 (FRENTE AL COMERCIO) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32516', NULL, 'FABRICACIONES ELECTRICAS GENERALES EIRL', '--', '20504991467', '', '', 'AV. BOLIVAR NRO. 2150 DPTO. 101 BLQ. 28 (FRENTE AL COMERCIO) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32517', NULL, 'FABRICACIONES ELECTRICAS GENERALES EIRL', '--', '20504991467', '', '', 'AV. BOLIVAR NRO. 2150 DPTO. 101 BLQ. 28 (FRENTE AL COMERCIO) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32518', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32521', NULL, 'ROJAS ROMANI JOSUE HARON', '--', '10453958651', '', '', 'MZ LL LOTE 13 PRO VIVIENDA LOS SAIRES 2DA ETAPA CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32522', NULL, 'CAFE, AROMA Y SABOR A TU SERVICIO S.A.C.', '--', '20603981422', '', '', 'AV. ANGAMOS ESTE NRO. 2520 URB. LA CALERA DE LA MERCED (HOSPITAL NEOPLASTICA) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32525', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32531', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32532', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32533', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32534', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32535', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32536', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32537', NULL, 'ALEXANDER HUILLCA AYMARA', '43436939', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32538', NULL, 'ALEXANDER HUILLCA AYMARA', '43436939', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32541', NULL, 'CREDIRED PERU S.A.C.', '--', '20562867644', '', '', 'JR. BOLOGNESI NRO. 396 INT. 396 URB. CERCADO DE LURIN LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32542', NULL, 'CREDIRED PERU S.A.C.', '--', '20562867644', '', '', 'JR. BOLOGNESI NRO. 396 INT. 396 URB. CERCADO DE LURIN LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32543', NULL, 'CREDIRED PERU S.A.C.', '--', '20562867644', '', '', 'JR. BOLOGNESI NRO. 396 INT. 396 URB. CERCADO DE LURIN LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32552', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32553', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32554', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32555', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32556', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32557', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32559', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32562', NULL, 'GARCIA PIZARRO PEDRO', '--', '10085132798', '', '', 'JR SAN JORGE 299 SAN CARLOS -COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32563', NULL, 'GARCIA PIZARRO PEDRO', '--', '10085132798', '', '', 'JR SAN JORGE 299 SAN CARLOS -COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32564', NULL, 'GARCIA PIZARRO PEDRO', '--', '10085132798', '', '', 'JR SAN JORGE 299 SAN CARLOS -COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32565', NULL, 'GARCIA PIZARRO PEDRO', '--', '10085132798', '', '', 'JR SAN JORGE 299 SAN CARLOS -COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32567', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32572', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32573', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32574', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32575', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32576', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32577', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32580', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32582', NULL, 'CHIRINOS MEDINA ESTEFFANNY LISETTE', '--', '10476420542', '', '', 'jR HUARAZ 2056 PUEBLO LIBRE - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32583', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32584', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32592', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32593', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32594', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32595', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32601', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32602', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32603', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32604', NULL, 'GRUPO RIALSERVI S.A.C.', '--', '20602040713', '', '', 'CAL.RIO PIURA NRO. 683 URB. TUPAC AMARU LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32605', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32607', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32613', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32614', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32616', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32617', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32618', NULL, 'VALVERDE VELASQUEZ ROSA AQUELINA', '--', '10100765662', '', '', 'JUAN CAVERO 135 -SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32619', NULL, 'VALVERDE VELASQUEZ ROSA AQUELINA', '--', '10100765662', '', '', 'JUAN CAVERO 135 -SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32620', NULL, 'VALVERDE VELASQUEZ ROSA AQUELINA', '--', '10100765662', '', '', 'JUAN CAVERO 135 -SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32621', NULL, 'VALVERDE VELASQUEZ ROSA AQUELINA', '--', '10100765662', '', '', 'JUAN CAVERO 135 -SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32630', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32632', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32637', NULL, 'PROMOCIONES INVERSIONES CASALLO E.I.R.L.', '--', '20555979798', '', '', 'JR. EL CHACO NRO. 1655 LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32638', NULL, 'PROMOCIONES INVERSIONES CASALLO E.I.R.L.', '--', '20555979798', '', '', 'JR. EL CHACO NRO. 1655 LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32639', NULL, 'PROMOCIONES INVERSIONES CASALLO E.I.R.L.', '--', '20555979798', '', '', 'JR. EL CHACO NRO. 1655 LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32640', NULL, 'PROMOCIONES INVERSIONES CASALLO E.I.R.L.', '--', '20555979798', '', '', 'JR. EL CHACO NRO. 1655 LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32643', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32644', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32645', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32652', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32653', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32654', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32655', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32656', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32661', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32664', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32665', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32666', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32667', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32669', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32670', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32671', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32672', NULL, 'NEWREST PERU S.A.C.', '--', '20381235051', '', '', 'CAL.CALLE A MZA. B LOTE. 4-A URB. BOCANEGRA (ALT. CDRA.36 E.FAUCETT -ALT. COLDEX) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32673', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32674', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32680', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32681', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32684', NULL, 'ASOCIACION SERVICIO EDUCACIONAL HOGAR Y SALUD DEL NORTE', '--', '', '', '', 'JR. WASHINGTON NRO. 1807 DPTO. 102 URB. CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32685', NULL, 'ASOCIACION SERVICIO EDUCACIONAL HOGAR Y SALUD DEL NORTE', '--', '20518185552', '', '', 'JR WASHINGTON NTO 1807 DPTO 102 URB CERCADO DE LIMA- LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32686', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32687', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32693', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32694', NULL, 'LALY ARCE E.I.R.L.', '--', '20605013610', '', '', 'JR. CENTENARIO NRO. 1012 URB. SAN LUIS GONZAGA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32695', NULL, 'LALY ARCE E.I.R.L.', '--', '20605013610', '', '', 'JR. CENTENARIO NRO. 1012 URB. SAN LUIS GONZAGA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32696', NULL, 'LALY ARCE E.I.R.L.', '--', '20605013610', '', '', 'JR. CENTENARIO NRO. 1012 URB. SAN LUIS GONZAGA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32697', NULL, 'LALY ARCE E.I.R.L.', '--', '20605013610', '', '', 'JR. CENTENARIO NRO. 1012 URB. SAN LUIS GONZAGA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32698', NULL, 'SERVICIOS CONSTRUCTIVOS JRD S.A.C.', '--', '', '', '', 'CAL.SIN NOMBRE B-01 MZA. B LOTE. 01 LOS OLIVOS CERRO MELLIZO LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32699', NULL, 'SERVICIOS CONSTRUCTIVOS JRD S.A.C.', '--', '20536288342', '', '', 'CAL.SIN NOMBRE B-01 MZA. B LOTE. 01 LOS OLIVOS CERRO MELLIZO LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32700', NULL, 'SERVICIOS CONSTRUCTIVOS JRD S.A.C.', '--', '20536288342', '', '', 'CAL.SIN NOMBRE B-01 MZA. B LOTE. 01 LOS OLIVOS CERRO MELLIZO LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32701', NULL, 'SERVICIOS CONSTRUCTIVOS JRD S.A.C.', '--', '20536288342', '', '', 'CAL.SIN NOMBRE B-01 MZA. B LOTE. 01 LOS OLIVOS CERRO MELLIZO LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32702', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32705', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32706', NULL, 'SERVICIOS CONSTRUCTIVOS JRD S.A.C.', '--', '20536288342', '', '', 'CAL.SIN NOMBRE B-01 MZA. B LOTE. 01 LOS OLIVOS CERRO MELLIZO LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32717', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32718', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32719', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32726', NULL, 'DAVILA PERNAFETA IRIS MARIA ROSA', '--', '10461185296', '', '', 'MZ O1-LOTE 25 CIUDAD DEL PESCADOR-BELLAVISTA -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32727', NULL, 'DAVILA PERNAFETA IRIS MARIA ROSA', '--', '10461185296', '', '', 'MZ O1-LOTE 25 CIUDAD DEL PESCADOR-BELLAVISTA -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32731', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32732', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32738', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32746', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32748', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32751', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32752', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32753', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32754', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32755', NULL, 'ASESORIA & CONSULTORIA EMPRESARIAL SAN JOSE E.I.R.L.', '--', '20504842208', '', '', 'JR. BUENAVENTURA AGUIRRE NRO. 1240 (ENTRE CDRA 5 Y 6 DE AV. MIGUEL IGLESIAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32756', NULL, 'ASESORIA & CONSULTORIA EMPRESARIAL SAN JOSE E.I.R.L.', '--', '20504842208', '', '', 'JR. BUENAVENTURA AGUIRRE NRO. 1240 (ENTRE CDRA 5 Y 6 DE AV. MIGUEL IGLESIAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32757', NULL, 'ASESORIA & CONSULTORIA EMPRESARIAL SAN JOSE E.I.R.L.', '--', '20504842208', '', '', 'JR. BUENAVENTURA AGUIRRE NRO. 1240 (ENTRE CDRA 5 Y 6 DE AV. MIGUEL IGLESIAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32758', NULL, 'ASESORIA & CONSULTORIA EMPRESARIAL SAN JOSE E.I.R.L.', '--', '20504842208', '', '', 'JR. BUENAVENTURA AGUIRRE NRO. 1240 (ENTRE CDRA 5 Y 6 DE AV. MIGUEL IGLESIAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32764', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32766', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32770', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32771', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32772', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32774', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32776', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32777', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32778', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32793', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32794', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32795', NULL, 'FIBERNET SOLUTIONS S.R.L.', '--', '20607425851', '', '', 'CAL.7 DE JUNIO NRO. 112 URB. IV CENTENARIO (A DOS CUADRAS DEL ESTADIO MARIANO MELGAR) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32796', NULL, 'FIBERNET SOLUTIONS S.R.L.', '--', '20607425851', '', '', 'CAL.7 DE JUNIO NRO. 112 URB. IV CENTENARIO (A DOS CUADRAS DEL ESTADIO MARIANO MELGAR) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32797', NULL, 'FIBERNET SOLUTIONS S.R.L.', '--', '20607425851', '', '', 'CAL.7 DE JUNIO NRO. 112 URB. IV CENTENARIO (A DOS CUADRAS DEL ESTADIO MARIANO MELGAR) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32799', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32802', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32803', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32804', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32805', NULL, 'INDUSTRIAS ARCO IRIS S.R.L.', '--', '20454623151', '', '', 'CAL.DEAN VALDIVIA NRO. 307 (COSTADO BOTICA FASA) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32806', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32816', NULL, 'DEUDOR VILLENA LUIS ALBERTO', '--', '10040689325', '', '', 'AV 6 DE DICIEMBRE N.60-PASCO -PASCO -YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32817', NULL, 'DEUDOR VILLENA LUIS ALBERTO', '--', '10040689325', '', '', 'AV 6 DE DICIEMBRE N.60-PASCO -PASCO -YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32818', NULL, 'DEUDOR VILLENA LUIS ALBERTO', '--', '10040689325', '', '', 'AV 6 DE DICIEMBRE N.60-PASCO -PASCO -YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32819', NULL, 'DEUDOR VILLENA LUIS ALBERTO', '--', '10040689325', '', '', 'AV 6 DE DICIEMBRE N.60-PASCO -PASCO -YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32820', NULL, 'DEUDOR VILLENA LUIS ALBERTO', '--', '10040689325', '', '', 'AV 6 DE DICIEMBRE N.60-PASCO -PASCO -YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32821', NULL, 'DEUDOR VILLENA LUIS ALBERTO', '--', '10040689325', '', '', 'AV 6 DE DICIEMBRE N.60-PASCO -PASCO -YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32822', NULL, 'DEUDOR VILLENA LUIS ALBERTO', '--', '10040689325', '', '', 'AV 6 DE DICIEMBRE N.60-PASCO -PASCO -YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32824', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32829', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32830', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32831', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32832', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32833', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32834', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32835', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32836', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32837', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32838', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32839', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32840', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32841', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32842', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32843', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32844', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32845', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32846', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32847', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32848', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32849', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32850', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32851', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32852', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32853', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32854', NULL, 'VILA  MIRANDA RAMON', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32860', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32864', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32865', NULL, 'CONSULTORA INTERNACIONAL MS & ASOCIADOS E.I.R.L.', '--', '20555591633', '', '', 'AV. PUMACAHUA NRO. 1000 DPTO. 1001 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32866', NULL, 'CONSULTORA INTERNACIONAL MS & ASOCIADOS E.I.R.L.', '--', '20555591633', '', '', 'AV. PUMACAHUA NRO. 1000 DPTO. 1001 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32870', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32871', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32872', NULL, 'HOT SOLUTIONS CONSULTING GROUP S.A.C.', '--', '20605404546', '', '', 'AV. GRAU NRO. 270 DPTO. 304 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32873', NULL, 'HOT SOLUTIONS CONSULTING GROUP S.A.C.', '--', '20605404546', '', '', 'AV. GRAU NRO. 270 DPTO. 304 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32883', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32886', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32887', NULL, 'VILLANUEVA VEGA', '46730521', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32888', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32893', NULL, 'AGUILAR ROLDAN KENNEDA JEANNETTE', '--', '10407355542', '', '', 'AV REPUBLICA DE CHILE 273 - CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32894', NULL, 'DIMARAL S.A.C.', '--', '20424065201', '', '', 'CAL.NICOLAS ARRIOLA NRO. 168 (ESPALDA CUADRA 3 DE AV, BOLIVAR.) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32895', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32897', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32898', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32901', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32905', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32906', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32907', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32908', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32909', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32910', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32916', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32919', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32920', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32921', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32922', NULL, 'COMPAÑIA PERUANA DE RADIODIFUSION S.A.', '--', '20100049008', '', '', 'JR. MONTERO ROSAS NRO. 1099 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32935', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32936', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32937', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32938', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32939', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32940', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32941', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32942', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32943', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32944', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32945', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32946', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32947', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32948', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32949', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32950', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32951', NULL, 'PINTAME E.I.R.L.', '--', '20516884143', '', '', 'JR. EL ESTAÑO NRO. 5720 URB. INDUSTRIAL INFANTAS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32956', NULL, 'INVERSIONES MEDINA S.A.C', '--', '20523156382', '', '', 'AV. JAPON CUADRA 12 MZA. D LOTE. 44 URB. LOS OLIVOS - LOS LIRIOS (2DO PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32957', NULL, 'INVERSIONES MEDINA S.A.C', '--', '20523156382', '', '', 'AV. JAPON CUADRA 12 MZA. D LOTE. 44 URB. LOS OLIVOS - LOS LIRIOS (2DO PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32958', NULL, 'INVERSIONES MEDINA S.A.C', '--', '20523156382', '', '', 'AV. JAPON CUADRA 12 MZA. D LOTE. 44 URB. LOS OLIVOS - LOS LIRIOS (2DO PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32959', NULL, 'INVERSIONES MEDINA S.A.C', '--', '20523156382', '', '', 'AV. JAPON CUADRA 12 MZA. D LOTE. 44 URB. LOS OLIVOS - LOS LIRIOS (2DO PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32960', NULL, 'INVERSIONES MEDINA S.A.C', '--', '20523156382', '', '', 'AV. JAPON CUADRA 12 MZA. D LOTE. 44 URB. LOS OLIVOS - LOS LIRIOS (2DO PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32961', NULL, 'INVERSIONES MEDINA S.A.C', '--', '20523156382', '', '', 'AV. JAPON CUADRA 12 MZA. D LOTE. 44 URB. LOS OLIVOS - LOS LIRIOS (2DO PISO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32962', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32964', NULL, 'RIOS PEREZ JESSICA', '--', '10218679051', '', '', 'JR DEL CARMEN 358 IMPERIAL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32965', NULL, 'RIOS PEREZ JESSICA', '--', '10218679051', '', '', 'JR DEL CARMEN 358 IMPERIAL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32966', NULL, 'RIOS PEREZ JESSICA', '--', '10218679051', '', '', 'JR DEL CARMEN 358 IMPERIAL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32967', NULL, 'RIOS PEREZ JESSICA', '--', '10218679051', '', '', 'JR DEL CARMEN 358 IMPERIAL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32968', NULL, 'RIOS PEREZ JESSICA', '--', '10218679051', '', '', 'JR DEL CARMEN 358 IMPERIAL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32969', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32970', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32973', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32974', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32978', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32979', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32980', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32983', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32985', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32988', NULL, 'RADIADORES CHALA S.A.C.', '--', '20543585638', '', '', 'AV. NACIONES UNIDAS NRO. 1430 URB. CHACRA RIOS NORTE (CRUCE AV. ARICA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32993', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('32999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33002', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33003', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33004', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33005', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33006', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33007', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33008', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33010', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33011', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33012', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33014', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33015', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33021', NULL, 'PALOMINO FLORES MARIA ISABEL', '--', '10097760638', '', '', 'AV. IGNACIO MERINO 2320 - LINCE - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33022', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33023', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33026', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33027', NULL, 'VILCHEZ FERNANDINI JAIME CESAR', '--', '10066604107', '', '', 'ALM ARTEMIO OCAÑA 112 DPTO 307 SAN BORJA LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33030', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33037', NULL, 'CORPORACION APEK S.A.C.', '--', '20600819411', '', '', 'AV. PROCERES DE LA INDEPENDENCIA NRO. 1104 URB. LOS JARDINES DE SAN JUAN ET. DOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33038', NULL, 'CORPORACION APEK S.A.C.', '--', '20600819411', '', '', 'AV. PROCERES DE LA INDEPENDENCIA NRO. 1104 URB. LOS JARDINES DE SAN JUAN ET. DOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33039', NULL, 'CORPORACION APEK S.A.C.', '--', '20600819411', '', '', 'AV. PROCERES DE LA INDEPENDENCIA NRO. 1104 URB. LOS JARDINES DE SAN JUAN ET. DOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33040', NULL, 'CORPORACION APEK S.A.C.', '--', '20600819411', '', '', 'AV. PROCERES DE LA INDEPENDENCIA NRO. 1104 URB. LOS JARDINES DE SAN JUAN ET. DOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33048', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33049', NULL, 'DIMARAL S.A.C.', '--', '20424065201', '', '', 'CAL.NICOLAS ARRIOLA NRO. 168 (ESPALDA CUADRA 3 DE AV, BOLIVAR.) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33050', NULL, 'MINERALS & CRAFTS ALPAMAYO S.A.C', '--', '20606412135', '', '', 'JR JOSE OLAYA 267 LUCYANA - CARABAYLLO  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33051', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33055', NULL, 'RODRIGUEZ MONDRAGON MIGUEL ANGEL', '--', '10415569365', '', '', 'AV OSCAR R BENAVIDES 351 - CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33056', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33058', NULL, 'AZUR CORP S.A.C.', '--', '20607056022', '', '', 'MZA. L LOTE. 9 A.H. PORTALES DE PURUCHUCO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33061', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33067', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33072', NULL, 'ENFOCANET S.A.C.', '--', '20601363501', '', '', 'CAL.CONSTANTINO BAYLE NRO. 3228 URB. CONDEVILLA SEÑOR Y VALDIVIESO ET. UNO (ALT. DE LA CDRA 32 DE LA AV. JOSE GRANDA) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33076', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33079', NULL, 'INVERSIONES HACHIRO S.A.C.', '--', '20535758540', '', '', 'AV. CONTRALMIRANTE AURELIO GARCIA Y GARCIA NRO. 1451 URB. LOS CIPRESES LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33085', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33086', NULL, 'ROJAS MATOS HELLEN SARA', '--', '10427274387', '', '', 'CALLE 1 MZ P2 LT 26 URB SAN DIEGO SAN MARTIN DE PORRES - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33087', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33088', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33089', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33091', NULL, 'GUTIERREZ PARRA GIOVANNA', '--', '10447656448', '', '', 'AAHH JOSEFINA RAMOS MZ H LT 18  IMPERIAL - CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33093', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33094', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33095', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33097', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33098', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33099', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33102', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33103', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33104', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33105', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33106', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33107', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33108', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33109', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33113', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33114', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33115', NULL, 'A & K INTEGRAL LOGISTICS S.A.C.', '--', '20565259807', '', '', 'AV. SAN JUAN MACIAS NRO. 108 DPTO. 4 P URB. SAN JUAN MACIAS (MZA A1 LOTE 39) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33116', NULL, 'A & K INTEGRAL LOGISTICS S.A.C.', '--', '20565259807', '', '', 'AV. SAN JUAN MACIAS NRO. 108 DPTO. 4 P URB. SAN JUAN MACIAS (MZA A1 LOTE 39) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33117', NULL, 'A & K INTEGRAL LOGISTICS S.A.C.', '--', '20565259807', '', '', 'AV. SAN JUAN MACIAS NRO. 108 DPTO. 4 P URB. SAN JUAN MACIAS (MZA A1 LOTE 39) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33118', NULL, 'A & K INTEGRAL LOGISTICS S.A.C.', '--', '20565259807', '', '', 'AV. SAN JUAN MACIAS NRO. 108 DPTO. 4 P URB. SAN JUAN MACIAS (MZA A1 LOTE 39) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33120', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33121', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33122', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33123', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33124', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33127', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33128', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33129', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33149', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33153', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33154', NULL, 'AARBEL EMPRESA  INDIVIDUAL DE RESPONSABILIDAD LIMITADA', '--', '20494951968', '', '', 'AV MIGUEL GRAU NRO 470 ICA - ICA - PARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33157', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33159', NULL, 'CC HONDURAS 2000', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33161', NULL, 'LIMA HANDMADE S.R.L.', '--', '20603040695', '', '', 'CAL.LAS AMAPOLAS NRO. 134 LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33164', NULL, 'ANGELO FRANCISCO CCOILLO PAQUIARI', '--', '10107020336', '', '', 'AV BOLIVIA 148 SATND 328E LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33165', NULL, 'ANGELO FRANCISCO CCOILLO PAQUIARI', '--', '10107020336', '', '', 'AV BOLIVIA 148 SATND 328E LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33166', NULL, 'ANGELO FRANCISCO CCOILLO PAQUIARI', '--', '10107020336', '', '', 'AV BOLIVIA 148 SATND 328E LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33167', NULL, 'ANGELO FRANCISCO CCOILLO PAQUIARI', '--', '10107020336', '', '', 'AV BOLIVIA 148 SATND 328E LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33168', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'AV MIGUEL IGLESIAS A1 LT 13 BUENOS AIRES SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33169', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33172', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33173', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33174', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33178', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33179', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33180', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33181', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33182', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33183', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33184', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33192', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33194', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33195', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33207', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33208', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33209', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33210', NULL, 'INVERSIONES WONG S.A.C', '--', '20557747142', '', '', 'JR. LOS LICOPODIOS N.125-URB. SAN HILARION -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33211', NULL, 'INVERSIONES WONG S.A.C', '--', '20557747142', '', '', 'JR. LOS LICOPODIOS N.125-URB. SAN HILARION -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33212', NULL, 'INVERSIONES WONG S.A.C', '--', '20557747142', '', '', 'JR. LOS LICOPODIOS N.125-URB. SAN HILARION -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33213', NULL, 'INVERSIONES WONG S.A.C', '--', '20557747142', '', '', 'JR. LOS LICOPODIOS N.125-URB. SAN HILARION -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33214', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33215', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33216', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33217', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33226', NULL, 'IMPORTACIONES MERVIC SOCIEDAD ANONIMA CERRADA - IMPORTA', '--', '20548168041', '', '', 'JR. CUSCO NRO. 626 INT. 2151 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33229', NULL, 'MOLINA MAK S.R.L.', '--', '20553480575', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL 2DA ETAPA (PISO 2) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33240', NULL, 'CORPORACION INTERNACIONAL MEDIC S.A.', '--', '', '', '', 'MZA. J LOTE. 4 A.V. LAS BRISAS DE SANTA ROSA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33241', NULL, 'CORPORACION INTERNACIONAL MEDIC S.A.', '--', '20563201640', '', '', 'MZA. J LOTE. 4 A.V. LAS BRISAS DE SANTA ROSA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33242', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33247', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33248', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33249', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33259', NULL, 'MAPACH\'S S.A.C.', '--', '20603492243', '', '', 'JR. FRANCIA NRO. 320 (ALTURA CUADRA 11 AV. MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33260', NULL, 'MAPACH\'S S.A.C.', '--', '20603492243', '', '', 'JR. FRANCIA NRO. 320 (ALTURA CUADRA 11 AV. MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33261', NULL, 'MAPACH\'S S.A.C.', '--', '20603492243', '', '', 'JR. FRANCIA NRO. 320 (ALTURA CUADRA 11 AV. MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33262', NULL, 'MAPACH\'S S.A.C.', '--', '20603492243', '', '', 'JR. FRANCIA NRO. 320 (ALTURA CUADRA 11 AV. MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33263', NULL, 'MAPACH\'S S.A.C.', '--', '20603492243', '', '', 'JR. FRANCIA NRO. 320 (ALTURA CUADRA 11 AV. MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33264', NULL, 'MAPACH\'S S.A.C.', '--', '20603492243', '', '', 'JR. FRANCIA NRO. 320 (ALTURA CUADRA 11 AV. MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33265', NULL, 'MAPACH\'S S.A.C.', '--', '20603492324', '', '', 'JR. FRANCIA NRO. 320 (ALTURA CUADRA 11 AV. MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33277', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33283', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33284', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33285', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33286', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33287', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33288', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33289', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33290', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33291', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33292', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33293', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33300', NULL, 'ASESORES & MULTINEGOCIOS CESAR EDUARDO E.I.R.L.', '--', '20602355307', '', '', 'MZA. G LOTE. 16 URB. AEROPUERTO 2DO SECTOR PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33301', NULL, 'ASESORES & MULTINEGOCIOS CESAR EDUARDO E.I.R.L.', '--', '20602355307', '', '', 'MZA. G LOTE. 16 URB. AEROPUERTO 2DO SECTOR PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33302', NULL, 'ASESORES & MULTINEGOCIOS CESAR EDUARDO E.I.R.L.', '--', '20602355307', '', '', 'MZA. G LOTE. 16 URB. AEROPUERTO 2DO SECTOR PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33303', NULL, 'ASESORES & MULTINEGOCIOS CESAR EDUARDO E.I.R.L.', '--', '20602355307', '', '', 'MZA. G LOTE. 16 URB. AEROPUERTO 2DO SECTOR PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33304', NULL, 'ASESORES & MULTINEGOCIOS CESAR EDUARDO E.I.R.L.', '--', '20602355307', '', '', 'MZA. G LOTE. 16 URB. AEROPUERTO 2DO SECTOR PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33305', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33308', NULL, 'ROMERO LEON RENE ANGELICA', '--', '10085445371', '', '', 'CALLE AURELIO MIROQUESADA 580-URB INGENIERIA -SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33309', NULL, 'ROMERO LEON RENE ANGELICA', '--', '10085445371', '', '', 'CALLE AURELIO MIROQUESADA 580-URB INGENIERIA -SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33317', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33318', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33319', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33321', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33331', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33334', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33335', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33336', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33337', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33338', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33339', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33340', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33341', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33342', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33343', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33344', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33345', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33346', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33347', NULL, 'CIA INVERSIONES HABANA INN S.A.C.', '--', '20605169041', '', '', 'CAL.S/N MZA. J LOTE. 32 AGRU PACHACAMAC 3RA ET. SECT.3 (ALT. OLAYA CON CENTRAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33356', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33358', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33359', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33360', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33361', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33362', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33363', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33364', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33365', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33368', NULL, 'IMPORTACIONES MERVIC SOCIEDAD ANONIMA CERRADA - IMPORTA', '--', '20548168041', '', '', 'JR. CUSCO NRO. 626 INT. 2151 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33369', NULL, 'IMPORTACIONES MERVIC SOCIEDAD ANONIMA CERRADA - IMPORTA', '--', '20548168041', '', '', 'JR. CUSCO NRO. 626 INT. 2151 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33370', NULL, 'IMPORTACIONES MERVIC SOCIEDAD ANONIMA CERRADA - IMPORTA', '--', '20548168041', '', '', 'JR. CUSCO NRO. 626 INT. 2151 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33371', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33372', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33373', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33379', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33380', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33381', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33382', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33383', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33385', NULL, 'GLAMOUR & BELLEZA PERU E.I.R.L.', '--', '20601125537', '', '', 'AV. SURCO NRO. 270 DPTO. 502 URB. LOS ROSALES 2DA ETAPA LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33387', NULL, 'RMP INGENIERIA Y CONSTRUCCION E.I.R.L', '--', '20602761470', '', '', 'AV. PACHACUTEC MZA. 25 LOTE. 19A1 P.J. MICAELA BASTIDAS LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33388', NULL, 'ROMAN LIMA ANAMELVA', '--', '10476750569', '', '', 'PLATAFORMA MANUEL PARDO SECCION LOCERIA PUESTO 15 - CHICLAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33392', NULL, 'KIAR MEDICAL S.A.C', '--', '20512617809', '', '', 'AV. EMANCIPACION NRO. 663 (FRENTE MERCADO AURORA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33394', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33401', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33411', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33412', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33413', NULL, 'KELY LIZANO', '46007854', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33414', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33415', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33416', NULL, 'VELASQUE PALOMINO VIRGINIA', '--', '10310401507', '', '', 'JR AREQUIPA 516-ABANCAY- APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33417', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33426', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33427', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33430', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33432', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33433', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33436', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33438', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33439', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33442', NULL, 'LIANG INVERSIONES SOCIEDAD ANONIMA CERRADA - LIANG INVE', '--', '20553277699', '', '', 'AV. LOS JARDINES ESTE NRO. 173 URB. LAS FLORES SETENTIOCHO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33444', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33445', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33446', NULL, 'GONZALES PALMA GEOVANI', '--', '10422776643', '', '', 'AV RAYMONDI 900 - TINGO MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33447', NULL, 'ZAVALETA CASTRO CHRISTIAN RONNIE', '--', '10473617493', '', '', 'BUENOS AIRES MZA1LOTE 13 CALLE MIGUEL IGLESIAS SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33458', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33460', NULL, 'AGROINDUSTRIAS E & MCM S.A.C.', '--', '20550995027', '', '', 'JR. SAN FEDERICO NRO. 680 URB. AZCARRUNZ BAJO (ALT. DE CDRA 5 DE LA AV. CHIMU) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33461', NULL, 'AGROINDUSTRIAS E & MCM S.A.C.', '--', '20550995027', '', '', 'JR. SAN FEDERICO NRO. 680 URB. AZCARRUNZ BAJO (ALT. DE CDRA 5 DE LA AV. CHIMU) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33463', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33464', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33465', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33466', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33467', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33468', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33469', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33470', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33471', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33472', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33473', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33474', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33475', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33476', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33477', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33481', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33483', NULL, 'MAMORU', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33484', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33485', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33486', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33487', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33488', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33489', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33491', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33492', NULL, 'DISTRIBUIDORA SHADDAI IMPORT E.I.R.L.', '--', '20607089303', '', '', 'JR. SAN ORLANDO 974 MZA. B12 LOTE. 41 PALAO 1ERA ETAPA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33493', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33494', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33495', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33496', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33497', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33498', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33499', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33500', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33501', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33502', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33503', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33504', NULL, 'MADRID REFULIO MIGUEL ANGEL', '--', '10107520606', '', '', 'MZ C 2 LOTE 12 URB. PACHAMAC - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33506', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33510', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33513', NULL, 'ÑAHUI CASTILLO CARLOS DAVID', '--', '10420098362', '', '', 'JR GARCIA NARANJO 060 - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33515', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33516', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33517', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33518', NULL, 'PICHIHUA QUISPE EFRAIN', '--', '10311849471', '', '', 'AV.ANDAHUALAS 455- ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33519', NULL, 'PICHIHUA QUISPE EFRAIN', '--', '10311849471', '', '', 'AV.ANDAHUALAS 455- ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33520', NULL, 'PICHIHUA QUISPE EFRAIN', '--', '10311849471', '', '', 'AV.ANDAHUALAS 455- ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33521', NULL, 'PICHIHUA QUISPE EFRAIN', '--', '10311849471', '', '', 'AV.ANDAHUALAS 455- ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33522', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33526', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33527', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33528', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33530', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33533', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33541', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33542', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33543', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33544', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33545', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33546', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33547', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33548', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33549', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33550', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33551', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33552', NULL, 'TORRES SIVINCHA ANTONIA', '--', '10105619290', '', '', 'MZ D LOTE 7 NUEVA ALIANZA HUASCAR -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33553', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33554', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33555', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33557', NULL, 'NISAC SAFETY E.I.R.L.', '--', '20605873279', '', '', 'MZA. D LOTE. 10 SEC. 2 GRUPO 6 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33558', NULL, 'NISAC SAFETY E.I.R.L.', '--', '20605873279', '', '', 'MZA. D LOTE. 10 SEC. 2 GRUPO 6 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33559', NULL, 'NISAC SAFETY E.I.R.L.', '--', '20605873279', '', '', 'MZA. D LOTE. 10 SEC. 2 GRUPO 6 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33563', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33565', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33567', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33569', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33570', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33571', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33572', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33574', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33575', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33576', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33577', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33578', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33579', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33580', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33581', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33582', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33583', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33584', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33585', NULL, 'N & AN BRASAS PERUANAS E.I.R.L.', '--', '20565692276', '', '', 'AV. ARIOSTO MATELLINI NRO. 661 URB. NUEVO CHORRILLOS (AV EL SOL CON MATELLINI) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33586', NULL, 'N & AN BRASAS PERUANAS E.I.R.L.', '--', '20565692276', '', '', 'AV. ARIOSTO MATELLINI NRO. 661 URB. NUEVO CHORRILLOS (AV EL SOL CON MATELLINI) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33587', NULL, 'N & AN BRASAS PERUANAS E.I.R.L.', '--', '20565692276', '', '', 'AV. ARIOSTO MATELLINI NRO. 661 URB. NUEVO CHORRILLOS (AV EL SOL CON MATELLINI) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33588', NULL, 'N & AN BRASAS PERUANAS E.I.R.L.', '--', '20565692276', '', '', 'AV. ARIOSTO MATELLINI NRO. 661 URB. NUEVO CHORRILLOS (AV EL SOL CON MATELLINI) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33589', NULL, 'N & AN BRASAS PERUANAS E.I.R.L.', '--', '20565692276', '', '', 'AV. ARIOSTO MATELLINI NRO. 661 URB. NUEVO CHORRILLOS (AV EL SOL CON MATELLINI) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33590', NULL, 'N & AN BRASAS PERUANAS E.I.R.L.', '--', '20565692276', '', '', 'AV. ARIOSTO MATELLINI NRO. 661 URB. NUEVO CHORRILLOS (AV EL SOL CON MATELLINI) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33592', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33593', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33594', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33595', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33606', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33607', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33609', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33613', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33614', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33615', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33618', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33619', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33630', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33631', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33634', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33635', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33636', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33637', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33638', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33639', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33640', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33644', NULL, 'SOFIA VENTURA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33645', NULL, 'SOFIA VENTURA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33653', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33654', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33658', NULL, 'MONTOYA ESTRADA MANUEL', '--', '10085740186', '', '', 'AV RIO MARAÑON 613 VILLA DEL NORTE - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33662', NULL, 'MUÑOZ ROBERTO SANTOS', '--', '10723668595', '', '', 'PROLONGACION BOLIVAR 127-HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33663', NULL, 'MUÑOZ ROBERTO SANTOS', '--', '10723668595', '', '', 'PROLONGACION BOLIVAR 127-HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33664', NULL, 'MUÑOZ ROBERTO SANTOS', '--', '10723668595', '', '', 'PROLONGACION BOLIVAR 127-HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33665', NULL, 'MUÑOZ ROBERTO SANTOS', '--', '10723668595', '', '', 'PROLONGACION BOLIVAR 127-HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33666', NULL, 'MUÑOZ ROBERTO SANTOS', '--', '10723668595', '', '', 'PROLONGACION BOLIVAR 127-HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33667', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33674', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33680', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33681', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33684', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33685', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33687', NULL, 'INSUMOS GRAFICOS SABINA & HIJO EMPRESA INDIVIDUAL DE RE', '--', '20607103527', '', '', 'AV. JOSE GALVEZ NRO. 107 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33689', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33690', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33698', NULL, 'SULCA CONDORI BEATRIZ', '--', '10236826282', '', '', 'AAHH MARIA HERRERA DE ACOSTA MZ E LT 25 - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33699', NULL, 'HERMANOS SABOGAL GARCIA S.A.C.', '--', '20606928069', '', '', 'MZA. Q LOTE. 23 A.H. VILLA LIMATAMBO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33700', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33701', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33704', NULL, 'MK TRADING S.A.C.', '--', '20601788480', '', '', 'CAL.BERLIN NRO. 337 (CALLE BERLIN NRO 337-339) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33706', NULL, 'AMPUERO VILLACORTA DEBORA LILIANA', '--', '10700194936', '', '', 'BAUSATE Y MEZA 574 - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33709', NULL, 'INVERSIONES MALAMI D&Z S.A.C.', '--', '20603505931', '', '', 'CAL.FERMIN DEL CASTILLO NRO. 480 (AL FRENTE DE COLEGIO ESPIRITU SANTO) ICA - NASCA - NASCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33710', NULL, 'INVERSIONES MALAMI D&Z S.A.C.', '--', '20603505931', '', '', 'CAL.FERMIN DEL CASTILLO NRO. 480 (AL FRENTE DE COLEGIO ESPIRITU SANTO) ICA - NASCA - NASCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33715', NULL, 'HERODITA LEON ALVARES', '17830441', '', '', '', 'ODOFREDO GARCIA 490 URBANIZACION CHIMU', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33716', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33717', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33721', NULL, 'MAMORU S.A.C.', '--', '20478002930', '', '', 'AV. LOS PROCERES NRO. 1084 (HIPERMERCADOS TOTTUS - LOS VIÑEDOS) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33732', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33734', NULL, 'SERVICIOS ELECTRONICOS Y MULTINVERSIONES ANTONIO E.I.R.', '--', '20536587501', '', '', 'JR. PARURO NRO. 1322 INT. 208 LIMA CERCADO (GALERIA SANTA ROSA FRENTE GIRON LETICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33735', NULL, 'SERVICIOS ELECTRONICOS Y MULTINVERSIONES ANTONIO E.I.R.', '--', '20536587501', '', '', 'JR. PARURO NRO. 1322 INT. 208 LIMA CERCADO (GALERIA SANTA ROSA FRENTE GIRON LETICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33736', NULL, 'SERVICIOS ELECTRONICOS Y MULTINVERSIONES ANTONIO E.I.R.', '--', '20536587501', '', '', 'JR. PARURO NRO. 1322 INT. 208 LIMA CERCADO (GALERIA SANTA ROSA FRENTE GIRON LETICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33737', NULL, 'SERVICIOS ELECTRONICOS Y MULTINVERSIONES ANTONIO E.I.R.', '--', '20536587501', '', '', 'JR. PARURO NRO. 1322 INT. 208 LIMA CERCADO (GALERIA SANTA ROSA FRENTE GIRON LETICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33738', NULL, 'SERVICIOS ELECTRONICOS Y MULTINVERSIONES ANTONIO E.I.R.', '--', '20536587501', '', '', 'JR. PARURO NRO. 1322 INT. 208 LIMA CERCADO (GALERIA SANTA ROSA FRENTE GIRON LETICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33747', NULL, 'JJ CORPORACION INDUSTRIAL E.I.R.L.', '--', '20455350884', '', '', 'MZA. F LOTE. 20 URB. ALTO DE LA LUNA IV ETPA (POR LA PIZZERIA PRESTO) AREQUIPA - AREQUIPA - JOSE LUIS BUSTAMANTE Y RIVERO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33748', NULL, 'PRMT INMOB CONST Y SERV GRLES S DIEGO SA', '--', '20335914113', '', '', 'AV. ANTUNEZ DE MAYOLO NRO. 1620 (MCDO COVIDA_CC LOS OLIVOS_2 PISO TDA 4) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33749', NULL, 'PRMT INMOB CONST Y SERV GRLES S DIEGO SA', '--', '20335914113', '', '', 'AV. ANTUNEZ DE MAYOLO NRO. 1620 (MCDO COVIDA_CC LOS OLIVOS_2 PISO TDA 4) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33752', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33758', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33761', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33762', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33764', NULL, 'DEKANO S.A.C', '--', '20607693146', '', '', 'JR MARAÑON 458 DPTO 1 LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33765', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33766', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33768', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33770', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33771', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33772', NULL, 'joaquin pantoja espinoza', '15637092', '', '', '', 'juan de la cruz romero428 -huaraz', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33773', NULL, 'joaquin pantoja espinoza', '15637092', '', '', '', 'juan de la cruz romero428 -huaraz', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33774', NULL, 'joaquin pantoja espinoza', '15637092', '', '', '', 'juan de la cruz romero428 -huaraz', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33777', NULL, 'PRODUCTOS ORGANICOS SIERRA VERDE S.A.C', '--', '20603309775', '', '', 'JR LAS HERAS 462  LINCE -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33778', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33780', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33781', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33782', NULL, 'ETERNO AMIGO E.I.R.L.', '--', '20603245661', '', '', 'AV. EL SOL CALLE 3 MZA. A2 LOTE. 3 (LAS VERTIENTES DE VILLA EL SALVADOR) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33783', NULL, 'PUH & RODRIGUEZ S.A.C.', '--', '20603022638', '', '', 'AV. SALAVERRY NRO. 3560 INT. 602 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33784', NULL, 'PUH & RODRIGUEZ S.A.C.', '--', '20603022638', '', '', 'AV. SALAVERRY NRO. 3560 INT. 602 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33785', NULL, 'PUH & RODRIGUEZ S.A.C.', '--', '20603022638', '', '', 'AV. SALAVERRY NRO. 3560 INT. 602 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33786', NULL, 'PUH & RODRIGUEZ S.A.C.', '--', '20603022638', '', '', 'AV. SALAVERRY NRO. 3560 INT. 602 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33787', NULL, 'PUH & RODRIGUEZ S.A.C.', '--', '20603022638', '', '', 'AV. SALAVERRY NRO. 3560 INT. 602 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33788', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33789', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33790', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33791', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33792', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33793', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33794', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33795', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33796', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33797', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33798', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33799', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33800', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33801', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33802', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33803', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33804', NULL, 'INSTITUTO DE LAS RELIGIOSAS ADORATRICES ESCLAVAS DEL SA', '--', '20456909206', '', '', 'PQ. HERNAN VELARDE NRO. 18 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33806', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33807', NULL, 'YGOR ESCALANTE', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33810', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33811', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33812', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33813', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33814', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33816', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33817', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33824', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33825', NULL, 'CITROSWEET MILLS S.A.C.', '--', '20604295131', '', '', 'CAL.MONTE ROSA NRO. 171 INT. 2A5 URB. CHACARILLA DEL ESTANQUE (A 1/2 CUADRA DE WONG DE CHACARILLA) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33826', NULL, 'CITROSWEET MILLS S.A.C.', '--', '20604295131', '', '', 'CAL.MONTE ROSA NRO. 171 INT. 2A5 URB. CHACARILLA DEL ESTANQUE (A 1/2 CUADRA DE WONG DE CHACARILLA) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33827', NULL, 'CITROSWEET MILLS S.A.C.', '--', '20604295131', '', '', 'CAL.MONTE ROSA NRO. 171 INT. 2A5 URB. CHACARILLA DEL ESTANQUE (A 1/2 CUADRA DE WONG DE CHACARILLA) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33831', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33835', NULL, 'CELESTINO ROSALES JULIO VICTOR', '--', '10081536452', '', '', 'JR CUZCO 686-INT.1061-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33836', NULL, 'CELESTINO ROSALES JULIO VICTOR', '--', '10081536452', '', '', 'JR CUZCO 686-INT.1061-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33837', NULL, 'CELESTINO ROSALES JULIO VICTOR', '--', '10081536452', '', '', 'JR CUZCO 686-INT. 1061-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33838', NULL, 'CELESTINO ROSALES JULIO VICTOR', '--', '10081536452', '', '', 'JR CUZCO 686-INT. 1061-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33839', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33840', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33841', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33842', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33843', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33844', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33845', NULL, 'ISAC DE LA CRUZ VILLALVA', '21298736', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33855', NULL, 'FRONTERA UNIDAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33859', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33860', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33864', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33866', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33868', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33869', NULL, 'FRONTERAS UNIDAS DE GRAU', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33870', NULL, 'FRONTERAS UNIDAS DE GRAU', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33871', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33873', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33883', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33884', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33885', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33887', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33890', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33891', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33892', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33893', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33894', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33895', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33896', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33897', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33898', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33899', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33900', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33901', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33902', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33903', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33904', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33905', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33906', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33907', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33908', NULL, 'BUSTIOS CASTRO SHEYLA PATRICIA', '--', '10454180751', '', '', 'LAS CAOBAS 606 -LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33909', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33910', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33917', NULL, 'COLD AIR SERVICE S.A.C.', '--', '20513157747', '', '', 'R. LAS BAYAS MZA. F LOTE. 41 URB. PORTADA DE CERES (CRUCE AV HUAROCHIRI Y AV CHANCAS) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33918', NULL, 'COLD AIR SERVICE S.A.C.', '--', '20513157747', '', '', 'R. LAS BAYAS MZA. F LOTE. 41 URB. PORTADA DE CERES (CRUCE AV HUAROCHIRI Y AV CHANCAS) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33919', NULL, 'COLD AIR SERVICE S.A.C.', '--', '20513157747', '', '', 'R. LAS BAYAS MZA. F LOTE. 41 URB. PORTADA DE CERES (CRUCE AV HUAROCHIRI Y AV CHANCAS) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33920', NULL, 'COLD AIR SERVICE S.A.C.', '--', '20513157747', '', '', 'R. LAS BAYAS MZA. F LOTE. 41 URB. PORTADA DE CERES (CRUCE AV HUAROCHIRI Y AV CHANCAS) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33921', NULL, 'COLD AIR SERVICE S.A.C.', '--', '20513157747', '', '', 'R. LAS BAYAS MZA. F LOTE. 41 URB. PORTADA DE CERES (CRUCE AV HUAROCHIRI Y AV CHANCAS) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33922', NULL, 'COLD AIR SERVICE S.A.C.', '--', '20513157747', '', '', 'R. LAS BAYAS MZA. F LOTE. 41 URB. PORTADA DE CERES (CRUCE AV HUAROCHIRI Y AV CHANCAS) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33923', NULL, 'COLD AIR SERVICE S.A.C.', '--', '20513157747', '', '', 'R. LAS BAYAS MZA. F LOTE. 41 URB. PORTADA DE CERES (CRUCE AV HUAROCHIRI Y AV CHANCAS) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33929', NULL, 'JURADO SOLANO RICARDO MARTIN', '--', '10400953932', '', '', 'AV UNIVERSATARIA MZ F LT 5  LOS OLIVOS -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33930', NULL, 'NEXOS ESTRATEGIAS & NEGOCIOS S.A.C.-NEXOS E&N S.A.C.', '--', '20501429733', '', '', 'MZA. J1 LOTE. 47 URB. LAS PRADERAS DE SANTA ANITA ET. DOS LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33932', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33933', NULL, 'MONTALVAN GUEVARA RICARDO GABRIEL', '--', '10066222913', '', '', 'JR LOS TILOS 347 SURCO  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33937', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33938', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33939', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33940', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33942', NULL, 'REYNOSO PAIMA GLADYS RUTH', '--', '10409422930', '', '', 'AV LOS HORIZONTES MZ I 1 LT 4  CEDROS DE VILLA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33944', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33953', NULL, 'MAGNOLIA LAVERIANO LOPEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33958', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33960', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33963', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33964', NULL, 'DESIGNGLASS RL E.I.R.L.', '--', '20606864036', '', '', 'AV. MEXICO NRO. 496 P.J. MATUTE LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33965', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33969', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33970', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33971', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33973', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33974', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33978', NULL, 'CONTRATISTAS GENERALES BELLA DURMIENTE E.I.R.L', '--', '20573089406', '', '', 'MZA. C LOTE. 03 AA.VV ABELARDO GUERRA GAR (ESPALDA DE ELECTROCENTRO) HUANUCO - LEONCIO PRADO - RUPA-RUPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33979', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33980', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33988', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33989', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33990', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33991', NULL, 'HUAMAN CARHUAPOMA JOSE DALMER', '--', '10805747621', '', '', 'AV PASEO DE LA REPUBLICA  255 A TIENDA 1070 - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33993', NULL, 'CORPORACIÓN SAMI GROUP PERÚ SOCIEDAD ANÓNIMA CERRADA - ', '--', '20546293204', '', '', 'AV. JACARANDA MZA. K LOTE. 9-A C.P. SANTA MARIA DE HUACHIPA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33994', NULL, 'CORPORACIÓN SAMI GROUP PERÚ SOCIEDAD ANÓNIMA CERRADA - ', '--', '20546293204', '', '', 'AV. JACARANDA MZA. K LOTE. 9-A C.P. SANTA MARIA DE HUACHIPA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33995', NULL, 'CORPORACIÓN SAMI GROUP PERÚ SOCIEDAD ANÓNIMA CERRADA - ', '--', '20546293204', '', '', 'AV. JACARANDA MZA. K LOTE. 9-A C.P. SANTA MARIA DE HUACHIPA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33996', NULL, 'CORPORACIÓN SAMI GROUP PERÚ SOCIEDAD ANÓNIMA CERRADA - ', '--', '20546293204', '', '', 'AV. JACARANDA MZA. K LOTE. 9-A C.P. SANTA MARIA DE HUACHIPA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33997', NULL, 'CORPORACIÓN SAMI GROUP PERÚ SOCIEDAD ANÓNIMA CERRADA - ', '--', '20546293204', '', '', 'AV. JACARANDA MZA. K LOTE. 9-A C.P. SANTA MARIA DE HUACHIPA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('33999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34002', NULL, 'VARA CAMPOS LUIS OSCAR', '--', '10428344982', '', '', 'PEDRO GAREZON 1651-LIMA5', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34003', NULL, 'VARA CAMPOS LUIS OSCAR', '--', '10428344982', '', '', 'PEDRO GAREZON 1651-LIMA5', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34004', NULL, 'VARA CAMPOS LUIS OSCAR', '--', '10428344982', '', '', 'PEDRO GAREZON 1651-LIMA5', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34007', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34010', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34014', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34015', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34016', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34019', NULL, 'ROGER  ARAGONEZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34021', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34022', NULL, 'HUAMANCULI HUANCAHUARI ESTEFANIO', '--', '10701978876', '', '', 'URB MAYORASGO CUARTA  ETAPA MZ U LT 17 ATE VITARTE  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34023', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34026', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34030', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34032', NULL, 'TAHUA POTTERY S.A.C.', '--', '20509113069', '', '', 'CAL.14 KM. 19 MZA. O LOTE. 1A COO. ASOC. LAS VERTIENTES (ALT ALMACENES DE SAGA FALABELLA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34037', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34042', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34043', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34055', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34059', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34060', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34061', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34065', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34067', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34069', NULL, 'SRB ASESORES & MANT S.A.C.', '--', '20605174702', '', '', 'CAL.TUPAC AMARU NRO. 576 P.J. 1 DE OCTUBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34077', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34078', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34079', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34083', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34091', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34092', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34093', NULL, 'BROUSSET CALDERON JUAN HUMBERTO', '--', '10076877144', '', '', 'NICOLAS DE PIEROLA MZ 19 C   LT 14 - CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34096', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34097', NULL, 'QUIMICA LOS ANDES & CADENA MEDICA DE SUMINISTROS S.A.C.', '--', '20606543086', '', '', 'CAL.BURGOS BLOCK F NRO. 179 RES. POLLUX LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34098', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34099', NULL, 'SALAZAR ILDEFONSO LISSETH YOLANDA', '--', '10458369068', '', '', 'AV JOSE GRANDA 2542 SAN MARTIN DE PORRES - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34102', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34103', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34104', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34105', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34106', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34107', NULL, 'EMPRESA DE SERVICIOS MULTIPLES S & V EMPRESA INDIVIDUAL', '--', '20600873505', '', '', '---12 DE OCTUBRE NRO. 330 PERU 7MA. ZNA. (ALT. CDRA 37 DE LA AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34108', NULL, 'EMPRESA DE SERVICIOS MULTIPLES S & V EMPRESA INDIVIDUAL', '--', '20600873505', '', '', '---12 DE OCTUBRE NRO. 330 PERU 7MA. ZNA. (ALT. CDRA 37 DE LA AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34109', NULL, 'EMPRESA DE SERVICIOS MULTIPLES S & V EMPRESA INDIVIDUAL', '--', '20600873505', '', '', '---12 DE OCTUBRE NRO. 330 PERU 7MA. ZNA. (ALT. CDRA 37 DE LA AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34110', NULL, 'EMPRESA DE SERVICIOS MULTIPLES S & V EMPRESA INDIVIDUAL', '--', '20600873505', '', '', '---12 DE OCTUBRE NRO. 330 PERU 7MA. ZNA. (ALT. CDRA 37 DE LA AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34112', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34113', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34114', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34115', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34116', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34117', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34118', NULL, 'MULTISERVICIOS CGR E.I.R.L.', '--', '20569317836', '', '', 'PRO.BELAUNDE MZA. A´ LOTE. 2 AA.VV LAS REJAS (A ESPALDA DEL ESTADIO) ANCASH - HUARMEY - HUARMEY', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34119', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34127', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34128', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34129', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34131', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34132', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34134', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34135', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34136', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34137', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34138', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34139', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34140', NULL, 'EKANLU SOCIEDAD ANONIMA CERRADA - EKANLU S.A.C.', '--', '20604299935', '', '', 'JR. ICA ANTIGUA NRO. 1447 C.P. CAJAS CHICO JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34141', NULL, 'EKANLU SOCIEDAD ANONIMA CERRADA - EKANLU S.A.C.', '--', '20604299935', '', '', 'JR. ICA ANTIGUA NRO. 1447 C.P. CAJAS CHICO JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34142', NULL, 'EKANLU SOCIEDAD ANONIMA CERRADA - EKANLU S.A.C.', '--', '20604299935', '', '', 'JR. ICA ANTIGUA NRO. 1447 C.P. CAJAS CHICO JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34147', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34152', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34153', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34154', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34156', NULL, 'EMPRESA DE TRANSPORTE TURISTICO ATUSPARIA E.I.R.L.', '--', '20602517251', '', '', 'AV. LUZURIAGA NRO. 651 CENT HUARAZ ANCASH - HUARAZ - HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34157', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34159', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34161', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34164', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34168', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34172', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34173', NULL, 'P Y D TELECOM S.R.L.', '--', '20556147761', '', '', 'AV. L MZA. L LOTE. 48 URB. SANTO DOMINGO DE CARABAYLLO 2DA ETAPA (AV EL PARQUE CRUCE CON AV CONDORCANQUI) LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34174', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34175', NULL, 'CLODY RAMIREZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34177', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34179', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34180', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34181', NULL, 'CORPORACION ANGHELO JOSUE S.A.C.', '--', '20601890829', '', '', 'CAL.LOS LAURELES NRO. 101 ANX. PARACHIQUE (AL COSTADO DEL HOTEL PLAYA ESCONDIDA) PIURA - SECHURA - SECHURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34182', NULL, 'CORPORACION ANGHELO JOSUE S.A.C.', '--', '20601890829', '', '', 'CAL.LOS LAURELES NRO. 101 ANX. PARACHIQUE (AL COSTADO DEL HOTEL PLAYA ESCONDIDA) PIURA - SECHURA - SECHURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34183', NULL, 'CORPORACION ANGHELO JOSUE S.A.C.', '--', '20601890829', '', '', 'CAL.LOS LAURELES NRO. 101 ANX. PARACHIQUE (AL COSTADO DEL HOTEL PLAYA ESCONDIDA) PIURA - SECHURA - SECHURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34184', NULL, 'CORPORACION ANGHELO JOSUE S.A.C.', '--', '20601890829', '', '', 'CAL.LOS LAURELES NRO. 101 ANX. PARACHIQUE (AL COSTADO DEL HOTEL PLAYA ESCONDIDA) PIURA - SECHURA - SECHURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34192', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34194', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34195', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34200', NULL, 'ARLOTIA E.I.R.L.', '--', '20548068500', '', '', 'AV. GRAU NRO. 340 LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34201', NULL, 'ARLOTIA E.I.R.L.', '--', '20548068500', '', '', 'AV. GRAU NRO. 340 LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34206', NULL, 'ASOCIACION PARA LA PROMOCION, GESTION Y DESARROLLO DE L', '--', '20555162945', '', '', 'MZA. H2 LOTE. 54 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34207', NULL, 'ASOCIACION PARA LA PROMOCION, GESTION Y DESARROLLO DE L', '--', '20555162945', '', '', 'MZA. H2 LOTE. 54 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34208', NULL, 'ASOCIACION PARA LA PROMOCION, GESTION Y DESARROLLO DE L', '--', '20555162945', '', '', 'MZA. H2 LOTE. 54 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34209', NULL, 'ASOCIACION PARA LA PROMOCION, GESTION Y DESARROLLO DE L', '--', '20555162945', '', '', 'MZA. H2 LOTE. 54 URB. SAN ANTONIO DE CARAPONGO LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34210', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34211', NULL, 'NEGOCIACIONES FLOR DE MARIA E.I.R.L.', '--', '20522731880', '', '', 'JR. GARCIA NARANJO NRO. 719 (A ESPALDA HOSPITAL GUILLERMO ALMENARA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34212', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34214', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34216', NULL, 'RAYA DIGITAL SOCIEDAD ANONIMA CERRADA - RAYA DIGITAL S.', '--', '20600427190', '', '', 'AV. ARENALES NRO. 1951 INT. 204 RES. RISSO (ALTURA CUADRA 19 DE AV. AREQUIPA) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34218', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34221', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34222', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34223', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34229', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34230', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34231', NULL, 'RALL & ARFER INGENIERIA S.A.C.', '--', '20607557960', '', '', 'MZA. U-1 LOTE. 07 SEC. SECTOR E - PILOTO PACHACUTEC (MERCADO PESQUERO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34234', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34235', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34236', NULL, 'HP SERVICIOS AUTOMOTRIZ SOCIEDAD ANONIMA CERRA - HP SER', '--', '20600385101', '', '', 'JR. CHICLAYO MZA. 110 LOTE. 8 A.H. HUASCAR (POSTA MEDICA NRO 2 DE HUASAR) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34237', NULL, 'HP SERVICIOS AUTOMOTRIZ SOCIEDAD ANONIMA CERRA - HP SER', '--', '20600385101', '', '', 'JR. CHICLAYO MZA. 110 LOTE. 8 A.H. HUASCAR (POSTA MEDICA NRO 2 DE HUASAR) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34238', NULL, 'HP SERVICIOS AUTOMOTRIZ SOCIEDAD ANONIMA CERRA - HP SER', '--', '20600385101', '', '', 'JR. CHICLAYO MZA. 110 LOTE. 8 A.H. HUASCAR (POSTA MEDICA NRO 2 DE HUASAR) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34250', NULL, 'TRINIDAD MARCELO HERLY SOLEDAD', '--', '10403329466', '', '', 'JR HUAMACHUCO 262 A - CHOPIMARCA - CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34258', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34259', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34268', NULL, 'MONTES RAMOS RONALD EDINSON', '--', '10429880993', '', '', 'JR PARURO 336 DPTO304-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34269', NULL, 'MONTES RAMOS RONALD EDINSON', '--', '10429880993', '', '', 'JR PARURO 336 DPTO304-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34273', NULL, 'MAJOR S.A.C.', '--', '20503369134', '', '', 'AV. EUTERPE NRO. 222 INT. A URB. OLIMPO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34275', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34278', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34279', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34280', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34281', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34282', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34283', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34284', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34285', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34286', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'UR SAN ANTONIO DE CARAPONGO MZ E2 LOTE 6 -LURIGANCHO-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34287', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'UR SAN ANTONIO DE CARAPONGO MZ E2 LOTE 6 -LURIGANCHO-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34288', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'UR SAN ANTONIO DE CARAPONGO MZ E2 LOTE 6 -LURIGANCHO-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34289', NULL, 'NIETO PARRAGA LOURDES LIZ', '--', '10439572154', '', '', 'UR SAN ANTONIO DE CARAPONGO MZ E2 LOTE 6 -LURIGANCHO-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34293', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34294', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34298', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34299', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34300', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34302', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34303', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34304', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34305', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34314', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34315', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34316', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34317', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34318', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34320', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34327', NULL, 'ASOCIACION DE COMERCIANTES PROPIETARIOS FRONTERAS UNIDA', '--', '20458462454', '', '', 'JR. MONTEVIDEO NRO. 766 (ALT.ESPALDA AV. GRAU CDRA.5) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34330', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34332', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34338', NULL, 'ALICIA ELVIRA VASQUEZ  ZEGARRA', '--', '10401957931', '', '', 'AV PANAMERICANA CON MARISCAL CACERES CHALHUANCA  - APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34339', NULL, 'ALICIA ELVIRA VASQUEZ  ZEGARRA', '--', '10401957931', '', '', 'AV PANAMERICANA CON MARISCAL CACERES CHALHUANCA  - APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34340', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34341', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34342', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34348', NULL, 'QUIMICA S.K.R. EIRL', '--', '20513315911', '', '', '----IQUITOS NRO. 803 SAN M DE PORRAS (ALT. CDRA. 34 DE AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34349', NULL, 'QUIMICA S.K.R. EIRL', '--', '20513315911', '', '', '----IQUITOS NRO. 803 SAN M DE PORRAS (ALT. CDRA. 34 DE AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34350', NULL, 'QUIMICA S.K.R. EIRL', '--', '20513315911', '', '', '----IQUITOS NRO. 803 SAN M DE PORRAS (ALT. CDRA. 34 DE AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34351', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34352', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34355', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34356', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34357', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34360', NULL, 'lidia carpio', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34361', NULL, 'LIDIA CARPIO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34362', NULL, 'LIDIA CARPIO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34363', NULL, 'CONSORCIO EMPRESARIAL RICEL\'S S.A.C.', '--', '20517137023', '', '', 'CAL.CHINCHA NRO. 155 URB. MESA REDONDA (ALT PILAS NATIONAL) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34367', NULL, 'VASQUEZ CALDERON DANIEL', '--', '10254837828', '', '', 'URB PEDRO RUIZ GALLO MZ B LOTE 20 CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34368', NULL, 'VASQUEZ CALDERON DANIEL', '--', '10254837828', '', '', 'URB PEDRO RUIZ GALLO MZ B LOTE 20 CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34369', NULL, 'VASQUEZ CALDERON DANIEL', '--', '10254837828', '', '', 'URB PEDRO RUIZ GALLO MZ B LOTE 20 CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34370', NULL, 'VASQUEZ CALDERON DANIEL', '--', '10254837828', '', '', 'URB PEDRO RUIZ GALLO MZ B LOTE 20 CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34372', NULL, 'EMBALAJES CHARITO E.I.R.L.', '--', '20602220592', '', '', 'JR. VARELA ORBEGOSO NRO. 133 INT. A LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34377', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34380', NULL, 'ROBELO RAMOS ELIZABETH MERCEDES', '--', '10065643516', '', '', 'URB EL EXITO MZC LOTE 9 ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34381', NULL, 'ROBELO RAMOS ELIZABETH MERCEDES', '--', '10065643516', '', '', 'URB EL EXITO MZC LOTE 9 ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34392', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34394', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34399', NULL, 'C.G CORAZON DEL PINO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34400', NULL, 'C.G CORAZON DEL PINO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34401', NULL, 'C.G CORAZON DEL PINO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34406', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34412', NULL, 'APUMAYTA LAIME JOSUE', '--', '10463355393', '', '', 'JR AMAZONAS 299 INT D10-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34413', NULL, 'APUMAYTA LAIME JOSUE', '--', '10463355393', '', '', 'JR AMAZONAS 299 INT D10-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34414', NULL, 'APUMAYTA LAIME JOSUE', '--', '10463355393', '', '', 'JR AMAZONAS 299 INT D10-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34415', NULL, 'ALVAREZ GONZALES MIGUEL RUFINO', '--', '10257833963', '', '', 'URB MIGUEL GRAU MZ G LOTE 6- CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34416', NULL, 'ALVAREZ GONZALES MIGUEL RUFINO', '--', '10257833963', '', '', 'URB MIGUEL GRAU MZ G LOTE 6- CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34417', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34427', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34429', NULL, 'GOMEZ ZARATE CARMEN ELIZABETH', '--', '10404503702', '', '', 'JR PUNO 3386 -SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34430', NULL, 'GOMEZ ZARATE CARMEN ELIZABETH', '--', '10404503702', '', '', 'JR PUNO 3386 -SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34431', NULL, 'GOMEZ ZARATE CARMEN ELIZABETH', '--', '10404503702', '', '', 'JR PUNO 3386 -SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34432', NULL, 'GOMEZ ZARATE CARMEN ELIZABETH', '--', '10404503702', '', '', 'JR PUNO 3386 -SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34433', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34435', NULL, 'PECEROS QUISPE CELESTINO FILOMENO', '--', '10086320890', '', '', 'JR TOMAS A. COCHRANE 3542-SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34436', NULL, 'PECEROS QUISPE CELESTINO FILOMENO', '--', '10086320890', '', '', 'JR TOMAS A. COCHRANE 3542-SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34437', NULL, 'ROBERTO VERANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34438', NULL, 'ROBERTO VERANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34447', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34458', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34461', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34462', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34463', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34464', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34465', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34466', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34468', NULL, 'FREDY CASTILLO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34469', NULL, 'FREDY CASTILLO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34470', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34471', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34473', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34474', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34475', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34476', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34477', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34480', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34482', NULL, 'MACHICO LIRA CARLOS HERNAN', '--', '10804871638', '', '', 'JR FRANCISCO BOLOGNESI 422 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34483', NULL, 'MACHICO LIRA CARLOS HERNAN', '--', '10804871638', '', '', 'JR FRANCISCO BOLOGNESI 422 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34484', NULL, 'MACHICO LIRA CARLOS HERNAN', '--', '10804871638', '', '', 'JR FRANCISCO BOLOGNESI 422 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34485', NULL, 'MACHICO LIRA CARLOS HERNAN', '--', '10804871638', '', '', 'JR FRANCISCO BOLOGNESI 422 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34486', NULL, 'MACHICO LIRA CARLOS HERNAN', '--', '10804871638', '', '', 'JR FRANCISCO BOLOGNESI 422 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34487', NULL, 'MACHICO LIRA CARLOS HERNAN', '--', '10804871638', '', '', 'JR FRANCISCO BOLOGNESI 422 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34488', NULL, 'MACHICO LIRA CARLOS HERNAN', '--', '10804871638', '', '', 'JR FRANCISCO BOLOGNESI 422 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34489', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34490', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34491', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34493', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34497', NULL, 'NICHO ROSADO DANTE RAUL', '--', '10086526960', '', '', 'AV RIVA AGUERO 250 DPTO 102 SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34498', NULL, 'NICHO ROSADO DANTE RAUL', '--', '10086526960', '', '', 'AV RIVA AGUERO 250 DPTO 102 SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34499', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34504', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34515', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34516', NULL, 'VARIOS', '00000000', '10009610982', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34517', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34518', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34519', NULL, 'COSTA BRAVA MEDITERRANEO S.A.C.', '--', '20607629596', '', '', 'JR. HUIRACOCHA NRO. 1501 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34522', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34525', NULL, 'ALFONSO TORRES DIONICIA', '--', '10156859350', '', '', 'MERCADO CENTENARIO LETRA D - HUACHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34527', NULL, 'RENACER SALUD E.I.R.L.', '--', '20562753479', '', '', 'AV. 13 DE ENERO NRO. 1783 URB. LAS FLORES 78 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34530', NULL, 'BALDOCEDA CAHUANA JOEL', '--', '10485841666', '', '', 'MZ O LOTE 18 LAS MERCEDES - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34531', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34532', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34533', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34534', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34535', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34536', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34537', NULL, 'SEÑALES Y ACRILICOS SOCIEDAD ANONIMA CERRADA-SEÑACRIL S', '--', '20600904214', '', '', 'AV. ROOSEVELT NRO. 251 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34541', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34542', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34543', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34544', NULL, 'CENTRO EMPRESARIAL EL CHAMPAL S.A.C.', '--', '20600019130', '', '', 'CAR.CENTRAL-PRED RURAL CHAMPA KM. 52 ANEXO YANAMAQUI (BALANZA DE COCACHACRA) LIMA - HUAROCHIRI - SANTA CRUZ DE COCACHACRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34545', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34546', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34547', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34558', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34560', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34561', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34562', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34563', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34565', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34567', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34575', NULL, 'BIZARRO HUANCA NILDA KARIN', '--', '10106675444', '', '', 'PROLONGACION GAMARRA 654-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34576', NULL, 'BIZARRO HUANCA NILDA KARIN', '--', '10106675444', '', '', 'PROLONGACION GAMARRA 654-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34580', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34585', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34586', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34587', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34588', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34589', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34595', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34596', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34597', NULL, 'CORTEZ RAMOS JUAN CARLOS', '--', '10099343619', '', '', 'PASAJE OLAVIDE 248  - CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34603', NULL, 'VERA TORIBIO HUGO ERNESTO', '--', '10161565674', '', '', 'MZ H LOTE 3 RODRIGO FRANCO -SURCO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34604', NULL, 'CONSORCIO SONG MAU S.A.C.- SONG MAU S.A.C.', '--', '20600238168', '', '', 'CAL.DANIEL MARICHI NRO. 133 C.P. PAMPA HERMOSA LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34605', NULL, 'CONSORCIO SONG MAU S.A.C.- SONG MAU S.A.C.', '--', '20600238168', '', '', 'CAL.DANIEL MARICHI NRO. 133 C.P. PAMPA HERMOSA LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34606', NULL, 'CONTRERAS TANTALEAN YSAURA', '--', '10423948286', '', '', 'AV MANCO CAPAC -1060-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34607', NULL, 'CONTRERAS TANTALEAN YSAURA', '--', '10423948286', '', '', 'AV MANCO CAPAC -1060-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34608', NULL, 'CONTRERAS TANTALEAN YSAURA', '--', '10423948286', '', '', 'AV MANCO CAPAC -1060-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34609', NULL, 'CONTRERAS TANTALEAN YSAURA', '--', '10423948286', '', '', 'AV MANCO CAPAC -1060-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34610', NULL, 'CONTRERAS TANTALEAN YSAURA', '--', '10423948286', '', '', 'AV MANCO CAPAC -1060-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34611', NULL, 'CONTRERAS TANTALEAN YSAURA', '--', '10423948286', '', '', 'AV MANCO CAPAC -1060-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34613', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34616', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34617', NULL, 'BARBOZA & ABOGADOS S.CIVIL DE R.L.', '--', '20602493220', '', '', 'AV. F. ROOSEVELT NRO. 385 DPTO. 300 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34620', NULL, 'GIRALDO & CONSTRUCCION MINERA S.A.C.', '--', '20530967191', '', '', 'AV. NICOLAS ARRIOLA NRO. 1918 URB. MARISCAL RAMON CATILLA LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34621', NULL, 'GIRALDO & CONSTRUCCION MINERA S.A.C.', '--', '20530967191', '', '', 'AV. NICOLAS ARRIOLA NRO. 1918 URB. MARISCAL RAMON CATILLA LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34622', NULL, 'A COCINAR E.I.R.L.', '--', '20608117874', '', '', 'MZA. B2 LOTE. 8 A.H. TUPAC AMARU DE VILLA (FRENTE COLEGIO TUPAC AMARU DE VILLA 2º) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34623', NULL, 'A COCINAR E.I.R.L.', '--', '20608117874', '', '', 'MZA. B2 LOTE. 8 A.H. TUPAC AMARU DE VILLA (FRENTE COLEGIO TUPAC AMARU DE VILLA 2º) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34624', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34626', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34630', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34631', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34637', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34639', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34640', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34641', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34642', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34649', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34650', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34651', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34653', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34661', NULL, 'MEBOL SAC', '--', '', '', '', 'AV. EL DERBY NRO. 254 INT. 1703 URB. EL DERBY (CRUZE AV EL DERBY CON MANUEL OLGUIN) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34662', NULL, 'MEBOL SAC', '--', '20293583626', '', '', 'AV. EL DERBY NRO. 254 INT. 1703 URB. EL DERBY (CRUZE AV EL DERBY CON MANUEL OLGUIN) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34665', NULL, 'CORRO VERGARA S.A.C.', '--', '20607446424', '', '', 'JR. CORONEL LEONCIO PRADO NRO. 1090 INT. 101 URB. ORBEA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34666', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34668', NULL, 'INVERSIONES CORPORATIVAS J & L SAC', '--', '20556944513', '', '', 'JR. PROLONGACION GAMARRA NRO. 653 INT. 809 URB. SAN PABLO (GALERIA PLAZA PISO 8) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34669', NULL, 'INVERSIONES CORPORATIVAS J & L SAC', '--', '20556944513', '', '', 'JR. PROLONGACION GAMARRA NRO. 653 INT. 809 URB. SAN PABLO (GALERIA PLAZA PISO 8) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34670', NULL, 'INVERSIONES CORPORATIVAS J & L SAC', '--', '20556944513', '', '', 'JR. PROLONGACION GAMARRA NRO. 653 INT. 809 URB. SAN PABLO (GALERIA PLAZA PISO 8) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34671', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34672', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34673', NULL, 'COLPE INGENIERIA APLICADA S.A.C.', '--', '20556591254', '', '', 'AV. PERU NRO. 3846 URB. PERU LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34674', NULL, 'COLPE INGENIERIA APLICADA S.A.C.', '--', '20556591254', '', '', 'AV. PERU NRO. 3846 URB. PERU LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34678', NULL, 'CURO TORRES MARUJA', '--', '10448710438', '', '', 'AV NARANJAL 1594 - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34679', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34681', NULL, 'INVERSIONES AGUILAR CALLE EMPRESA INDIVIDUAL DE RESPONS', '--', '20527942773', '', '', 'AV. GENERAL GARZON NRO. 1283 DPTO. 716 (AL COSTADO DE BANCO DE COMERCIO) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34682', NULL, 'INVERSIONES AGUILAR CALLE EMPRESA INDIVIDUAL DE RESPONS', '--', '20527942773', '', '', 'AV. GENERAL GARZON NRO. 1283 DPTO. 716 (AL COSTADO DE BANCO DE COMERCIO) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34684', NULL, 'SATURNO CYPE EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMI', '--', '20606146079', '', '', 'JR. LA PUNTA MZA. B LOTE. 5 SAN PAULINO (CEMENTERIO LA CAPILLA 3 CDRS) PUNO - SAN ROMAN - JULIACA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34685', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34693', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34694', NULL, 'NEWREST PERU S.A.C.', '--', '20381235051', '', '', 'CAL.CALLE A MZA. B LOTE. 4-A URB. BOCANEGRA (ALT. CDRA.36 E.FAUCETT -ALT. COLDEX) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34698', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34701', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34702', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34705', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34706', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34707', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34708', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34717', NULL, 'MONTOYA FLORES MONICA', '--', '10100931970', '', '', 'GRUPO 25 A MZ L LOTE 9 SECTOR 3 AV CESAR VALLEJO Y PASTOR CEVILLA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34718', NULL, 'HUALLANCA MALDONADO FLORA', '--', '10104398737', '', '', 'JR CUSCO 747-OFICINA 267-MINA DE ORO 2 -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34719', NULL, 'HUALLANCA MALDONADO FLORA', '--', '10104398737', '', '', 'JR CUSCO 747-OFICINA 267-MINA DE ORO 2 -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34726', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34727', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34729', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34732', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34733', NULL, 'OTROS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34734', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34735', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34737', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34739', NULL, 'CODIRSA DISTRIBUCIONES COMERCIALES E.I.R.L', '--', '20524239702', '', '', 'CAL.JOSE BERNARDO ALCEDO NRO. 295 CERCADO (ALTURA CDRA 29 AV. AREQUIPA) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34740', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34742', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34745', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34747', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34748', NULL, 'GIANELLY ANTONIO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34750', NULL, 'ALFONSO TORRES DIONICIA', '--', '10156859350', '', '', 'MERCADO CENTENARIO D -HUACHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34752', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34755', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34758', NULL, 'JESUS VILLACORTA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34759', NULL, 'JESUS VILLACORTA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34760', NULL, 'REBECA LEONARDO EGOAVIL', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34761', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34762', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34765', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34766', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34768', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34770', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34771', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34774', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34776', NULL, 'INVERSIONES CULLA E.I.R.L.', '--', '20605120068', '', '', 'JR. ANTONIO BAZO NRO. 573 INT. 401 URB. EL PORVENIR LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34777', NULL, 'INVERSIONES CULLA E.I.R.L.', '--', '20605120068', '', '', 'JR. ANTONIO BAZO NRO. 573 INT. 401 URB. EL PORVENIR LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34778', NULL, 'INVERSIONES CULLA E.I.R.L.', '--', '20605120068', '', '', 'JR. ANTONIO BAZO NRO. 573 INT. 401 URB. EL PORVENIR LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34790', NULL, 'PA COMERALGO FAST FOOD S.R.L.', '--', '20607270962', '', '', 'AV. LA MOLINA MZA. A LOTE. 1 APV. ASOC.DE VIVIENDA SANTA ANITA BAJA (FRENTE DE ATENTO) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34791', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34792', NULL, 'POSHINI ORGANICS SOCIEDAD COMERCIAL DE RESPONSABILIDAD ', '--', '20573882939', '', '', 'AV. MICAELA BASTIDAS NRO. 515 URB. SATIPO (COSTADO DE LA GRAFICA BALLONA) JUNIN - SATIPO - SATIPO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34796', NULL, 'ESTUDIOS INTEGRALES DE MERCADOS S.A.C.', '--', '20607444316', '', '', 'BL. LOS ALAMOS NRO. 1ER DPTO. 802 RES. SAN FELIPE (A DOS CUADRAS DE REAL PLAZA SALAVERRY) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34797', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34800', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34806', NULL, 'OBREGON ACOSTA ERNESTO ISAIAS', '--', '10097393805', '', '', 'JR LOS RUIDARES  461 - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34809', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34810', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34811', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34812', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34813', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34814', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34816', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34817', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34818', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34824', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34831', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34834', NULL, 'NITO PERU PROGRESO SAC', '--', '20602128700', '', '', 'JR BERNARDO ALCEDO 134 - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34835', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34836', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34837', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34838', NULL, 'INVERSIONES TOMAS VALLE S.A.C', '--', '20476633932', '', '', 'JR. DOMINGO CUETO NRO. 444 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34839', NULL, 'INVERSIONES TOMAS VALLE S.A.C', '--', '20476633932', '', '', 'JR. DOMINGO CUETO NRO. 444 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34840', NULL, 'INVERSIONES TOMAS VALLE S.A.C', '--', '20476633932', '', '', 'JR. DOMINGO CUETO NRO. 444 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34841', NULL, 'GUADALUPE SILVIA MALLQUI CAMPOS', '--', '10106139097', '', '', 'AV NICOLAS AYLLON 4336-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34842', NULL, 'GUADALUPE SILVIA MALLQUI CAMPOS', '--', '10106139097', '', '', 'AV NICOLAS AYLLON 4336-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34846', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34847', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34848', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34849', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34855', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34859', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34861', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34862', NULL, 'EUSEBIO ARIAS CURI', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34863', NULL, 'YUPANQUI MONTES VICTOR', '--', '10215594993', '', '', 'MZ B LOTE 1 URB  JUAN VELASCO ALVARADO - SAN VICENTE - CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34866', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34867', NULL, 'CEDELI PATISSERIE S.A.C.', '--', '20606124164', '', '', 'CAL.SANTA ISABEL NRO. 281 DPTO. 101 URB. MARISCAL ANTONIO JOSE DE SUCRE LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34868', NULL, 'EL PACIFICO DORADO S.A.C.', '--', '20531949588', '', '', 'CAL.LEONIDAS LA SERRE NRO. 182 COO. HUERTA SANTA ROSA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34871', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34872', NULL, 'GARCIA GARCIA ANTUANETH PILAR', '--', '10414121913', '', '', 'JR CHOTA 1458-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34873', NULL, 'GARCIA GARCIA ANTUANETH PILAR', '--', '10414121913', '', '', 'JR CHOTA 1458-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34875', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34877', NULL, 'HASAMY PRODUCTORA S.A.C.', '--', '20551862861', '', '', 'AV. EL SOL NRO. 900 A.H. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34878', NULL, 'HASAMY PRODUCTORA S.A.C.', '--', '20551862861', '', '', 'AV. EL SOL NRO. 900 A.H. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34879', NULL, 'HASAMY PRODUCTORA S.A.C.', '--', '20551862861', '', '', 'AV. EL SOL NRO. 900 A.H. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34880', NULL, 'HASAMY PRODUCTORA S.A.C.', '--', '20551862861', '', '', 'AV. EL SOL NRO. 900 A.H. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34881', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34883', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34886', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34887', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34888', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34891', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34892', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34894', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34895', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34897', NULL, 'MAFOI SUDAMERICA SIN FRONTERAS S.A.C', '--', '20606806095', '', '', 'JR. HUIRACOCHA NRO. 1277 INT. 119 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34898', NULL, 'MAFOI SUDAMERICA SIN FRONTERAS S.A.C', '--', '20606806095', '', '', 'JR. HUIRACOCHA NRO. 1277 INT. 119 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34904', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34905', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34906', NULL, 'CONSORCIO TECNICA DE SERVICIOS S.A.C', '--', '20543633896', '', '', '----URBANIZACION PACHACAMAC MZA. Q LOTE. 44 SEC. BARRIO 1 SECTOR 2 4TA ETAPA (FRENTE COLEGIO NACIONAL NACIONES UNIDAS) LIMA - LIMA - VILLA EL SALVAD', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34908', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34909', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34910', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34912', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34913', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34914', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34916', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34918', NULL, 'IMPORT. Y REPRST. SONO LUZ S.R.L.', '--', '20203511443', '', '', 'CAL.PORTA NRO. 150 INT. 29 OTR. CENTRO COMERCIAL D-TODO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34919', NULL, 'IMPORT. Y REPRST. SONO LUZ S.R.L.', '--', '20203511443', '', '', 'CAL.PORTA NRO. 150 INT. 29 OTR. CENTRO COMERCIAL D-TODO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34920', NULL, 'IMPORT. Y REPRST. SONO LUZ S.R.L.', '--', '20203511443', '', '', 'CAL.PORTA NRO. 150 INT. 29 OTR. CENTRO COMERCIAL D-TODO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34921', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34922', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34923', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34924', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34925', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34926', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34927', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34928', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34929', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34930', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34931', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34933', NULL, 'BANCO AZTECA DEL PERU S.A.', '--', '20517476405', '', '', 'AV. PERSHING - EX FAUSTINO SANCHEZ CARRION NRO. 465 INT. 801 (ESQUINA CON CLEMENTE X) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34935', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34936', NULL, 'CEVICHERIA PEJE BLANCO S.A. - PEJE BLANCO', '--', '20600471695', '', '', 'MLC.SAN MARTIN NRO. 417 (PLAYA PUCUSANA ESQ. CALLE SAN PEDRO) LIMA - LIMA - PUCUSANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34939', NULL, 'CALZADO VILLANUEVA MARCELINO', '--', '10157569274', '', '', 'MERCADO CENTENARIO  E  PUESTO 58 A 64 - HUACHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34940', NULL, 'CALZADO VILLANUEVA MARCELINO', '--', '10157569274', '', '', 'MERCADO CENTENARIO  E  PUESTO 58 A 64 - HUACHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34944', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34945', NULL, 'ECOTRONICA SOCIEDAD ANONIMA CERRADA ECOTRONICA S.A.C.', '--', '20510509758', '', '', 'AV. 4 DEABRIL MZA. A LOTE. 03 ASOC.VILLA GRAMADAL LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34946', NULL, 'ECOTRONICA SOCIEDAD ANONIMA CERRADA ECOTRONICA S.A.C.', '--', '20510509758', '', '', 'AV. 4 DEABRIL MZA. A LOTE. 03 ASOC.VILLA GRAMADAL LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34947', NULL, 'ECOTRONICA SOCIEDAD ANONIMA CERRADA ECOTRONICA S.A.C.', '--', '20510509758', '', '', 'AV. 4 DEABRIL MZA. A LOTE. 03 ASOC.VILLA GRAMADAL LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34948', NULL, 'ECOTRONICA SOCIEDAD ANONIMA CERRADA ECOTRONICA S.A.C.', '--', '20510509758', '', '', 'AV. 4 DEABRIL MZA. A LOTE. 03 ASOC.VILLA GRAMADAL LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34949', NULL, 'ECOTRONICA SOCIEDAD ANONIMA CERRADA ECOTRONICA S.A.C.', '--', '20510509758', '', '', 'AV. 4 DEABRIL MZA. A LOTE. 03 ASOC.VILLA GRAMADAL LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34950', NULL, 'ECOTRONICA SOCIEDAD ANONIMA CERRADA ECOTRONICA S.A.C.', '--', '20510509758', '', '', 'AV. 4 DEABRIL MZA. A LOTE. 03 ASOC.VILLA GRAMADAL LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34951', NULL, 'ECOTRONICA SOCIEDAD ANONIMA CERRADA ECOTRONICA S.A.C.', '--', '20510509758', '', '', 'AV. 4 DEABRIL MZA. A LOTE. 03 ASOC.VILLA GRAMADAL LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34955', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34956', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34958', NULL, 'CIUDAD BELLEZA S.A.C.', '--', '20604776369', '', '', 'CAL.JUAN FUENTES MZA. D LOTE. 19 DPTO. 102 URB. LA CALERA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34960', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34963', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34964', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34965', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34966', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34967', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34968', NULL, 'ESPECIALISTAS EN SEGURIDAD INDUSTRIAL DEL PERU S.A.C.', '--', '20605596640', '', '', 'CAL.REAL MZA. B LOTE. 14 ASC. SANTA INES (ALT. MUNICIPALIDAD DE ATE) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34974', NULL, 'GLOBAL SYSTEMS INTEGRATOR MULTISERVICES S.A.C. - GSI MU', '--', '20604471002', '', '', 'AV. TOMAS MARSANO NRO. 607 URB. VILLA VICTORIA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34975', NULL, 'GLOBAL SYSTEMS INTEGRATOR MULTISERVICES S.A.C. - GSI MU', '--', '20604471002', '', '', 'AV. TOMAS MARSANO NRO. 607 URB. VILLA VICTORIA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34976', NULL, 'GLOBAL SYSTEMS INTEGRATOR MULTISERVICES S.A.C. - GSI MU', '--', '20604471002', '', '', 'AV. TOMAS MARSANO NRO. 607 URB. VILLA VICTORIA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34977', NULL, 'INVERSIONES Y REPRESENTACIONES TACA S.A.C. - INVERSIONE', '--', '20549517529', '', '', 'MZA. B1 LOTE. 6 INT. 2 URB. COLLIQUE ZONA CINCO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34978', NULL, 'INVERSIONES Y REPRESENTACIONES TACA S.A.C. - INVERSIONE', '--', '20549517529', '', '', 'MZA. B1 LOTE. 6 INT. 2 URB. COLLIQUE ZONA CINCO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34979', NULL, 'INVERSIONES Y REPRESENTACIONES TACA S.A.C. - INVERSIONE', '--', '20549517529', '', '', 'MZA. B1 LOTE. 6 INT. 2 URB. COLLIQUE ZONA CINCO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34982', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34992', NULL, 'BARRETO GUIZADO JOEL DANTE', '--', '10466949201', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34993', NULL, 'BARRETO GUIZADO JOEL DANTE', '--', '10466949201', '', '', 'HUANCABAMBA 1744 - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('34999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35002', NULL, 'PRIXMA SOCIEDAD ANONIMA CERRADA', '--', '20556921815', '', '', 'BL. 34 NRO. S/N DPTO. 402 RES. SAN FELIPE LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35003', NULL, 'PRIXMA SOCIEDAD ANONIMA CERRADA', '--', '20556921815', '', '', 'BL. 34 NRO. S/N DPTO. 402 RES. SAN FELIPE LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35006', NULL, 'ESPEJO DIAZ MONICA LOURDES', '--', '10101257989', '', '', 'JR GENCIANAS 653-SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35007', NULL, 'ESPEJO DIAZ MONICA LOURDES', '--', '10101257989', '', '', 'JR GENCIANAS 653-SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35010', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35011', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35012', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35013', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35015', NULL, 'GRUPO ANGLOAMERICANO DE INVERSIONES S.A.C.', '--', '20551831125', '', '', 'AV. ANTUNEZ DE MAYOLO MZA. M LOTE. 48 URB. LOS PINA LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35016', NULL, 'GRUPO HUPERMA E.I.R.L.', '--', '20556721051', '', '', 'JR. CARMEN NRO. 771 (ENTRE ANGAMOS Y REPUBLICA DE PANAMA) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35020', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35021', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35022', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35025', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35030', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35035', NULL, 'INVERSIONES TURISTICAS YURAQ WAYI E.I.R.L.', '--', '20533627456', '', '', 'CAR.CENTRAL CARAZ-HUALLANCA KM. 1.5 (EN EL RESTAURANTE LA CAPULLANA) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35036', NULL, 'INVERSIONES TURISTICAS YURAQ WAYI E.I.R.L.', '--', '20533627456', '', '', 'CAR.CENTRAL CARAZ-HUALLANCA KM. 1.5 (EN EL RESTAURANTE LA CAPULLANA) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35037', NULL, 'INVERSIONES TURISTICAS YURAQ WAYI E.I.R.L.', '--', '20533627456', '', '', 'CAR.CENTRAL CARAZ-HUALLANCA KM. 1.5 (EN EL RESTAURANTE LA CAPULLANA) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35038', NULL, 'INVERSIONES TURISTICAS YURAQ WAYI E.I.R.L.', '--', '20533627456', '', '', 'CAR.CENTRAL CARAZ-HUALLANCA KM. 1.5 (EN EL RESTAURANTE LA CAPULLANA) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35039', NULL, 'INVERSIONES TURISTICAS YURAQ WAYI E.I.R.L.', '--', '20533627456', '', '', 'CAR.CENTRAL CARAZ-HUALLANCA KM. 1.5 (EN EL RESTAURANTE LA CAPULLANA) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35040', NULL, 'INVERSIONES TURISTICAS YURAQ WAYI E.I.R.L.', '--', '20533627456', '', '', 'CAR.CENTRAL CARAZ-HUALLANCA KM. 1.5 (EN EL RESTAURANTE LA CAPULLANA) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35044', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35045', NULL, 'FAMCAVEL SERVICIOS GENERALES E.I.R.L.', '--', '20569100349', '', '', 'JR. RAMON CASTILLA NRO. 125 INT. 1PIS CENTRO SIHUAS ANCASH - SIHUAS - SIHUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35046', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35047', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35048', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35050', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35051', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35055', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35056', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35058', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35060', NULL, 'ANTUNEZ DABOIN DEMIS BENJAMIN', '--', '15604641443', '', '', 'URB SAN PERO DE GARAGAY MZ B LT 18 SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35061', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35064', NULL, 'COBEFAR S.A.C.', '--', '20600546041', '', '', 'CAL.CARLOS PEDEMONTE NRO. 145B INT. 3PIS URB. LOTIZACION EX FUNDO EL PINO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35065', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35067', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35069', NULL, 'FRANQUICIAS ALIMENTARIAS S.A.', '--', '20298674611', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS NRO. 134 INT. 402 URB. CLUB GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 2) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35070', NULL, 'FRANQUICIAS ALIMENTARIAS S.A.', '--', '20298674611', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS NRO. 134 INT. 402 URB. CLUB GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 2) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35071', NULL, 'FRANQUICIAS ALIMENTARIAS S.A.', '--', '20298674611', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS NRO. 134 INT. 402 URB. CLUB GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 2) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35072', NULL, 'FRANQUICIAS ALIMENTARIAS S.A.', '--', '20298674611', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS NRO. 134 INT. 402 URB. CLUB GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 2) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35073', NULL, 'FRANQUICIAS ALIMENTARIAS S.A.', '--', '20298674611', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS NRO. 134 INT. 402 URB. CLUB GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 2) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35074', NULL, 'FRANQUICIAS ALIMENTARIAS S.A.', '--', '20298674611', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS NRO. 134 INT. 402 URB. CLUB GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 2) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35075', NULL, 'FRANQUICIAS ALIMENTARIAS S.A.', '--', '20298674611', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS NRO. 134 INT. 402 URB. CLUB GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 2) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35077', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35078', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35079', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35080', NULL, 'SABA CAFE Y HERBOLARIA E.I.R.L. - SABA CAFE E.I.R.L.', '--', '20602952984', '', '', 'CAL.NAVARRA NRO. 376 DPTO. 202 URB. MAYORAZGO CHICO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35082', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35083', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35090', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35091', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35093', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35094', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35097', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35098', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35100', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35102', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35104', NULL, 'FORTECON S.A.C.', '--', '20608328581', '', '', 'PJ. LA BOMBONERA LOTE. I60 LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35106', NULL, 'CUYA MOLINA PEDRO ISMAEL', '--', '10726689852', '', '', 'CALLE SAN LUIS MZ E LOTE 5 -INFANTAS S.MP.', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35107', NULL, 'CUYA MOLINA PEDRO ISMAEL', '--', '10726689852', '', '', 'CALLE SAN LUIS MZ E LOTE 5 -INFANTAS S.MP.', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35108', NULL, 'CUYA MOLINA PEDRO ISMAEL', '--', '10726689852', '', '', 'CALLE SAN LUIS MZ E LOTE 5 -INFANTAS S.MP.', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35109', NULL, 'CUYA MOLINA PEDRO ISMAEL', '--', '10726689852', '', '', 'CALLE SAN LUIS MZ E LOTE 5 -INFANTAS S.MP.', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35110', NULL, 'CUYA MOLINA PEDRO ISMAEL', '--', '10726689852', '', '', 'CALLE SAN LUIS MZ E LOTE 5 -INFANTAS S.MP.', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35111', NULL, 'CUYA MOLINA PEDRO ISMAEL', '--', '10726689852', '', '', 'CALLE SAN LUIS MZ E LOTE 5 -INFANTAS S.MP.', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35113', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35114', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35115', NULL, 'IMPORTADORA SUMAJ S.R.L.', '--', '20603516959', '', '', 'CAL.LAS ORTIGAS NRO. 1759 URB. SAN HILARION ET. DOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35116', NULL, 'IMPORTADORA SUMAJ S.R.L.', '--', '20603516959', '', '', 'CAL.LAS ORTIGAS NRO. 1759 URB. SAN HILARION ET. DOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35117', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35120', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35121', NULL, 'LUZIE CAR SERVICE E.I.R.L.', '--', '20604242097', '', '', 'AV. LOS INGENIEROS NRO. 205 URB. VULCANO 2DA ETAPA (FRENTE AL COLEGIO LA MERCED) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35127', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35128', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35129', NULL, 'ELECTRO COMERCIAL INTI S.R.L.', '--', '20101190227', '', '', 'JR WASHINGTON 1509-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35130', NULL, 'ELECTRO COMERCIAL INTI S.R.L.', '--', '20101190227', '', '', 'JR WASHINGTON 1509-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35135', NULL, 'LOGISTICA TRAEL S.A.C.', '--', '20601101034', '', '', '----SANTANA MZA. A33 LOTE. 34 URB. CULTURA PERUANA MODERNA (ESPALDA DE LA TECSUP) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35136', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35137', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35138', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35139', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35140', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35141', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35142', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35143', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35146', NULL, 'COESTI S.A.', '--', '20127765279', '', '', 'AV. CIRCUNVALACION DEL CLUB GOLF LOS INCAS NRO. 134 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE A PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35147', NULL, 'COESTI S.A.', '--', '20127765279', '', '', 'AV. CIRCUNVALACION DEL CLUB GOLF LOS INCAS NRO. 134 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE A PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35148', NULL, 'COESTI S.A.', '--', '20127765279', '', '', 'AV. CIRCUNVALACION DEL CLUB GOLF LOS INCAS NRO. 134 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE A PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35156', NULL, 'FUNEGRA MAQUIN JUANA ROSA', '--', '10060698401', '', '', 'COOPERATIVA MIRAFLORES MZ I LOTE 18 FLOR DE ABANCAY -RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35157', NULL, 'FUNEGRA MAQUIN JUANA ROSA', '--', '10060698401', '', '', 'COOPERATIVA MIRAFLORES MZ I LOTE 18 FLOR DE ABANCAY -RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35159', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35162', NULL, 'CASTRO BERROCAL ELIZABETH GUISELA', '--', '10096074561', '', '', 'AV PERU 2469 URB. SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35168', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35171', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35172', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35173', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35174', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35175', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35177', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35182', NULL, 'asociacion estella maris', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35183', NULL, 'asociacion estella maris', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35184', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35192', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35194', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35195', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35199', NULL, 'CASTAGNINO PRPICH LUCIA GISSELLA', '--', '10102629545', '', '', 'JR MARIANO REDONDO 2637- UR LOS CIPRECES -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35200', NULL, 'CASTAGNINO PRPICH LUCIA GISSELLA', '--', '10102629545', '', '', 'JR MARIANO REDONDO 2637- UR LOS CIPRECES -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35201', NULL, 'CASTAGNINO PRPICH LUCIA GISSELLA', '--', '10102629545', '', '', 'JR MARIANO REDONDO 2637- UR LOS CIPRECES -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35202', NULL, 'CASTAGNINO PRPICH LUCIA GISSELLA', '--', '10102629545', '', '', 'JR MARIANO REDONDO 2637- UR LOS CIPRECES -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35206', NULL, 'GARAY CIPRIANO DE VILLANUEVA CARLOTA', '--', '10072783960', '', '', 'CALLE LOS CIPRECIOS 245- REMANZO LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35207', NULL, 'GARAY CIPRIANO DE VILLANUEVA CARLOTA', '--', '10072783960', '', '', 'CALLE LOS CIPRECIOS 245- REMANZO LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35208', NULL, 'GARAY CIPRIANO DE VILLANUEVA CARLOTA', '--', '10072783960', '', '', 'CALLE LOS CIPRECIOS 245- REMANZO LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35209', NULL, 'MONTALVO BLAS GOYA', '--', '10158523359', '', '', 'AV ESCARDO 396- SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35210', NULL, 'MONTALVO BLAS GOYA', '--', '10158523359', '', '', 'AV ESCARDO 396- SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35211', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35212', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35214', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35216', NULL, 'RENACER SALUD E.I.R.L.', '--', '20562753479', '', '', 'AV. 13 DE ENERO NRO. 1783 URB. LAS FLORES 78 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35217', NULL, 'RENACER SALUD E.I.R.L.', '--', '20562753479', '', '', 'AV. 13 DE ENERO NRO. 1783 URB. LAS FLORES 78 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35218', NULL, 'RENACER SALUD E.I.R.L.', '--', '20562753479', '', '', 'AV. 13 DE ENERO NRO. 1783 URB. LAS FLORES 78 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35229', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35230', NULL, 'JOHNSON OROZCO ANDRES IVAN', '--', '10074668726', '', '', 'AV  MARISCAL CACERES 576 - MIEAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35234', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35235', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35236', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35237', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35240', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35241', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35242', NULL, 'GUTIERREZ VICENTE JESSICA VIOLETA', '--', '10718359258', '', '', 'CALLE ANTARES N 285 SOL DE VITARTE ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35251', NULL, 'DAZA SALAS MARIA LUISA', '--', '10076113802', '', '', 'CALLE ANDROMEDA MZ H 4 LT 29  URB MATELLINI - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35256', NULL, 'INVERSIONES PERULLEM S.A.C.', '--', '20602302891', '', '', 'JR. CORONEL FRANCISCO BOLOGNESI NRO. 304 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35257', NULL, 'INVERSIONES PERULLEM S.A.C.', '--', '20602302891', '', '', 'JR. CORONEL FRANCISCO BOLOGNESI NRO. 304 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35258', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35263', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35264', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35268', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35269', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35275', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35277', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35278', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35279', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35280', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35281', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35282', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35283', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35284', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35285', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35286', NULL, 'MASTERPLAN CRISTALES DE SEGURIDAD S.A.C.', '--', '20392740270', '', '', 'AV. SANTA ROSA DE LIMA MZA. F LOTE. 47 ASOC.LOS PINOS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35287', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35288', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35289', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35291', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35292', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35294', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35295', NULL, 'REPRESENTACIONES FLAMIVI SOCIEDAD COMERCIAL DE RESPONSA', '--', '20372309360', '', '', 'JR. ELIAS ASCUEZ NRO. 281 URB. EL BOSQUE LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35297', NULL, 'SOLUCIONES INTEGRALES DE MARKETING SOCIEDAD ANONIMA CER', '--', '20507827196', '', '', 'AV. MARISCAL LA MAR NRO. 1209 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35300', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35304', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35305', NULL, 'MUÑOZ SANTIAGO EDUARDO GERMAN', '--', '10040314119', '', '', 'JR JUNIN S/N HUALLAY - CERRO PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35306', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35308', NULL, 'BENITES DE TREJO EMILIANA', '--', '10153880633', '', '', 'MERCADO SAN PEDRO DE MALA PUESTO 118 - MALA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35309', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35310', NULL, 'BENITES DE TREJO EMILIANA', '--', '10153880663', '', '', 'MERCADO SAN PEDRO DE MALA PUESTO 118 - MALA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35311', NULL, 'N.J.L TOPOGRAFIA & INGENIERIA S.A.C.', '--', '20603241054', '', '', 'CAL.J MZA. F1 LOTE. 11 URB. PACHACAMAC BARRIO 1 SECTOR 1 (ALT. COLEGIO HOGAR MONTESORI) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35312', NULL, 'VELARDE GARCIA ROGER ELADIO', '--', '10421830466', '', '', 'MZ L LOTE 06 URB JOSE L . TUTELA  TUMBES - TUMBES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35318', NULL, 'A&F INVERSIONES GENERALES Y SERVICIOS NANDITO E.I.R.L.', '--', '20604545715', '', '', 'AV. LEONCIO PRADO NRO. 743 (FRENTE DE COMERCIAL AGROFER WILLIAMS) SAN MARTIN - TOCACHE - UCHIZA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35319', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35330', NULL, 'NEOMEDICA E.I.R.L.', '--', '20546424317', '', '', 'AV. LARCO NRO. 743 INT. 801 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35332', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35337', NULL, 'MAGUS INVERSIONES S.A.C.', '--', '20552013159', '', '', 'AV. LOS LIRIOS NRO. 301 URB. ENTEL LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35341', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35345', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35346', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35347', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35348', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35349', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35350', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35351', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35352', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35353', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35356', NULL, 'LOPEZ RAMIREZ JEREMIAS JOSE', '--', '10316168685', '', '', 'JR JOSE DE SUCRE  492  HUARAZ  - ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35357', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35367', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35368', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35374', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35375', NULL, 'G & E INNOVA SERVICE TECHNOLOGY S.A.C.', '--', '20603839774', '', '', 'CAL.INCA MANCO NRO. 547 (ALT. CDRA 6 DE AV FRANCISCO PIZARRO) LIMA - LIMA - RIM', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35376', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35377', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35392', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35394', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35395', NULL, 'PROINDELEC S.A.C.', '--', '20600816790', '', '', 'JR. SAN GABRIEL NRO. 484 URB. SAN CARLOS ET. UNO (CDRA2 SAN CARLOS ALT IGLESIA MORMONES) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35397', NULL, 'GRUPO DE INGENIERIA & PROCESOS INDUSTRIALES DEL PERU S.', '--', '20602091148', '', '', 'PJ. BELGICA NRO. 3 DPTO. 102 U.V. MATUTE (ALT. CDRA 12 DEL JR. ABTAO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35399', NULL, 'COCISA PERU S.A.C.', '--', '20606850469', '', '', 'MZA. E LOTE. 05 A.H. PASAJE LA CRUZ LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35401', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35402', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35403', NULL, 'ICHIRO SAC', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35407', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35408', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35409', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35410', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35414', NULL, 'RODRIGUEZ ORE RUTH ESTHER', '--', '10718312219', '', '', 'PUENTE REYTHER LA MERCED CHANCHAMAYO -JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35415', NULL, 'RODRIGUEZ ORE RUTH ESTHER', '--', '10718312219', '', '', 'PUENTE REYTHER LA MERCED CHANCHAMAYO -JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35416', NULL, 'RODRIGUEZ ORE RUTH ESTHER', '--', '10718312219', '', '', 'PUENTE REYTHER LA MERCED CHANCHAMAYO -JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35417', NULL, 'RODRIGUEZ ORE RUTH ESTHER', '--', '10718312219', '', '', 'PUENTE REYTHER LA MERCED CHANCHAMAYO -JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35418', NULL, 'ALBERTO GONZALES', '80014174', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35419', NULL, 'ALBERTO GONZALES', '80014174', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35420', NULL, 'ALBERTO GONZALES', '80014174', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35422', NULL, 'NEGOCIACIONES MELCHOR EMPRESA INDIVIDUAL DE RESPONSABIL', '--', '20606697610', '', '', 'AV. MICAELA BASTIDAS NRO. 280 URB. PICHANAKI (A MEDIA CUADRA DEL JR. LIMA) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35423', NULL, 'NEGOCIACIONES MELCHOR EMPRESA INDIVIDUAL DE RESPONSABIL', '--', '20606697610', '', '', 'AV. MICAELA BASTIDAS NRO. 280 URB. PICHANAKI (A MEDIA CUADRA DEL JR. LIMA) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35424', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35425', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35426', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35427', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35428', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35429', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35430', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35431', NULL, 'TURISMO NUEVA ERA S.A.C.', '--', '20544224311', '', '', 'JR. 2 DE MAYO NRO. 1053 URB. TROPICAL (ALT. 38 AV. LA MARINA LA PERLA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35432', NULL, 'TURISMO NUEVA ERA S.A.C.', '--', '20544224311', '', '', 'JR. 2 DE MAYO NRO. 1053 URB. TROPICAL (ALT. 38 AV. LA MARINA LA PERLA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35433', NULL, 'TURISMO NUEVA ERA S.A.C.', '--', '20544224311', '', '', 'JR. 2 DE MAYO NRO. 1053 URB. TROPICAL (ALT. 38 AV. LA MARINA LA PERLA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35434', NULL, 'TURISMO NUEVA ERA S.A.C.', '--', '20544224311', '', '', 'JR. 2 DE MAYO NRO. 1053 URB. TROPICAL (ALT. 38 AV. LA MARINA LA PERLA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35435', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35436', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35438', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35439', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35440', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35442', NULL, 'ARANA HERNANDEZ JACQUELINE DEL ROSARIO', '40705370', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35450', NULL, 'BENITES RAMIREZ BERTHA ELENA', '--', '10033164322', '', '', 'JR CANTERAC 152 INT 404-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35451', NULL, 'BENITES RAMIREZ BERTHA ELENA', '--', '10033164322', '', '', 'JR CANTERAC 152 INT 404-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35455', NULL, 'ASOCIACION DE COMERCIANTES PROPIETARIOS FRONTERAS UNIDA', '--', '20458462454', '', '', 'JR. MONTEVIDEO NRO. 766 (ALT.ESPALDA AV. GRAU CDRA.5) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35456', NULL, 'SUCESION INDIVISA BASTIDAS UCEDA PASCUAL', '--', '17107464930', '', '', 'JR. QUILCA NRO. 273 (A UNA CUDRA DE WILSON) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35458', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35461', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35462', NULL, 'KAMILL E.I.R.L.', '--', '20600213866', '', '', 'AV. LAS PALMERAS MZA. E LOTE. 5 ASC. LOS TULIPANES (2 CDRAS DEL PARQUE ZONAL NARANJAL) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35464', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35465', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35466', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35468', NULL, 'INFUSIONES ANDINAS S.A.C.', '--', '20608103458', '', '', 'AV. LOS CACTUS MZA. F LOTE. 93 URB. LOS QUENUALES (A 2 CUADRAS DE ESSALUD) ANCASH - HUARAZ - HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35472', NULL, 'NEGOCIOS E INVERSIONES REYES SOCIEDAD COMERCIAL DE RESP', '--', '20521564246', '', '', 'MZA. U LOTE. 29 URB. ALAMEDA DE ATE ETAPA DOS (PARADERO SURGE -AV LOS VIRREYES) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35473', NULL, 'NEGOCIOS E INVERSIONES REYES SOCIEDAD COMERCIAL DE RESP', '--', '20521564246', '', '', 'MZA. U LOTE. 29 URB. ALAMEDA DE ATE ETAPA DOS (PARADERO SURGE -AV LOS VIRREYES) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35474', NULL, 'NEGOCIOS E INVERSIONES REYES SOCIEDAD COMERCIAL DE RESP', '--', '20521564246', '', '', 'MZA. U LOTE. 29 URB. ALAMEDA DE ATE ETAPA DOS (PARADERO SURGE -AV LOS VIRREYES) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35475', NULL, 'NEGOCIOS E INVERSIONES REYES SOCIEDAD COMERCIAL DE RESP', '--', '20521564246', '', '', 'MZA. U LOTE. 29 URB. ALAMEDA DE ATE ETAPA DOS (PARADERO SURGE -AV LOS VIRREYES) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35476', NULL, 'NEGOCIOS E INVERSIONES REYES SOCIEDAD COMERCIAL DE RESP', '--', '20521564246', '', '', 'MZA. U LOTE. 29 URB. ALAMEDA DE ATE ETAPA DOS (PARADERO SURGE -AV LOS VIRREYES) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35477', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35481', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35483', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35484', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35485', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35486', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35487', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35488', NULL, 'NEGOCIOS E INVERSIONES REYES SOCIEDAD COMERCIAL DE RESP', '--', '20521564246', '', '', 'MZA. U LOTE. 29 URB. ALAMEDA DE ATE ETAPA DOS (PARADERO SURGE -AV LOS VIRREYES) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35489', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35490', NULL, 'PROMOTORA J Y V S.A.C.', '--', '20554090720', '', '', '----SECTOR 1 MZA. G LOTE. 13 GRU. 7 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35491', NULL, 'PROMOTORA J Y V S.A.C.', '--', '20554090720', '', '', '----SECTOR 1 MZA. G LOTE. 13 GRU. 7 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35492', NULL, 'PROMOTORA J Y V S.A.C.', '--', '20554090720', '', '', '----SECTOR 1 MZA. G LOTE. 13 GRU. 7 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35493', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35495', NULL, 'PATRICIA PATRICIA ATENCIONES Y ENCANTAMIENTOS SOCIEDAD ', '--', '20546661017', '', '', 'JR. PEREZ DE TUDELA NRO. 3289 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35496', NULL, 'PATRICIA PATRICIA ATENCIONES Y ENCANTAMIENTOS SOCIEDAD ', '--', '20546661017', '', '', 'JR. PEREZ DE TUDELA NRO. 3289 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35497', NULL, 'PATRICIA PATRICIA ATENCIONES Y ENCANTAMIENTOS SOCIEDAD ', '--', '20546661017', '', '', 'JR. PEREZ DE TUDELA NRO. 3289 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35498', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35499', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35500', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35501', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35502', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35503', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35505', NULL, 'PAITA ROJAS GILMER LUI', '--', '10208972010', '', '', 'PARIACHI MZ H2 LT 11 ATE - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35515', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35516', NULL, 'COMERCIAL LUJORLUC S.R.L.- LUJORLUC SRL', '--', '20514344559', '', '', 'CAL.1 MZA. A LOTE. 03 ASC. LOS ANDES (PRDRO PUENTE CAMOTE) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35517', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35518', NULL, 'COMERCIAL LUJORLUC S.R.L.- LUJORLUC SRL', '--', '20514344559', '', '', 'CAL.1 MZA. A LOTE. 03 ASC. LOS ANDES (PRDRO PUENTE CAMOTE) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35522', NULL, 'PROYECTOS Y CONSTRUCCIONES LUGANO S.A.', '--', '20507028986', '', '', 'AV. 2 DE MAYO NRO. 516 DPTO. 507 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35525', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35527', NULL, 'J & P MANIOFER S.A.C.', '--', '20602384765', '', '', 'JR. HUAROCHIRI NRO. 550 INT. S105 Z.I. MALVINAS (C.C. PLAZA FERRETERO) LIMA - LIMA - LIM', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35530', NULL, 'INGENIERIA ENERGETICA PERU S.A.C.', '--', '20544348982', '', '', 'CAL.OTTO MULLER NRO. 162 (AV.SAN BORJA SUR CON FRAY LUIS DE LEON) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35531', NULL, 'INGENIERIA ENERGETICA PERU S.A.C.', '--', '20544348982', '', '', 'CAL.OTTO MULLER NRO. 162 (AV.SAN BORJA SUR CON FRAY LUIS DE LEON) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35532', NULL, 'INGENIERIA ENERGETICA PERU S.A.C.', '--', '20544348982', '', '', 'CAL.OTTO MULLER NRO. 162 (AV.SAN BORJA SUR CON FRAY LUIS DE LEON) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35533', NULL, 'INGENIERIA ENERGETICA PERU S.A.C.', '--', '20544348982', '', '', 'CAL.OTTO MULLER NRO. 162 (AV.SAN BORJA SUR CON FRAY LUIS DE LEON) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35541', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35542', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35543', NULL, 'VJ. FERRIMPORT E.I.R.L.', '--', '20556303135', '', '', 'CAL.BARRANQUITA NRO. 1035 DPTO. 301B ZARUMILLA (ALT CDRA 13 AV PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35545', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35546', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35547', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35557', NULL, 'FATIMA', '40372153', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35558', NULL, 'FATIMA', '40372153', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35559', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35560', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35565', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35566', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35567', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35569', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35573', NULL, 'SUYON CORILLOCLLA ANTHONY', '--', '10725592928', '', '', 'JR PUCALLPA 284 - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35574', NULL, 'DESNIVEL PERU SOCIEDAD ANONIMA CERRADA', '--', '20546135803', '', '', 'AV. LARCO NRO. 687 INT. 207 (CRUCE CON BENAVIDES) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35577', NULL, 'IMPORTADORA MISSI S.A.C.', '--', '20454591446', '', '', 'CAL.ALTO DE LA LUNA NRO. 117 DPTO. B CERCADO (A MEDIA CUADRA DE MERCADO SAN CAMILO) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35578', NULL, 'IMPORTADORA MISSI S.A.C.', '--', '20454591446', '', '', 'CAL.ALTO DE LA LUNA NRO. 117 DPTO. B CERCADO (A MEDIA CUADRA DE MERCADO SAN CAMILO) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35579', NULL, 'IMPORTADORA MISSI S.A.C.', '--', '20454591446', '', '', 'CAL.ALTO DE LA LUNA NRO. 117 DPTO. B CERCADO (A MEDIA CUADRA DE MERCADO SAN CAMILO) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35580', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35581', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35582', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35584', NULL, '\"CANTUTA CONSULTORES Y EJECUTORES S.A.C.\"', '--', '20601372691', '', '', 'MZA. J LOTE. 12 URB. ENACE VISTA ALEGRE AYACUCHO - HUAMANGA - CARMEN ALTO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35588', NULL, 'PAREDES VEGA OMAR ENRRIQUE', '--', '10445762356', '', '', 'AV LAS AMERICAS 1510-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35589', NULL, 'PAREDES VEGA OMAR ENRRIQUE', '--', '10445762356', '', '', 'AV LAS AMERICAS 1510-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35590', NULL, 'PAREDES VEGA OMAR ENRRIQUE', '--', '10445762356', '', '', 'AV LAS AMERICAS 1510-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35592', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35593', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35594', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35595', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35605', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35607', NULL, 'SAQ SUQTA E.I.R.L.', '--', '20547450281', '', '', 'CAL.5 MZA. E LOTE. 27 URB. LOS JAZMINES 4TA ETAPA (ESPALDA DEL C.E. LOS JAZMINES.) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35608', NULL, 'SAQ SUQTA E.I.R.L.', '--', '20547450281', '', '', 'CAL.5 MZA. E LOTE. 27 URB. LOS JAZMINES 4TA ETAPA (ESPALDA DEL C.E. LOS JAZMINES.) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35613', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35615', NULL, 'PAJUELO BRUNO SARA YANETT', '--', '10727787661', '', '', 'JR LAMPA 1125 - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35616', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35617', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35621', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35626', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35627', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35628', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35629', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35630', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35631', NULL, 'INMOBILIARIA BIENVENIDOS A MI CASA EMPRESA INDIVIDUAL D', '--', '20601018862', '', '', 'JR. 28 DE JULIO NRO. 206 BAR. PARAGSHA (2 CASAS AL COSTADO DE LA TIENDA SABATAJA) PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35632', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35637', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35639', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35640', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35641', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35642', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35643', NULL, 'JC - DC CONTRATISTAS S.A.C.', '--', '20557468693', '', '', 'JR. E. LEON GARCIA NRO. 137 DPTO. 1 URB. S. CATALINA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35644', NULL, 'JC - DC CONTRATISTAS S.A.C.', '--', '20557468693', '', '', 'JR. E. LEON GARCIA NRO. 137 DPTO. 1 URB. S. CATALINA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35652', NULL, 'DISCADLICZA E.I.R.L.', '--', '20422483048', '', '', 'JR. MANUEL IRRIBARREN NRO. 1280 DPTO. A204 (EDIFICIO 10/ CONDOMINIO ARAMBURU II) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35653', NULL, 'DISCADLICZA E.I.R.L.', '--', '20422483048', '', '', 'JR. MANUEL IRRIBARREN NRO. 1280 DPTO. A204 (EDIFICIO 10/ CONDOMINIO ARAMBURU II) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35654', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35655', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35656', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35664', NULL, 'IMCONS SECURITY AND SERVICE SOCIEDAD ANONIMA CERRADA - ', '--', '20604400342', '', '', 'MZA. C LOTE. 25 URB. PALMERAS DE CARABAYLLO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35665', NULL, 'IMCONS SECURITY AND SERVICE SOCIEDAD ANONIMA CERRADA - ', '--', '20604400342', '', '', 'MZA. C LOTE. 25 URB. PALMERAS DE CARABAYLLO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35666', NULL, 'IMCONS SECURITY AND SERVICE SOCIEDAD ANONIMA CERRADA - ', '--', '20604400342', '', '', 'MZA. C LOTE. 25 URB. PALMERAS DE CARABAYLLO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35668', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35669', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35676', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35677', NULL, 'LIMA T LLAMA S.A.C.', '', '20601227364', '', '', 'CAL.FELIX DIBOS NRO. 820 INT. 1002 LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35678', NULL, 'VARIOS', '00000000', '', '', '', '', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35679', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35682', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35683', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35684', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35685', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35686', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35687', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35688', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35691', NULL, 'CORREA CROSE JESSICA MAGALI', '--', '10258050385', '', '', 'URB.LAS 200 MILLAS MZ M LOTE 19 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35692', NULL, 'CORREA CROSE JESSICA MAGALI', '--', '10258050385', '', '', 'URB.LAS 200 MILLAS MZ M LOTE 19 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35693', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35694', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35695', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35696', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35700', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35701', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35705', NULL, 'GUTIERREZ PEREZ MABEL ROCIO', '--', '10075168344', '', '', 'COTABAMBAS 469  CERCADO DE LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35715', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35716', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35717', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35720', NULL, 'FLOR DE MARIA', '70201937', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35729', NULL, 'TRANSPORT SECURITY CO\'PSS S.A.C.', '--', '20565272901', '', '', 'CAL.1 MZA. F LOTE. 04 APV. LAS PONCIANAS II ETAPA (ALT.TOTTUS CANTA CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35730', NULL, 'TRANSPORT SECURITY CO\'PSS S.A.C.', '--', '20565272901', '', '', 'CAL.1 MZA. F LOTE. 04 APV. LAS PONCIANAS II ETAPA (ALT.TOTTUS CANTA CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35731', NULL, 'TRANSPORT SECURITY CO\'PSS S.A.C.', '--', '20565272901', '', '', 'CAL.1 MZA. F LOTE. 04 APV. LAS PONCIANAS II ETAPA (ALT.TOTTUS CANTA CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35732', NULL, 'TRANSPORT SECURITY CO\'PSS S.A.C.', '--', '20565272901', '', '', 'CAL.1 MZA. F LOTE. 04 APV. LAS PONCIANAS II ETAPA (ALT.TOTTUS CANTA CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35733', NULL, 'TRANSPORT SECURITY CO\'PSS S.A.C.', '--', '20565272901', '', '', 'CAL.1 MZA. F LOTE. 04 APV. LAS PONCIANAS II ETAPA (ALT.TOTTUS CANTA CALLAO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35734', NULL, 'BENITES DE TREJO EMILIANA', '', '10153880633', '', '', '-', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35737', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35739', NULL, 'CARMEN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35740', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35741', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35742', NULL, 'DE LA CRUZ LEVANO JOSE FIDEL', '21811279', '', '', '', 'CHINCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35745', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35746', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35748', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35751', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35752', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35753', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35754', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35758', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35761', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35762', NULL, 'SANTILLAN LLANOS BLANCA ROSA', '--', '10322873277', '', '', 'JR VICTORIA 133- SANMARCOS- HUARI -ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35765', NULL, 'SONIA ALFARO ENCISO', '41127264', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35766', NULL, 'SONIA ALFARO ENCISO', '41127264', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35768', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35769', NULL, 'LINE TECH E.I.R.L.', '--', '20606232048', '', '', 'CAL.LAS GARDENIAS MZA. J2 LOTE. 01 APV. LOS PORTALES PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35770', NULL, 'LINE TECH E.I.R.L.', '--', '20606232048', '', '', 'CAL.LAS GARDENIAS MZA. J2 LOTE. 01 APV. LOS PORTALES PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35774', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35776', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35777', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35778', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35780', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35781', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35782', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35783', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35784', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35790', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35791', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35792', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35793', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35794', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35795', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35797', NULL, 'SULCA HOYOS GLADYS VIOLETA', '--', '10409914115', '', '', 'AV REPUBLICA DE POLONIA 606 URB LOS PINOS SJL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35798', NULL, 'SULCA HOYOS GLADYS VIOLETA', '--', '10409914115', '', '', 'AV REPUBLICA DE POLONIA 606 URB LOS PINOS SJL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35800', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35804', NULL, 'LICORERIA MINIMARKET RIVAS S.R.L.', '--', '20514469092', '', '', 'MZA. G1 LOTE. 14 URB. EL CARMEN (ALT. KM 42.5 ANTIGUA PANAM. SUR) LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35805', NULL, 'LICORERIA MINIMARKET RIVAS S.R.L.', '--', '20514469092', '', '', 'MZA. G1 LOTE. 14 URB. EL CARMEN (ALT. KM 42.5 ANTIGUA PANAM. SUR) LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35806', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35808', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35809', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35813', NULL, 'INVERSIONES MISKY LLAQTA E.I.R.L.', '--', '20603461526', '', '', 'OTR.SECTOR LA RINCONADA NRO. S/N OTR. HUERTAPATA (SECTOR LA RINCONADA) CUSCO - URUBAMBA - URUBAMBA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35817', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35824', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35828', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35829', NULL, 'POSHINI ORGANICS SOCIEDAD COMERCIAL DE RESPONSABILIDAD ', '--', '20573882939', '', '', 'AV. MICAELA BASTIDAS NRO. 515 URB. SATIPO (COSTADO DE LA GRAFICA BALLONA) JUNIN - SATIPO - SATIPO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35830', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35832', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35833', NULL, 'JESUS HUALPA', '--', '', '', '', 'PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35834', NULL, 'JESUS HUALPA', '--', '', '', '', 'PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35835', NULL, 'JESUS HUALPA', '--', '', '', '', 'PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35836', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35837', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35838', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35839', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35840', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35841', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35842', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35843', NULL, 'BODEGA BAZAR LA FAMILIA S.R.L', '--', '20471733025', '', '', 'AV. URUBAMBA NRO. 417 URB. 27 DE ABRIL 2 ET. (A 2 CDAS. DEL OVALO DE SANTA ANITA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35844', NULL, 'GASTRONOMIA DEL CENTRO S.A.C.', '--', '20607905933', '', '', 'AV. BOLIVIA NRO. 126 CERCADO (2 DO PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35845', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35848', NULL, 'LLAJA MARIN KYARA ROSSELIT', '--', '10477023059', '', '', 'TARAPACA 1011 - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35854', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35855', NULL, 'COMUNICARTE CONSULTORES Y EDITORES S.A.C', '', '20563785889', '', '', 'CAL.CORONEL DOMINGO CASANOVA NRO. 444 DPTO. 502 URB. LOBATON LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35857', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35858', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35861', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35862', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35863', NULL, 'EL EMPORIO DEL HOGAR E.I.R.L', '--', '20608402731', '', '', 'AV. VICTOR RAUL NRO. 447 LA LIBERTAD - VIRU - CHAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35864', NULL, 'jaime romero robles', '40730046', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35865', NULL, 'APROPISCO SOC. ANON. CERRADA', '', '20409785264', '', '', 'CAR.A PARACAS KM. 16.5 INT. 1-A (DENTRO DE PLANTA PESQUERA DIAMANTE SUR) ICA - PISCO - PARACAS', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35866', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35870', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35871', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35872', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35873', NULL, 'NEOMEDICA E.I.R.L.', '--', '20546424317', '', '', 'AV. LARCO NRO. 743 INT. 801 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35880', NULL, 'TORRES QUISPE SOFIA', '--', '10075588572', '', '', 'LA RINCONADA PARCELA 23 A  LOTE 12 - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35883', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35886', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35887', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35894', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35895', NULL, 'LUANITA BELLAS POR SIEMPRE E.I.R.L.', '--', '20601560403', '', '', 'CAL.LOS SAUCES MZA. A1 LOTE. 08 P.J. SAN CARLOS LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35897', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35898', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35901', NULL, 'UCHAZARA UCHASARA LIZBETH JAQUELINE', '--', '10457995810', '', '', 'AV LA CULTURA 701 PASAJE HUANCAYO N 25 MERCADO PRODUCTORES DE SANTA ANITA  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35902', NULL, 'MÜLLER AGÜERO GÜNTER OTTO', '--', '10094089684', '', '', 'JR SANTA CRUZ 330-VMT', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35905', NULL, 'JOSE EDUARDO  GARCIA PINILLOS', '--', '10062554806', '', '', 'CALLE 44 MZ J 7 LOTE 25 URB MARISCAL CACERES SAN JUAN DE LURIGANCHO - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35906', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35907', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35908', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35909', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35910', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35911', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35912', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35913', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35914', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35915', NULL, 'BIOX METAL INGENIEROS SOCIEDAD ANONIMA CERRADA - BIOX M', '--', '20520519085', '', '', 'CAL.LISBOA NRO. 148 URB. LOS PORTALES DE JAVIER PRADO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35917', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35918', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35923', NULL, 'CSE COST AND SYSTEMS ENGINEERING E.I.R.L.', '--', '20545457033', '', '', 'AV. 2 DE MAYO NRO. 516 DPTO. 201 (EDIFICIO B) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35927', NULL, 'ANTUNEZ RAMIREZ GISSELLI', '--', '10401978220', '', '', 'CALLE ISLA BALLEN AS/N PLAY ARICA MODULO N°5-LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35928', NULL, 'ANTUNEZ RAMIREZ GISSELLI', '--', '10401978220', '', '', 'CALLE ISLA BALLENA S/N PLAYA ARICA MODULO N°5-LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35929', NULL, 'ANTUNEZ RAMIREZ GISSELLI', '--', '10401978220', '', '', 'CALLE ISLA BALLENA S/N PLAYA ARICA MODULO N°5-LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35930', NULL, 'ANTUNEZ RAMIREZ GISSELLI', '--', '10401978220', '', '', 'CALLE ISLA BALLENA S/N PLAYA ARICA MODULO N°5-LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35931', NULL, 'ANTUNEZ RAMIREZ GISSELLI', '--', '10401978220', '', '', 'CALLE ISLA BALLENA S/N PLAYA ARICA MODULO N°5-LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35932', NULL, 'ACEROS Y MONTAJES MECANICOS SOCIEDAD ANONIMA CERRADA', '--', '20604040389', '', '', 'AV. NICOLAS DE AYLLON NRO. 3256 COO. 27 DE ABRIL LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35933', NULL, 'ACEROS Y MONTAJES MECANICOS SOCIEDAD ANONIMA CERRADA', '--', '20604040389', '', '', 'AV. NICOLAS DE AYLLON NRO. 3256 COO. 27 DE ABRIL LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35934', NULL, 'ACEROS Y MONTAJES MECANICOS SOCIEDAD ANONIMA CERRADA', '--', '20604040389', '', '', 'AV. NICOLAS DE AYLLON NRO. 3256 COO. 27 DE ABRIL LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35935', NULL, 'ACEROS Y MONTAJES MECANICOS SOCIEDAD ANONIMA CERRADA', '--', '20604040389', '', '', 'AV. NICOLAS DE AYLLON NRO. 3256 COO. 27 DE ABRIL LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35940', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35944', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35945', NULL, 'ETRIATH EIRL', '--', '20510352832', '', '', 'PASAJE SOR ANGELICA 155 SAN MARTIN DE PORRES - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35946', NULL, 'dennys quispe suñiga', '71926943', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35952', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35953', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35956', NULL, 'KEBEYA FASHION E.I.R.L.', '--', '20507815937', '', '', 'JR. GAMARRA NRO. 610 (ESPALDA DE PARQUE CANEPA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35957', NULL, 'KEBEYA FASHION E.I.R.L.', '--', '20507815937', '', '', 'JR. GAMARRA NRO. 610 (ESPALDA DE PARQUE CANEPA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35958', NULL, 'KEBEYA FASHION E.I.R.L.', '--', '20507815937', '', '', 'JR. GAMARRA NRO. 610 (ESPALDA DE PARQUE CANEPA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35960', NULL, 'HOSTAL BOND E.I.R.L', '--', '20553887411', '', '', 'AV. PETIT THOUARS NRO. 3451 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35963', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35969', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35970', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35971', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35972', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35974', NULL, 'AUCCASI GAMBOA ROSA DOMITILA', '--', '10254696248', '', '', 'AV VENEZUELA 3176 TIENDA 170 URB LOS  CIPRECES - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35975', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35976', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35978', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35979', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35980', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35993', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35995', NULL, 'GIJ E.I.R.L.', '', '20520653059', '', '', 'CAL.MONSEÑOR JORGE DINTILHAC NRO. 307 URB. PANDO ET. DOS (3ER PISO) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('35999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36000', NULL, 'ORBE GOURMET E.I.R.L', '--', '20545712084', '', '', 'CAL.MONTE CASINO NRO. 123 DPTO. 202 (ENTRE LA AV. REYNALDO VIVANCO CON MONTE) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36001', NULL, 'ORBE GOURMET E.I.R.L', '--', '20545712084', '', '', 'CAL.MONTE CASINO NRO. 123 DPTO. 202 (ENTRE LA AV. REYNALDO VIVANCO CON MONTE) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36002', NULL, 'ORBE GOURMET E.I.R.L', '--', '20545712084', '', '', 'CAL.MONTE CASINO NRO. 123 DPTO. 202 (ENTRE LA AV. REYNALDO VIVANCO CON MONTE) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36003', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36004', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36007', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36010', NULL, 'A LA BRASA ASOCIADOS S.A.C.', '--', '20608455338', '', '', 'AV. CAMINOS DEL INCA NRO. 758 URB. RESIDENCIAL HIGUERETA LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36011', NULL, 'INVERSIONES D\'CARBON S.A.C.', '--', '20492995593', '', '', 'AV. DE LA MARINA NRO. 665 URB. BENJAMIN DOIG LOSSIO (A 1 CDRA COMPAÑIA BOMBEROS DE LA PERLA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36013', NULL, 'UMSO PERU S.A.C.', '--', '20564209831', '', '', 'AV. PEDRO VILCAPAZA NRO. 203 (1P LOCL EX INSTITUT AMERICANA ALT SENATI) CUSCO - CUSCO - WANCHAQ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36016', NULL, 'FAENAS COMERCIALES S R LTDA', '--', '20101637060', '', '', 'PJ. JOSE UGARTECHE NRO. 149 URB. GRUMETE MEDINA (ALT CDRA 11 DE SEPARADORA INDUSTRIAL) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36017', NULL, 'FAENAS COMERCIALES S R LTDA', '--', '20101637060', '', '', 'PJ. JOSE UGARTECHE NRO. 149 URB. GRUMETE MEDINA (ALT CDRA 11 DE SEPARADORA INDUSTRIAL) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36018', NULL, 'PATRICIA MORI VILLANUEVA', '44774928', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36021', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36022', NULL, 'IJP INDUSTRIAL S.A.C.', '--', '20545569346', '', '', 'AV. JOSE OLAYA NRO. 740 LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36023', NULL, 'IJP INDUSTRIAL S.A.C.', '--', '20545569346', '', '', 'AV. JOSE OLAYA NRO. 740 LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36026', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36031', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36032', NULL, 'FORTIFLEX S.A.C.', '--', '20520533070', '', '', 'AV. LOS PINOS MZA. I LOTE. 18 ASC. PROPIETARIOS LOTIZACION CHILLON (ENSENADA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36033', NULL, 'FORTIFLEX S.A.C.', '--', '20520533070', '', '', 'AV. LOS PINOS MZA. I LOTE. 18 ASC. PROPIETARIOS LOTIZACION CHILLON (ENSENADA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36034', NULL, 'FORTIFLEX S.A.C.', '--', '20520533070', '', '', 'AV. LOS PINOS MZA. I LOTE. 18 ASC. PROPIETARIOS LOTIZACION CHILLON (ENSENADA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36035', NULL, 'FORTIFLEX S.A.C.', '--', '20520533070', '', '', 'AV. LOS PINOS MZA. I LOTE. 18 ASC. PROPIETARIOS LOTIZACION CHILLON (ENSENADA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36036', NULL, 'FORTIFLEX S.A.C.', '--', '20520533070', '', '', 'AV. LOS PINOS MZA. I LOTE. 18 ASC. PROPIETARIOS LOTIZACION CHILLON (ENSENADA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36037', NULL, 'FORTIFLEX S.A.C.', '--', '20520533070', '', '', 'AV. LOS PINOS MZA. I LOTE. 18 ASC. PROPIETARIOS LOTIZACION CHILLON (ENSENADA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36038', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36039', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36042', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36043', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36044', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36045', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36046', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36047', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36048', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36050', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36051', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36055', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36056', NULL, 'LOAYZA PEREZ MARCO ANTONIO', '--', '10258376272', '', '', 'AV ARGENTINA 639 CERCADO DE LIMA  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36058', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36061', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36069', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36076', NULL, 'STR PERU SERVICIOS S.A.C.', '--', '20607782998', '', '', 'JR. MONTERO ROSAS NRO. 948 DPTO. 203 URB. SANTA BEATRIZ (A MEDIA CDRA DEL PARQUE DE LAS AGUAS) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36077', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36078', NULL, 'RETO CLAVIJO JORGE LUIS', '--', '10443286921', '', '', 'UGARTE 695 - SULLANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36079', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36081', NULL, 'CILINDRO PERUANO SOCIEDAD ANONIMA CERRADA - CILINDRO PE', '--', '20392784561', '', '', 'JR. CATALINO MIRANDA NRO. 158 URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36085', NULL, 'INTERNATIONAL CORPORATION OF OCCUPATIONAL SAFETY AND HE', '--', '20602553788', '', '', '----CANGALLO NRO. 623 DPTO. D P 3 - CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36086', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36087', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36088', NULL, 'CORPORACION SOTA S.A.C.', '--', '20544415680', '', '', 'AV. PERU NRO. 3300 URB. PERU (ALT. DE LA CDRA 33 DE LA AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36089', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36091', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36092', NULL, 'IG INDUSTRIAL E.I.R.L.', '--', '20606722126', '', '', 'AV. MARISCAL SUCRE NRO. 1467 DPTO. 901 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36093', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36096', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36097', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36098', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36102', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36103', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36104', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36106', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36107', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36108', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36110', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36113', NULL, 'QUIN QUINTANILLA GUDDAIVE', '--', '10418861440', '', '', 'JR PILAR LARA 335 -VSM-CARMEN DE LA LEGUA -REYNOSO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36114', NULL, 'QUIN QUINTANILLA GUDDAIVE', '--', '10418861440', '', '', 'JR PILAR LARA 335 -VSM-CARMEN DE LA LEGUA -REYNOSO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36115', NULL, 'QUIN QUINTANILLA GUDDAIVE', '--', '10418861440', '', '', 'JR PILAR LARA 335 -VSM-CARMEN DE LA LEGUA -REYNOSO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36122', NULL, 'REYES PRINCIPE KELVIN MARCELINO', '--', '10708149671', '', '', 'AV ARGENTINA 428 - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36126', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36127', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36128', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36131', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36132', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36133', NULL, 'DANIEL SALCEDO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36136', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36137', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36138', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36139', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36140', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36141', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36142', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36143', NULL, 'LUCRECIA AYALA DIAZ', '44079424', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36147', NULL, 'VASQUEZ LEYVA OSCAR', '--', '10094784391', '', '', 'AV. CALIFORNIA MZC3 LT45 ASC. PALMERAS DE OQUENDO CALLAO-CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36148', NULL, 'VASQUEZ LEYVA OSCAR', '--', '10094784391', '', '', 'AV. CALIFORNIA MZC3 LT45 ASC. PALMERAS DE OQUENDO CALLAO-CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36149', NULL, 'VASQUEZ LEYVA OSCAR', '--', '10094784391', '', '', 'AV. CALIFORNIA MZC3 LT45 ASC. PALMERAS DE OQUENDO CALLAO-CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36150', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36152', NULL, 'INDUSTRIA MIRO S.A.C.', '--', '20607057576', '', '', 'JR. ICA NRO. 386 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36153', NULL, 'INDUSTRIA MIRO S.A.C.', '--', '20607057576', '', '', 'JR. ICA NRO. 386 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36154', NULL, 'INDUSTRIA MIRO S.A.C.', '--', '20607057576', '', '', 'JR. ICA NRO. 386 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36157', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36159', NULL, 'GONZALES BERROSPI HUGO', '--', '10224019811', '', '', 'GARCIA SAENZ 146 - IQUITOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36166', NULL, 'CONSORCIO HUSA S.A.C.', '--', '20605908544', '', '', 'MZA. B LOTE. 11-A A.V. LA ESTRELLA SANTA CLARA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36167', NULL, 'CONSORCIO HUSA S.A.C.', '--', '20605908544', '', '', 'MZA. B LOTE. 11-A A.V. LA ESTRELLA SANTA CLARA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36168', NULL, 'CONSORCIO HUSA S.A.C.', '--', '20605908544', '', '', 'MZA. B LOTE. 11-A A.V. LA ESTRELLA SANTA CLARA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36169', NULL, 'CONSORCIO HUSA S.A.C.', '--', '20605908544', '', '', 'MZA. B LOTE. 11-A A.V. LA ESTRELLA SANTA CLARA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36172', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36173', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36174', NULL, 'HERMES VASQUEZ AQUINO', '--', '10103436490', '', '', 'JR. BOLOGNESI #530 MAGDALENA DEL MAR LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36175', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36177', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36178', NULL, 'HUAMAN MEZA ODEON', '--', '10091104062', '', '', 'AV PRIMAVERA 1063 VILLA MARIA DEL TRIUNFO  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36183', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36184', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36185', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36186', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36187', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36188', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36189', NULL, 'VEPSA TRANSPORTES S.A.C', '--', '20543595358', '', '', 'MZA. C LOTE. 24 URB. LOS NISPEROS (ENTRE AV. DOMINICOS Y AV. INDEPENDENCIA) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36190', NULL, 'VEPSA TRANSPORTES S.A.C', '--', '20543595358', '', '', 'MZA. C LOTE. 24 URB. LOS NISPEROS (ENTRE AV. DOMINICOS Y AV. INDEPENDENCIA) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36192', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36194', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36195', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36201', NULL, 'MALLAS REPRESENTACIONES CASTRO S.R.L.', '--', '20463459755', '', '', 'MZA. T LOTE. 16 A.H. LOS OLIVOS DE PRO (MCDO SANTA ANA) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36202', NULL, 'MALLAS REPRESENTACIONES CASTRO S.R.L.', '--', '20463459755', '', '', 'MZA. T LOTE. 16 A.H. LOS OLIVOS DE PRO (MCDO SANTA ANA) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36203', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36204', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36205', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36206', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36207', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36208', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36209', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36210', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36211', NULL, 'MEDICINA ESPECIALIZADA MARIA AUXILIADORA & CC S.A.C.', '--', '20495084257', '', '', 'AV. FRANCISCO BOLOGNESI NRO. S/N (ESPALDA OBREROS SHOGAN HIERRO PERU) ICA - NASCA - MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36212', NULL, 'MEDICINA ESPECIALIZADA MARIA AUXILIADORA & CC S.A.C.', '--', '20495084257', '', '', 'AV. FRANCISCO BOLOGNESI NRO. S/N (ESPALDA OBREROS SHOGAN HIERRO PERU) ICA - NASCA - MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36213', NULL, 'MEDICINA ESPECIALIZADA MARIA AUXILIADORA & CC S.A.C.', '--', '20495084257', '', '', 'AV. FRANCISCO BOLOGNESI NRO. S/N (ESPALDA OBREROS SHOGAN HIERRO PERU) ICA - NASCA - MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36214', NULL, 'MEDICINA ESPECIALIZADA MARIA AUXILIADORA & CC S.A.C.', '--', '20495084257', '', '', 'AV. FRANCISCO BOLOGNESI NRO. S/N (ESPALDA OBREROS SHOGAN HIERRO PERU) ICA - NASCA - MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36215', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36216', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36217', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36228', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36234', NULL, 'ORTIZ ÑAHUINRIPA IRMA VIOLETA', '--', '10439700390', '', '', 'CALLE SAN ANTONIO MZ X LT 6 ASENTAMIENTO HUMANO EL PARAISO - VILLA MARIA DEL TRIUNFO - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36235', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36236', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36237', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36247', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36252', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36253', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36254', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36256', NULL, 'IZAGUIRRE SARCO RAYZA YSABEL', '--', '10732122945', '', '', 'JR ZORRITOS 1399 BLOCK 47 -503 -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36259', NULL, 'TARRACO SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA', '--', '20502527283', '', '', 'AV. PRINCIPAL MZA. B LOTE. 3C URB. URB.CAMPOY 1RA ETAPA (A MEDIA CDRA DE GRIFO LOS CIPRESES) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36260', NULL, 'TARRACO SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA', '--', '20502527283', '', '', 'AV. PRINCIPAL MZA. B LOTE. 3C URB. URB.CAMPOY 1RA ETAPA (A MEDIA CDRA DE GRIFO LOS CIPRESES) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36263', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36264', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36273', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36275', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36277', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36281', NULL, 'SANTOS CUEVAS SERRANO DE PUQUIS', '--', '10083210091', '', '', 'JR CONDORHUASI 2447  MANGOMARCA ALTA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36283', NULL, 'JOHN VELASQUEZ', '75516645', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36284', NULL, 'JOHN VELASQUEZ', '75516645', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36287', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36288', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36289', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36290', NULL, 'DERMA HEALTH EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMI', '--', '20604192821', '', '', 'JR. LAS GENCIANAS NRO. 127 URB. SAN HILARION 2DA ETAPA LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36293', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36294', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36298', NULL, 'RICHARD EXPRESS SOCIEDAD ANONIMA CERRADA - RICHARD EXPR', '--', '20545739365', '', '', 'JR. ABTAO NRO. 670 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36300', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36301', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36302', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36303', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36304', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36305', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36310', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36311', NULL, 'CASTRO RODRIGUEZ HENRY ORLANDO', '--', '10083193790', '', '', 'AV PROCERES DE LA INDEPENDENCIA 343 - CHACARILLA DE OTERO SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36318', NULL, 'CURTIEMBRE FENIX S.R.L.', '--', '20507017194', '', '', 'CAL.27 MZA. V LOTE. 16B1 ASOC. COMP. TERR. CAMPOY LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36319', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36321', NULL, 'CALDAS RIVERA ILMER ROBERTH', '--', '10475564532', '', '', 'JR. HUAROCHIRI PASAJE A STAND SS 135-LIMA LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36322', NULL, 'CALDAS RIVERA ILMER ROBERTH', '--', '10475564532', '', '', 'JR. HUAROCHIRI PASAJE A STAND SS 135-LIMA LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36323', NULL, 'CALDAS RIVERA ILMER ROBERTH', '--', '10475564532', '', '', 'JR. HUAROCHIRI PASAJE A STAND SS 135-LIMA LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36324', NULL, 'CALDAS RIVERA ILMER ROBERTH', '--', '10475564532', '', '', 'JR. HUAROCHIRI PASAJE A STAND SS 135-LIMA LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36325', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36326', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36327', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36328', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36332', NULL, 'CIENFUEGOS CHERRES DE LONZOY INELDA', '--', '10167786770', '', '', 'AV EL EJERCITO MERCADO 9 DE OCTUBRE - CHICLAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36336', NULL, 'PERFECT AIR S.R.L.', '--', '20555262656', '', '', 'JR. RECUAY NRO. 628 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36337', NULL, 'PERFECT AIR S.R.L.', '--', '20555262656', '', '', 'JR. RECUAY NRO. 628 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36338', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36339', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36340', NULL, 'ESTRADOS PERU E.I.R.L.', '--', '20553804818', '', '', 'CAL.CHIMU MZA. J LOTE. 10 C.P. LA ENSENADA (LA ENSENADA CIENEGUILLA) LIMA - LIMA - CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36341', NULL, 'ALASKA INTERNACIONAL S.A', '--', '20336157871', '', '', 'AV. TACNA NRO. 592 DPTO. 32 CERCADO LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36345', NULL, 'CTPRINT STUDIO GRAFICO S.A.C.', '--', '20604875561', '', '', 'JR. GENERAL ORBEGOSO NRO. 271 INT. 226 (SEGUNDO PISO) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36346', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36347', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36348', NULL, 'CELIA & ROSA E.I.R.L.', '--', '20543223132', '', '', 'MZA. D LOTE. 43 ASOC. EL PORTILLO 1 ETAPA (ALT. URB. SAN ANTONIO - CARAPONGO) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36349', NULL, 'CELIA & ROSA E.I.R.L.', '--', '20543223132', '', '', 'MZA. D LOTE. 43 ASOC. EL PORTILLO 1 ETAPA (ALT. URB. SAN ANTONIO - CARAPONGO) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36350', NULL, 'CELIA & ROSA E.I.R.L.', '--', '20543223132', '', '', 'MZA. D LOTE. 43 ASOC. EL PORTILLO 1 ETAPA (ALT. URB. SAN ANTONIO - CARAPONGO) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36351', NULL, 'CELIA & ROSA E.I.R.L.', '--', '20543223132', '', '', 'MZA. D LOTE. 43 ASOC. EL PORTILLO 1 ETAPA (ALT. URB. SAN ANTONIO - CARAPONGO) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36352', NULL, 'CELIA & ROSA E.I.R.L.', '--', '20543223132', '', '', 'MZA. D LOTE. 43 ASOC. EL PORTILLO 1 ETAPA (ALT. URB. SAN ANTONIO - CARAPONGO) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36353', NULL, 'PASKANA E.I.R.L.', '--', '20608046632', '', '', 'JR. DANIEL VILLAR NRO. 491 URB. DANIEL VILLAR (ALQUILADO) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36354', NULL, 'PASKANA E.I.R.L.', '--', '20608046632', '', '', 'JR. DANIEL VILLAR NRO. 491 URB. DANIEL VILLAR (ALQUILADO) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36355', NULL, 'PASKANA E.I.R.L.', '--', '20608046632', '', '', 'JR. DANIEL VILLAR NRO. 491 URB. DANIEL VILLAR (ALQUILADO) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36356', NULL, 'PASKANA E.I.R.L.', '--', '20608046632', '', '', 'JR. DANIEL VILLAR NRO. 491 URB. DANIEL VILLAR (ALQUILADO) ANCASH - HUAYLAS - CARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36358', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36359', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36360', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36361', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36362', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36363', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36364', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36365', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36368', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36369', NULL, 'rodolfo perez', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36370', NULL, 'camaro graf s.a.c.', '--', '20600157087', '', '', 'jr. cañete #436 int 1085 lima-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36379', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36384', NULL, 'ECOANDINO S.A.C.', '--', '20419184111', '', '', 'CAL.LOS TAPICEROS NRO. 117 URB. LOTIZACION INDUSTRIAL EL ARTESANO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36385', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36386', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36387', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36389', NULL, 'BARTESAGHI MIRANDA FIORELLA DEL CARMEN', '--', '10451256501', '', '', 'JR RICARDO HERRERA 873 - CECADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36392', NULL, 'MASTER DRILLING PERU S.A.C', '--', '20329921531', '', '', 'CAR.ANTIGUA PANAMERICANA SUR KM 17 MZA. B LOTE. 13-A URB. LA CONCORDIA (SUB LOTE 13-A Y 13-B) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36394', NULL, 'JOHANNA ALEXANDRA AVILA GALARZA', '--', '10459866766', '', '', 'JR JUAN DE RADA 445 - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36395', NULL, 'ANTARTID GLOBAL S.A.C.', '--', '20604614351', '', '', '----GR UCV 33 LOTE. 30 P.J. PROYECTO ESPECIAL HUAYCAN ZONA B LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36396', NULL, 'RODRIGUEZ CRUZADO ALEJANDRO PAUL', '--', '10267079272', '', '', 'AV JAVIER PRADO ESTE 4921 - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36398', NULL, 'COOPERATIVA DE AHORRO Y CREDITO FINANCOOP LTDA. - FINAN', '--', '20479102776', '', '', 'AV. DEL PARQUE SUR NRO. 136 URB. CORPAC LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36399', NULL, 'COOPERATIVA DE AHORRO Y CREDITO FINANCOOP LTDA. - FINAN', '--', '20479102776', '', '', 'AV. DEL PARQUE SUR NRO. 136 URB. CORPAC LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36400', NULL, 'COOPERATIVA DE AHORRO Y CREDITO FINANCOOP LTDA. - FINAN', '--', '20479102776', '', '', 'AV. DEL PARQUE SUR NRO. 136 URB. CORPAC LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36401', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36402', NULL, 'INVERSIONES SAND S.A.C.', '--', '20555997001', '', '', 'JR. HUARAZ NRO. 1541 DPTO. 202 (CUADRA 7 AV BRASIL) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36403', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36404', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36405', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36406', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36411', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36414', NULL, 'PROGRAMA INTEGRAL NACIONAL PARA EL BIENESTAR FAMILIAR -', '--', '20507920722', '', '', 'AV. SAN MARTIN NRO. 685 (ALT.ESPALDA HOSPITAL SANTA ROSA) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36415', NULL, 'PROGRAMA INTEGRAL NACIONAL PARA EL BIENESTAR FAMILIAR -', '--', '20507920722', '', '', 'AV. SAN MARTIN NRO. 685 (ALT.ESPALDA HOSPITAL SANTA ROSA) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36416', NULL, 'PROGRAMA INTEGRAL NACIONAL PARA EL BIENESTAR FAMILIAR -', '--', '20507920722', '', '', 'AV. SAN MARTIN NRO. 685 (ALT.ESPALDA HOSPITAL SANTA ROSA) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36417', NULL, 'KVR3 SOCIEDAD ANONIMA CERRADA - KVR3 S.A.C.', '--', '20512531751', '', '', 'AV. NICOLAS AYLLON NRO. 2355 INT. A LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36418', NULL, 'KVR3 SOCIEDAD ANONIMA CERRADA - KVR3 S.A.C.', '--', '20512531751', '', '', 'AV. NICOLAS AYLLON NRO. 2355 INT. A LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36419', NULL, 'KVR3 SOCIEDAD ANONIMA CERRADA - KVR3 S.A.C.', '--', '20512531751', '', '', 'AV. NICOLAS AYLLON NRO. 2355 INT. A LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36420', NULL, 'KVR3 SOCIEDAD ANONIMA CERRADA - KVR3 S.A.C.', '--', '20512531751', '', '', 'AV. NICOLAS AYLLON NRO. 2355 INT. A LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36424', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36427', NULL, 'IRIARTE BELLIDO CESAR RUSSELL', '--', '10088805165', '', '', 'av. san juan #386 s.j.m-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36430', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36433', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36434', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36435', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36436', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36441', NULL, 'CUERPO MEDICO HOSPITAL NACIONAL GUILLERMO ALMENARA IRIG', '--', '20159483615', '', '', 'AV GRAU 800 -LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36453', NULL, 'abel molero velasque', '46581082', '', '', '', 'pichanaqui', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36457', NULL, 'noemir benito', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36458', NULL, 'PROYECTOS MUÑOZ & SEMINARIO SOCIEDAD ANONIMA CERRADA', '--', '20608557602', '', '', 'CAL.TARATA NRO. 260 URB. LEURO (ENTRE LAS CALLES LARCO Y ALCANFORES) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36461', NULL, 'JAKELINE CHOQUENEYRA ESPINOZA', '--', '10401760879', '', '', 'JR. LIBERTAD 350 COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36464', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36465', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36466', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36471', NULL, 'LURDES VILLA CRISOSTOMO', '41081118', '', '', '', 'JR 9 DE DICIEMBRE 690 - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36472', NULL, 'LURDES VILLA CRISOSTOMO', '41081118', '', '', '', 'JR 9 DE DICIEMBRE 690 - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36473', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36475', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36476', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36477', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36481', NULL, 'VIZCARRA AYAUCAN DAYANA VALERIA', '--', '10479680561', '', '', 'PUNTA NEGRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36486', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36487', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36488', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36489', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36491', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36492', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36493', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36497', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36499', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36501', NULL, 'TAPIA MENDOZA CARMEN ROSA', '--', '10092517671', '', '', 'maximo gorbitz #935 zona d s.j.m.-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36502', NULL, 'AGUILAR LOZANO JUAN', '--', '10270614324', '', '', 'JR VILLAVICENCIO 169 - INT. 9 - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36504', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36514', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36515', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36516', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36517', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36518', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36520', NULL, 'MIGUEL ARIZA SONIA DORIS', '--', '10087462175', '', '', 'MZ A LOTE 37 VILLA MERCEDES - SANTA MARIA DEL MAR  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36521', NULL, 'MIGUEL ARIZA SONIA DORIS', '--', '10087462175', '', '', 'MZ A LOTE 37 VILLA MERCEDES - SANTA MARIA DEL MAR  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36522', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36531', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36532', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36533', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36540', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36541', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36542', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36543', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36558', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36560', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36561', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36562', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36563', NULL, 'MARA CHRIS BELLO CASTILLO', '--', '10486552854', '', '', 'AV FAUSTINO PIAGGIO 057 ZORRITOS - TUMBES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36565', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36567', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36568', NULL, 'QUISPE PEREZ JESSENA YANETT', '--', '10401545625', '', '', 'CARRETERA CENTRAL 6.5KM CENTRO COMERCIAL BRISAS DE ATE TDA. 45 ATE VITARTE-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36572', NULL, 'LUZ MARINA SUAQUITA QUISPE', '40874574', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36573', NULL, 'LUZ MARINA SUAQUITA QUISPE', '40874574', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36577', NULL, 'GRUPO TEVI S.A.C.', '--', '20605856251', '', '', 'JR. CORACEROS NRO. 162 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36578', NULL, 'GRUPO TEVI S.A.C.', '--', '20605856251', '', '', 'JR. CORACEROS NRO. 162 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36579', NULL, 'GRUPO TEVI S.A.C.', '--', '20605856251', '', '', 'JR. CORACEROS NRO. 162 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36580', NULL, 'GRUPO TEVI S.A.C.', '--', '20605856251', '', '', 'JR. CORACEROS NRO. 162 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36581', NULL, 'GRUPO TEVI S.A.C', '--', '20605856251', '', '', 'JR. CORACEROS NRO. 162 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36585', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36586', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36587', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36588', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36589', NULL, 'INVERSIONES JLB S.A.C.', '--', '20608184369', '', '', 'AV. SAN FELIPE NRO. 108 URB. SAN FELIPE LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36595', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36596', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36597', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36598', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36599', NULL, 'TINTAYA HUAMANI VERNER MARVIN', '--', '10455913476', '', '', 'URB LA PALMA N31-ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36600', NULL, 'TINTAYA HUAMANI VERNER MARVIN', '--', '10455913476', '', '', 'URB LA PALMA N31-ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36604', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36606', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36607', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36608', NULL, 'GRUPO P.P. OBREGON S.A.C.', '--', '20533624601', '', '', 'JR. 2 DE MAYO NRO. 831 OTR. 2 DE MAYO ANCASH - BOLOGNESI - CHIQUIAN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36609', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36610', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36611', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36613', NULL, 'SEMINARIO NOREÑA GIAN MARCO', '--', '10706735599', '', '', 'PROVEEDORES UNIDOS 399 - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36615', NULL, 'INDUSTRIAS ESCORPIO SOCIEDAD ANONIMA CERRADA - INDUSTRI', '--', '20606424583', '', '', 'CAL.LA PENDIENTE NRO. 150 URB. LA PLANICIE LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36616', NULL, 'INDUSTRIAS ESCORPIO SOCIEDAD ANONIMA CERRADA - INDUSTRI', '--', '20606424583', '', '', 'CAL.LA PENDIENTE NRO. 150 URB. LA PLANICIE LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36617', NULL, 'INDUSTRIAS ESCORPIO SOCIEDAD ANONIMA CERRADA - INDUSTRI', '--', '20606424583', '', '', 'CAL.LA PENDIENTE NRO. 150 URB. LA PLANICIE LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36621', NULL, 'INVERSIONES ARTIKA SOCIEDAD ANONIMA CERRADA', '--', '20544985788', '', '', 'AV. LAS PALMERAS MZA. E4 LOTE. 2 URB. LA CAPITANA-HUACHIPA (PARALELA AL CEMENTERIO MAPFRE) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36622', NULL, 'INVERSIONES ARTIKA SOCIEDAD ANONIMA CERRADA', '--', '20544985788', '', '', 'AV. LAS PALMERAS MZA. E4 LOTE. 2 URB. LA CAPITANA-HUACHIPA (PARALELA AL CEMENTERIO MAPFRE) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36623', NULL, 'INVERSIONES ARTIKA SOCIEDAD ANONIMA CERRADA', '--', '20544985788', '', '', 'AV. LAS PALMERAS MZA. E4 LOTE. 2 URB. LA CAPITANA-HUACHIPA (PARALELA AL CEMENTERIO MAPFRE) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36626', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36627', NULL, 'BB TECNOLOGIA INDUSTRIAL S.A.C.', '--', '20299922821', '', '', 'CAL.CALLE 6 MZA. D LOTE. 15 DPTO. 2DO INT. 2PIS URB. URBANIZACIÓN INDUSTRIAL GRIMANEZA (2DO PISO- AV FAUCET ALT. LIMA CARGO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36628', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36629', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36630', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36632', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36635', NULL, 'ADELICIA CHANGANA CHINGA', '15639430', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36637', NULL, 'GERMAR E.I.R. L', '--', '20517990036', '', '', 'AUGUSTO DURAN 2455-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36638', NULL, 'GERMAR E.I.R. L', '--', '20517990036', '', '', 'AUGUSTO DURAN 2455-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36639', NULL, 'GERMAR E.I.R. L', '--', '20517990036', '', '', 'AUGUSTO DURAN 2455-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36640', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36643', NULL, 'JL GRAFICAS SAC', '--', '20516462150', '', '', 'VILLA MARIA DEL RIMAC MZ. A LOTE 6 RIMAC - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36649', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36650', NULL, 'HELP INDUSTRY GAMBOA S.R.L', '--', '20548944652', '', '', 'CAL.LOS SUSPIROS NRO. 175 URB. SANTA ISABEL LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36651', NULL, 'CORPORACION JL & LJ S.A.C.', '--', '20494916381', '', '', 'AV. ANTIGUA PANAMERICANA SUR KM. 36.5 INT. 6 (TIENDA 6) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36653', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36658', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36661', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36662', NULL, 'SEBAS PARK E.I.R.L', '--', '20608523104', '', '', 'PJ. JOSE C. MARIATEGUI - HUAYCAN MZA. C LOTE. 2 URB. NÚCLEO CENTRAL DE SERVICIOS (CASA FACHADA COLOR CREMA-PUERTA METAL) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36664', NULL, 'SANDOVAL GUANILO IVAN MANUEL', '--', '10437452453', '', '', 'AV. NARANJAL 1662 URB. LOS NARANJOS - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36665', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36666', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36667', NULL, 'VASQUEZ LEYVA OSCAR', '--', '10094784391', '', '', 'AV CALIFORNIA MZ C 3 LOTE 45 PALMERA DE OQUENDO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36668', NULL, 'VASQUEZ LEYVA OSCAR', '--', '10094784391', '', '', 'AV CALIFORNIA MZ C 3 LOTE 45 PALMERA DE OQUENDO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36669', NULL, 'VASQUEZ LEYVA OSCAR', '--', '10094784391', '', '', 'AV CALIFORNIA MZ C 3 LOTE 45 PALMERA DE OQUENDO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36670', NULL, 'VASQUEZ LEYVA OSCAR', '--', '10094784391', '', '', 'AV CALIFORNIA MZ C 3 LOTE 45 PALMERA DE OQUENDO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36671', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36672', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36673', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36674', NULL, 'CARDENAS HERNANDEZ ALEXANDER ALFREDO', '--', '10062823581', '', '', 'calle guillermo moore #501 santa anita-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36678', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36679', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36682', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36683', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36684', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36685', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36693', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36694', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36695', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36696', NULL, 'JORGE ORTIZ', '09047982', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36700', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36701', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36703', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36707', NULL, 'LOPEZ ESCOBAR LUIS ELVIS', '--', '10748280885', '', '', 'MZ A LOTE 8 GRUPO 2 SECTOR 10 OASIS -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36708', NULL, 'LOPEZ ESCOBAR LUIS ELVIS', '--', '10748280885', '', '', 'MZ A LOTE 8 GRUPO 2 SECTOR 10 OASIS -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36715', NULL, 'GRUPO SALCO S.A.C', '--', '20537224232', '', '', 'AV. JOSE DE LA RIVA AGUERO NRO. 299 URB. PANDO 2DA ETAPA (FRENTE AL COLEGIO 10 DE OCTUBRE) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36717', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36725', NULL, 'MUJICA ALIAGA ROGER ALEJANDRO', '--', '10266151999', '', '', 'CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36726', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36727', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36729', NULL, 'GRUPO SALCO S.A.C.', '--', '20537224232', '', '', '20537224232', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36730', NULL, 'GRUPO SALCO S.A.C.', '--', '20537224232', '', '', 'AV. JOSE DE LA RIVA AGUERO NRO. 299 URB. PANDO 2DA ETAPA (FRENTE AL COLEGIO 10 DE OCTUBRE) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36731', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36732', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36733', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36738', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36740', NULL, 'santo sare', '--', '', '', '', '19687360', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36741', NULL, 'santo sare', '--', '', '', '', '19687360', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36742', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36744', NULL, 'GARRO SALAS RONALD', '--', '10445785887', '', '', 'GUARDIA CIVIL SUR  MZ F LOTE 14 - SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36745', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36747', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36748', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36749', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36752', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36757', NULL, 'santo sare', '19687360', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36758', NULL, 'santo sare', '19687360', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36759', NULL, 'SANGUCHES DEL PERU S.A.C.', '--', '20510885229', '', '', 'AV. DOS DE MAYO NRO. 1002 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36764', NULL, 'INVERSIONES NOR CHICKEN S.A.C', '--', '20418463644', '', '', 'JR. DOMINGO CUETO NRO. 444 INT. 307 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36766', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36775', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36777', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36778', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36780', NULL, 'juan arturo flores', '47596685', '', '', '', 'sepahua-ucayali', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36781', NULL, 'POSADAS MONTALVO ELIZABETH SUSANA', '--', '10410455141', '', '', 'JR IQUITOS 315 -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36782', NULL, 'POSADAS MONTALVO ELIZABETH SUSANA', '--', '10410455141', '', '', 'JR IQUITOS 315 -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36783', NULL, 'POSADAS MONTALVO ELIZABETH SUSANA', '--', '10410455141', '', '', 'JR IQUITOS 315 -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36784', NULL, 'POSADAS MONTALVO ELIZABETH SUSANA', '--', '10410455141', '', '', 'JR IQUITOS 315 -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36785', NULL, 'POSADAS MONTALVO ELIZABETH SUSANA', '--', '10410455141', '', '', 'JR IQUITOS 315 -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36786', NULL, 'POSADAS MONTALVO ELIZABETH SUSANA', '--', '10410455141', '', '', 'JR IQUITOS 315 -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36787', NULL, 'POSADAS MONTALVO ELIZABETH SUSANA', '--', '10410455141', '', '', 'JR IQUITOS 315 -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36788', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36789', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36797', NULL, 'EMPACKES S.A.C.', '--', '20607556335', '', '', 'AV. GENERAL OBREGOSO KM. 263 BREÑA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36798', NULL, 'HEPTAGRAMA S.A.C.', '--', '20602442188', '', '', 'AV. AREQUIPA NRO. 4130 DPTO. 114 INT. H LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36800', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36804', NULL, 'HEPTAGRAMA S.A.C.', '--', '20602442188', '', '', 'AV. AREQUIPA NRO. 4130 DPTO. 114 INT. H LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36805', NULL, 'GARRO SALAS RONALD', '--', '10445785887', '', '', 'GUARDIA CIVIL SUR MZ. F LOTE 14 - SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36806', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36807', NULL, 'GARRO SALAS RONALD', '--', '10445785887', '', '', 'GUARDIA CILVIL SUR MZ F LOTE 14 SURCO-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36808', NULL, 'EDUARDO SILVA', '27041666', '', '', '', 'CELENDIN  - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36810', NULL, 'TROPICAL PRODUCTOS ORGANICOS S.R.L.', '--', '20606291117', '', '', 'MZA. B6 LOTE. 06 INT. 1 A.H. LA PRIMAVERA PIURA - PIURA - CASTILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36813', NULL, 'LUCY SALAS SILVA', '20568942', '', '', '', 'CHANCHAMAYO-PERENE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36819', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36822', NULL, 'ALIMENTOS DE EXPORTACION SOCIEDAD ANONIMA CERRADA - ALI', '--', '20504187587', '', '', '----PARCELA D-14 MZA. S/N LOTE. 03 FUNDO BUENA VISTA (ENTRADA DE PACHACAMAC-PARAD.CASA ROSADA) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36823', NULL, 'ALIMENTOS DE EXPORTACION SOCIEDAD ANONIMA CERRADA - ALI', '--', '20504187587', '', '', '----PARCELA D-14 MZA. S/N LOTE. 03 FUNDO BUENA VISTA (ENTRADA DE PACHACAMAC-PARAD.CASA ROSADA) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36824', NULL, 'ALIMENTOS DE EXPORTACION SOCIEDAD ANONIMA CERRADA - ALI', '--', '20504187587', '', '', '----PARCELA D-14 MZA. S/N LOTE. 03 FUNDO BUENA VISTA (ENTRADA DE PACHACAMAC-PARAD.CASA ROSADA) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36825', NULL, 'ALIMENTOS DE EXPORTACION SOCIEDAD ANONIMA CERRADA - ALI', '--', '20504187587', '', '', '----PARCELA D-14 MZA. S/N LOTE. 03 FUNDO BUENA VISTA (ENTRADA DE PACHACAMAC-PARAD.CASA ROSADA) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36826', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36827', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36828', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36829', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36830', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36834', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36835', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36836', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36844', NULL, 'BETTY ORMEÑO ROJAS', '21797921', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36845', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36854', NULL, 'FUNERARIA NIZAMA S.A.C.', '--', '20603927177', '', '', 'AV. GUILLERMO DE LA FUENTE NRO. 472 URB. SANTA LUZMILA ET. DOS LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36855', NULL, 'FUNERARIA NIZAMA S.A.C.', '--', '20603927177', '', '', 'AV. GUILLERMO DE LA FUENTE NRO. 472 URB. SANTA LUZMILA ET. DOS LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36856', NULL, 'FUNERARIA NIZAMA S.A.C.', '--', '20603927177', '', '', 'AV. GUILLERMO DE LA FUENTE NRO. 472 URB. SANTA LUZMILA ET. DOS LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36857', NULL, 'FUNERARIA NIZAMA S.A.C.', '--', '20603927177', '', '', 'AV. GUILLERMO DE LA FUENTE NRO. 472 URB. SANTA LUZMILA ET. DOS LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36859', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36860', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36866', NULL, 'DOMINIO VISUAL S.A.C.', '--', '20602441807', '', '', 'CAL.CESAR VALLEJO MZA. Q LOTE. 15 URB. LA UNIVERSAL I-II ETAPAS (FRENTE PQUE 4 UNIVERSO VERDE) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36868', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36869', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36871', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36872', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36873', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36874', NULL, 'IMPORTADORA MISSI S.A.C.', '--', '20454591446', '', '', 'CAL.ALTO DE LA LUNA NRO. 117 DPTO. B CERCADO (A MEDIA CUADRA DE MERCADO SAN CAMILO) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36876', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36883', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36885', NULL, 'ARIAS ROBLES SANTA MAGDA', '--', '10095566435', '', '', 'JR LOS ABOGADOS MZ K 6 LOTE 5 SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36886', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36887', NULL, 'MUÑOZ VARA MARIO RAUL', '--', '10081049942', '', '', 'FELIPE ARTILLERO 168  C11 LA PERLA-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36888', NULL, 'MUÑOZ VARA MARIO RAUL', '--', '10081049942', '', '', 'FELIPE ARTILLERO 168  C11 LA PERLA-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36889', NULL, 'MUÑOZ VARA MARIO RAUL', '--', '10081049942', '', '', 'FELIPE ARTILLERO 168  C11 LA PERLA-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36890', NULL, 'MUÑOZ VARA MARIO RAUL', '--', '10081049942', '', '', 'FELIPE ARTILLERO 168  C11 LA PERLA-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36891', NULL, 'MUÑOZ VARA MARIO RAUL', '--', '10081049942', '', '', 'FELIPE ARTILLERO 168  C11 LA PERLA-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36892', NULL, 'MUÑOZ VARA MARIO RAUL', '--', '10081049942', '', '', 'FELIPE ARTILLERO 168  C11 LA PERLA-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36893', NULL, 'GUARDIA TECLA GILBER LUIS', '--', '10074477190', '', '', 'MZ 23 LOTE 8A A.H LOS JAZMINES AREQUIPA-CARAVELI -LOMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36894', NULL, 'GUARDIA TECLA GILBER LUIS', '--', '10074477190', '', '', 'MZ 23 LOTE 8A A.H LOS JAZMINES AREQUIPA-CARAVELI -LOMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36895', NULL, 'GUARDIA TECLA GILBER LUIS', '--', '10074477190', '', '', 'MZ 23 LOTE 8A A.H LOS JAZMINES AREQUIPA-CARAVELI -LOMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36896', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36901', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36905', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36906', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36907', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36908', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36909', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36914', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36917', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36918', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36920', NULL, 'MOHIO LATAM SOCIEDAD ANONIMA CERRADA - MOHIO LATAM S.A.', '--', '20605702075', '', '', 'JR. HUAMACHUCO NRO. 1408 DPTO. 406 INT. 4 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36921', NULL, 'MOHIO LATAM SOCIEDAD ANONIMA CERRADA - MOHIO LATAM S.A.', '--', '20605702075', '', '', 'JR. HUAMACHUCO NRO. 1408 DPTO. 406 INT. 4 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36922', NULL, 'MOHIO LATAM SOCIEDAD ANONIMA CERRADA - MOHIO LATAM S.A.', '--', '20605702075', '', '', 'JR. HUAMACHUCO NRO. 1408 DPTO. 406 INT. 4 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36923', NULL, 'MOHIO LATAM SOCIEDAD ANONIMA CERRADA - MOHIO LATAM S.A.', '--', '20605702075', '', '', 'JR. HUAMACHUCO NRO. 1408 DPTO. 406 INT. 4 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36924', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36925', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36926', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36927', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36928', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36929', NULL, 'JOAQUIN GABRIEL FIORELLA', '--', '10442752627', '', '', 'LOS JARDINES OESTE 182 - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36931', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36938', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36939', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36940', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36941', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36942', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36943', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36955', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36956', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36958', NULL, 'JOSE YARNOLD', '08009300', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36960', NULL, 'COMERCIAL GUIMAESA E.I.R.L.', '--', '20605420509', '', '', 'CAL.MUJICA GALLO, MANUEL MZA. K LOTE. 01 APV. PORTALES DEL REY PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36961', NULL, 'COMERCIAL GUIMAESA E.I.R.L.', '--', '20605420509', '', '', 'CAL.MUJICA GALLO, MANUEL MZA. K LOTE. 01 APV. PORTALES DEL REY PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36962', NULL, 'COMERCIAL GUIMAESA E.I.R.L.', '--', '20605420509', '', '', 'CAL.MUJICA GALLO, MANUEL MZA. K LOTE. 01 APV. PORTALES DEL REY PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36963', NULL, 'COMERCIAL GUIMAESA E.I.R.L.', '--', '20605420509', '', '', 'CAL.MUJICA GALLO, MANUEL MZA. K LOTE. 01 APV. PORTALES DEL REY PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36973', NULL, 'BMI CORPORACION DE NEGOCIOS EMPRESA INDIVIDUAL DE RESPO', '--', '20603141106', '', '', 'JR. ATAHUALPA NRO. 332 (2DO PISO FRENTE AL COMEDOR NACIONAL N.18) UCAYALI - CORONEL PORTILLO - CALLERIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36974', NULL, 'AKOLOR S.A.C', '--', '20606675713', '', '', 'AV ARGENTINA 144 INT. 2061-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36975', NULL, 'AKOLOR S.A.C', '--', '20606675713', '', '', 'AV ARGENTINA 144 INT. 2061-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36976', NULL, 'AKOLOR S.A.C', '--', '20606675713', '', '', 'AV ARGENTINA 144 INT. 2061-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36977', NULL, 'GRÁFICA AKOLOR S.A.C.', '--', '20606675713', '', '', 'AV. REPUBLICA DE ARGENTINA NRO. 144 INT. 2061 URB. LIMA INDUSTRIAL LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36978', NULL, 'GRÁFICA AKOLOR S.A.C.', '--', '20606675713', '', '', 'AV. REPUBLICA DE ARGENTINA NRO. 144 INT. 2061 URB. LIMA INDUSTRIAL LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36979', NULL, 'GRÁFICA AKOLOR S.A.C.', '--', '20606675713', '', '', 'AV. REPUBLICA DE ARGENTINA NRO. 144 INT. 2061 URB. LIMA INDUSTRIAL LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36980', NULL, 'GRÁFICA AKOLOR S.A.C.', '--', '20606675713', '', '', 'AV. REPUBLICA DE ARGENTINA NRO. 144 INT. 2061 URB. LIMA INDUSTRIAL LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36981', NULL, 'GRÁFICA AKOLOR S.A.C.', '--', '20606675713', '', '', 'AV. REPUBLICA DE ARGENTINA NRO. 144 INT. 2061 URB. LIMA INDUSTRIAL LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36982', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36988', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36989', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36990', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36991', NULL, 'MESTANZA GUTIERREZ REYNA ANGELICA', '--', '10339488253', '', '', 'JR LOS ANGELES URB. PACHACUTEC  LT. 02 MZ L  BDA. DE SHILCAYO  SAN MARTIN - SAN MARTIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36992', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36993', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36994', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36995', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36998', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('36999', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37002', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37003', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37005', NULL, 'CHAMBA HURTADO IBEYIS JULIA LEONOR', '--', '10475016969', '', '', 'SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37007', NULL, 'VERASTEGUI BUSTAMANTE ZORAIDA CONCEPCION', '--', '10192312634', '', '', 'MZ A LOTE 10 PACASMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37008', NULL, 'VERASTEGUI BUSTAMANTE ZORAIDA CONCEPCION', '--', '10192312634', '', '', 'MZ A LOTE 10 PACASMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37009', NULL, 'VERASTEGUI BUSTAMANTE ZORAIDA CONCEPCION', '--', '10192312634', '', '', 'MZ A LOTE 10 PACASMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37010', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37011', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37012', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37014', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37015', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37016', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37021', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37022', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37023', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37024', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37025', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37032', NULL, 'C & C PERU ABASTECIMIENTO GLOBAL S.A.C.', '--', '20606953349', '', '', 'PJ. FEDERICO NOGUERA NRO. 169 INT. 3 URB. GERMAN ASTETE PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37036', NULL, 'MULTISERVICIOS TORNOS CYJ S.A.C.', '--', '20550489164', '', '', 'CAL.MANUEL LA TORRE MZA. J3 LOTE. 41 URB. FICUS (ALT DE LA RENIEC) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37038', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37039', NULL, 'CESPEDES RODRIGUEZ BRAULIO RAUL', '--', '10103980033', '', '', 'JR MALDONADO 111 AÑO NUEVO - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37042', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37043', NULL, 'BETSABE MARTINEZ ROMERO', '28604311', '', '', '', 'HUANTA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37044', NULL, 'BETSABE MARTINEZ ROMERO', '28604311', '', '', '', 'HUANTA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37045', NULL, 'BETSABE MARTINEZ ROMERO', '28604311', '', '', '', 'HUANTA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37046', NULL, 'BETSABE MARTINEZ ROMERO', '28604311', '', '', '', 'HUANTA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37047', NULL, 'BETSABE MARTINEZ ROMERO', '28604311', '', '', '', 'HUANTA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37048', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37055', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37056', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37058', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37060', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37061', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37068', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37072', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37073', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37074', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37075', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37077', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37078', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37085', NULL, 'PALOMINO BERMUDEZ GRIMALDINA', '--', '10407203289', '', '', 'AV SEPARADOR INDUSTRIAL MZ Q LOTE 7 - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37086', NULL, 'IMPORTADORA GAMMA MOTOS Y REPUESTOS SOCIEDAD ANONIMA CE', '--', '20607537802', '', '', 'AV. NICOLAS ARRIOLA NRO. 2265 (CERCA AL MERCADO DE FRUTAS) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37087', NULL, 'IMPORTADORA GAMMA MOTOS Y REPUESTOS SOCIEDAD ANONIMA CE', '--', '20607537802', '', '', 'AV. NICOLAS ARRIOLA NRO. 2265 (CERCA AL MERCADO DE FRUTAS) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37090', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37091', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37093', NULL, 'INVERSIONES SANCHEZ S.A.C.', '--', '20452512921', '', '', 'AV. CASUARINAS MZA. B-01 LOTE. 03 URB. LA ANGOSTURA ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37094', NULL, 'INVERSIONES SANCHEZ S.A.C.', '--', '20452512921', '', '', 'AV. CASUARINAS MZA. B-01 LOTE. 03 URB. LA ANGOSTURA ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37095', NULL, 'INVERSIONES SANCHEZ S.A.C.', '--', '20452512921', '', '', 'AV. CASUARINAS MZA. B-01 LOTE. 03 URB. LA ANGOSTURA ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37096', NULL, 'INVERSIONES GOURMET C & C S.A.C.', '--', '20608710621', '', '', 'MZA. C LOTE. 19 ASC. DE VIV. LOS CLAVELES DE COLLANAC LIMA - LIMA - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37097', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37098', NULL, 'GARCIA URRUTIA MIRIAM ELIZABETH', '--', '10167339471', '', '', 'CALLE JUAN CUGLIEVAN 1427 - CHICLAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37100', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37101', NULL, 'ESAMIC - EMPRESA DE SERVICIOS & ACTIVIDADES MULTIPLES D', '--', '20606061430', '', '', 'CAL.ANGAMOS NRO. 863 BAR. CHONTAPACCHA CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37102', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37104', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37106', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37107', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37108', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37109', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37113', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37114', NULL, 'CRISANTO ABRAMONTE MARTIN AUGUSTO', '--', '10462759431', '', '', 'CALLE SANTA CLARA 340 URB. STA ROSA  - SULLANA - PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37115', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37116', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37117', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37119', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37121', NULL, 'CRISANTO ABRAMONTE MARTIN AUGUSTO', '--', '10462759431', '', '', 'calle santa clara #340 urb. sta rosa-sullana-piura', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37126', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37127', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37128', NULL, 'OSORIO RIVERA FLOR MARIA', '--', '10411599146', '', '', 'DIONISIO DERTEANO 1558 URB. LOS CIPRESES - CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37131', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37132', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37134', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37135', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37136', NULL, 'ZAMANTA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37137', NULL, 'CORPORACION MONTJOY GUIZADO SAC', '--', '20514136956', '', '', 'MZA. K1 LOTE. 9 Z.I. DE PARCELA 2 (PARQUE INDUSTRIAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37138', NULL, 'VARIOS', '17830441', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37139', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37141', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37142', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37143', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37147', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37148', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37149', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37150', NULL, 'jesusa paico', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37152', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37153', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37154', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37157', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37159', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37165', NULL, 'NUNA REGALOS PERSONALIZADOS S.A.C.', '--', '20606595060', '', '', 'CAL.FEDERICO BASADRE NRO. 194 DPTO. 1 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37168', NULL, 'URETA CARLOS DE MERCADO EUGENIA LUCIA', '--', '10081609964', '', '', 'HIJO DE VIA LOS REYES MZ Q LT. 7 - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37172', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37174', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37175', NULL, 'GUAYACAN SERVICIOS GENERALES E.I.R.L.', '--', '20553221804', '', '', 'JR. EL CHACO NRO. 2089 URB. PERU (3ER PISO) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37177', NULL, 'INDUSTRIA PANIFICADORA DEL SUR SOCIEDAD ANONIMA CERRADA', '--', '20600543459', '', '', 'CAR.ANTG. PANAMERICANA SUR KM 16.3 MZA. A LOTE. 4 ASC. LA CONCORDIA LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37180', NULL, 'JERRY MELENDEZ AYALA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37183', NULL, 'FAST PROVIDER PERU S.A.C.', '--', '20605615318', '', '', 'MZA. O LOTE. 23 URB. UMAMARCA (ALTURA KM 14 PANAMERICANA SUR) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37184', NULL, 'ANA MARIA VERGARA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37194', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37195', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37197', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37199', NULL, 'carmen loza', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37200', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37201', NULL, 'MURAIDO S.A.C.', '--', '20551058043', '', '', 'CAL.JOSE GABRIEL COSSIO TUDELA NRO. 294 URB. ORRANTIA DEL MAR (ESQUINA CON AV.ANTONIO MIROQUESADA) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37202', NULL, 'MURAIDO S.A.C.', '--', '20551058043', '', '', 'CAL.JOSE GABRIEL COSSIO TUDELA NRO. 294 URB. ORRANTIA DEL MAR (ESQUINA CON AV.ANTONIO MIROQUESADA) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37203', NULL, 'MURAIDO S.A.C.', '--', '20551058043', '', '', 'CAL.JOSE GABRIEL COSSIO TUDELA NRO. 294 URB. ORRANTIA DEL MAR (ESQUINA CON AV.ANTONIO MIROQUESADA) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37204', NULL, 'MURAIDO S.A.C.', '--', '20551058043', '', '', 'CAL.JOSE GABRIEL COSSIO TUDELA NRO. 294 URB. ORRANTIA DEL MAR (ESQUINA CON AV.ANTONIO MIROQUESADA) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37207', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37208', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37209', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37212', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37213', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37214', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37218', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37227', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37228', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37229', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37230', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37240', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37241', NULL, 'BRYAN SMIT GIRALDO FLORES', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37242', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37248', NULL, 'ESTRADA CERNA MARIA ELENA', '--', '10104331110', '', '', 'JR CALLOMA 458 INT. 166 - CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37250', NULL, 'ASESORIA INTEGRAL R & M ASOCIADOS S.A.C.', '--', '20601247730', '', '', 'JR. CRISTOBAL DE PERALTA SUR NRO. 349 DPTO. 702 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37253', NULL, 'ZAPATA PURIZACA LESLY SOFIA', '--', '10028941141', '', '', 'AV EL EJERCITO 261 -  MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37259', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37263', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37264', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37273', NULL, 'IWANNACORP E.I.R.L.', '--', '20603805578', '', '', 'AV. ALFREDO BENAVIDES NRO. 768 INT. 203 URB. LEURO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37275', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37277', NULL, 'BRUNO TUNCAR PEÑA', '20002254', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37287', NULL, 'CAR RENTAL LUXURY LATAM S.A.C.', '--', '20608552449', '', '', 'AV. PACASMAYO MZA. A LOTE. 29 URB. J CHAVEZ PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37288', NULL, 'CAR RENTAL LUXURY LATAM S.A.C.', '--', '20608552449', '', '', 'AV. PACASMAYO MZA. A LOTE. 29 URB. J CHAVEZ PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37289', NULL, 'CAR RENTAL LUXURY LATAM S.A.C.', '--', '20608552449', '', '', 'AV. PACASMAYO MZA. A LOTE. 29 URB. J CHAVEZ PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37290', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37291', NULL, 'LAVANDERIA Y TINTORERIA WORLD CLASS S.A.C.', '--', '20601758220', '', '', 'AV. LURIGANCHO NRO. 1129 URB. RESIDHORIZONTE DE ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37292', NULL, 'LAVANDERIA Y TINTORERIA WORLD CLASS S.A.C.', '--', '20601758220', '', '', 'AV. LURIGANCHO NRO. 1129 URB. RESIDHORIZONTE DE ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37295', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37297', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37300', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37301', NULL, 'EMPRESA PÉRUANA DE HIDROCARBUROS SAC', '--', '20604020892', '', '', 'PICHARI LA CONVENCION -CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37302', NULL, 'EMPRESA PÉRUANA DE HIDROCARBUROS SAC', '--', '20604020892', '', '', 'PICHARI LA CONVENCION -CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37303', NULL, 'EMPRESA PÉRUANA DE HIDROCARBUROS SAC', '--', '20604020892', '', '', 'PICHARI LA CONVENCION -CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37304', NULL, 'EMPRESA PÉRUANA DE HIDROCARBUROS SAC', '--', '20604020892', '', '', 'PICHARI LA CONVENCION -CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37305', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37309', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37314', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37315', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37316', NULL, 'ISABEL BELI', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37318', NULL, 'CORPORACION MUNAY INTI PACHA S.A.C.', '--', '20603381778', '', '', 'AV. MARISCAL SUCRE MZA. CP LOTE. 01 ANX. 22 SECTOR EL VALLE LIMA - HUAROCHIRI - SAN ANTONIO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37319', NULL, 'CORPORACION MUNAY INTI PACHA S.A.C.', '--', '20603381778', '', '', 'AV. MARISCAL SUCRE MZA. CP LOTE. 01 ANX. 22 SECTOR EL VALLE LIMA - HUAROCHIRI - SAN ANTONIO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37320', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37321', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37322', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37323', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37328', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37330', NULL, 'edwar', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37332', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37341', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37353', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37354', NULL, 'MONTERO ALVITES FELICIANO ANDRES', '--', '10403915543', '', '', 'AAHH. JOSE OLAYA BALANDRA MZQ1 LT19 VENTANILLA -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37356', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37358', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37359', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37362', NULL, 'JAVC E.I.R.L.', '--', '20544022360', '', '', 'MZA. E LOTE. 8 RES. LAS GARDENIAS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37364', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37365', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37367', NULL, 'TANTALEAN CASTILLO MARTHA YOLANDA', '--', '10037004907', '', '', 'PASAJE RAYMONDI #332 INT. 81 LA VICTORIA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37368', NULL, 'KATANE SOCIEDAD ANONIMA CERRADA', '--', '20503496322', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37369', NULL, 'KATANE SOCIEDAD ANONIMA CERRADA', '--', '20503496322', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37370', NULL, 'KATANE SOCIEDAD ANONIMA CERRADA', '--', '20503496322', '', '', 'JR. FRANCISCO MASIAS NRO. 575 (ESQUINA CON DEAN VALDIVIA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37371', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37372', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37373', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37377', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37379', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37385', NULL, 'OLMA CONSULTORES E.I.R.L.', '--', '20607428981', '', '', 'CAL.BUGANVILLAS MZA. H2 LOTE. 58A URB. SAN ANTONIO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37386', NULL, 'OLMA CONSULTORES E.I.R.L.', '--', '20607428981', '', '', 'CAL.BUGANVILLAS MZA. H2 LOTE. 58A URB. SAN ANTONIO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37389', NULL, 'lidia techo', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37392', NULL, 'VIVIANA VARGAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37394', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37397', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37398', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37401', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37402', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37403', NULL, 'VILLEGAS LOPEZ KAREN ROCIO', '--', '10103543903', '', '', 'MZ F 7 LOTE 6 SEGUNDA ETAPA DIEZ DE OCTUBRE -S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37404', NULL, 'VILLEGAS LOPEZ KAREN ROCIO', '--', '10103543903', '', '', 'MZ F 7 LOTE 6 SEGUNDA ETAPA DIEZ DE OCTUBRE -S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37405', NULL, 'VILLEGAS LOPEZ KAREN ROCIO', '--', '10103543903', '', '', 'MZ F 7 LOTE 6 SEGUNDA ETAPA DIEZ DE OCTUBRE -S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37406', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37407', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37408', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37409', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37410', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37414', NULL, 'EXPERTTA SALUD SOCIEDAD ANONIMA CERRADA', '--', '20602059261', '', '', 'AV. ARICA NRO. 628 DPTO. 403 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37415', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37416', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37417', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37418', NULL, 'MAYELI', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37419', NULL, 'NAYELI', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37422', NULL, 'TECDIND S.A.C.', '--', '20550506867', '', '', 'CAL.MAMA OCLLO NRO. 2091 DPTO. 205 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37427', NULL, 'eutemia palomino huaman', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37428', NULL, 'hermelinda pomaguacre', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37430', NULL, 'margarita cardenas', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37432', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37433', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37436', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37437', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37440', NULL, 'klinton', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37442', NULL, 'franciscana de copacabana', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37457', NULL, 'BAHAMA\'S REPRESENTACIONES E.I.R.L.', '--', '20601415365', '', '', 'AV. LIMA SUR NRO. 521 URB. CHOSICA (COSTADO DEL BANCO DE LA NACION) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37458', NULL, 'BAHAMA\'S REPRESENTACIONES E.I.R.L.', '--', '20601415365', '', '', 'AV. LIMA SUR NRO. 521 URB. CHOSICA (COSTADO DEL BANCO DE LA NACION) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37459', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37460', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37461', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37464', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37465', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37466', NULL, 'JESSEVAL S.A.C', '--', '20537118394', '', '', 'CAL.MARCOS DONGO NRO. 242 URB. SANTA LUZMILA (ESPALDA DE ESSALUD) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37469', NULL, 'JAUREGUI QUISPE JUAN CARLOS', '--', '10429624393', '', '', 'AV LOS ALAMOS MZ E LOTE 8-S.J.M', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37472', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37473', NULL, 'GENERAL SERVICES DREK S.A.C. - DREK S.A.C.', '--', '20546649157', '', '', 'MZA. F LOTE. 13 ASC. VILLA ISOLINA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37474', NULL, 'GENERAL SERVICES DREK S.A.C. - DREK S.A.C.', '--', '20546649157', '', '', 'MZA. F LOTE. 13 ASC. VILLA ISOLINA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37475', NULL, 'GENERAL SERVICES DREK S.A.C. - DREK S.A.C.', '--', '20546649157', '', '', 'MZA. F LOTE. 13 ASC. VILLA ISOLINA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37476', NULL, 'HUARCA ENRIQUEZ GLADYS ROXANA', '--', '10107061334', '', '', 'MZ B LT. 17  SEGUNDO SECTOR  NUEVO PROGRESO  -  VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37481', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37483', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37485', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37486', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37487', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37488', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37489', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37491', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37492', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37493', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37494', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37495', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37496', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37497', NULL, 'REPRESENTACIONES L & J ELECTRIC E.I.R.L.', '--', '20543881873', '', '', 'JR. MORALES DUAREZ MZA. E7 LOTE. 26 URB. MARISCAL CACERES (PISO 5 REF TERCER PISO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37498', NULL, 'REPRESENTACIONES L & J ELECTRIC E.I.R.L.', '--', '20543881873', '', '', 'JR. MORALES DUAREZ MZA. E7 LOTE. 26 URB. MARISCAL CACERES (PISO 5 REF TERCER PISO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37499', NULL, 'REPRESENTACIONES L & J ELECTRIC E.I.R.L.', '--', '20543881873', '', '', 'JR. MORALES DUAREZ MZA. E7 LOTE. 26 URB. MARISCAL CACERES (PISO 5 REF TERCER PISO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37500', NULL, 'REPRESENTACIONES L & J ELECTRIC E.I.R.L.', '--', '20543881873', '', '', 'JR. MORALES DUAREZ MZA. E7 LOTE. 26 URB. MARISCAL CACERES (PISO 5 REF TERCER PISO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37501', NULL, 'REPRESENTACIONES L & J ELECTRIC E.I.R.L.', '--', '20543881873', '', '', 'JR. MORALES DUAREZ MZA. E7 LOTE. 26 URB. MARISCAL CACERES (PISO 5 REF TERCER PISO) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37504', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37505', NULL, 'CHUMBIMUNE ZANABRIA ENRIQUE MANUEL', '--', '10076532007', '', '', 'JR SALAVERRY 299 - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37512', NULL, 'SODEXO PERU S.A.C.', '--', '20414766308', '', '', 'JR. DOMENICO MORELLI NRO. 110 (CC LA RAMBLA TORRE 1) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37515', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37516', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37517', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37518', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37520', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37521', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37522', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37524', NULL, 'REPRESENTACIONES GRALES.VIDARTE S.R.L.', '--', '20385694220', '', '', 'AV. SEBASTIAN LORENTE NRO. 941 (BARRIOS ALTOS) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37525', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37528', NULL, 'CORPORACION TURISTICA PERUANA S.A.C', '--', '20265815830', '', '', 'AV. BENAVIDES NRO. 430 RES. MIRAFLORES (INTERSECCION DE LA AV.BENAVIDES Y LARCO) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37531', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37532', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37533', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37534', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37535', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37536', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37537', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37541', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37542', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37543', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37544', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37545', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37546', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37547', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37559', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37563', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37565', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37567', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37571', NULL, 'TRANSPORTES KAVER\'S SERVICIOS LOGISTICOS S.A.C.', '--', '20566154235', '', '', 'MZA. 17A LOTE. 3 A.H. LAURA CALLER IBERICO (ESP. COLEGIO NUEVO PERU) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37575', NULL, 'NINAHUANCA LAZARO PAOLA STEFANNY', '--', '10763238372', '', '', 'SECTOR II  GRUPO 24 MZ C LT 24  VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37577', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37578', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37579', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37580', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37583', NULL, 'ROJAS GARCIA PERCY MAX', '--', '10408296248', '', '', 'PSJE SAMAEL 247 - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37585', NULL, 'SARA MAMANI', '46510353', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37586', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37587', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37588', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37589', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37595', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37596', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37597', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37602', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37603', NULL, 'R & M LIFT TRADING S.A.C.', '--', '20601399220', '', '', 'CAL.LAS CAPULLANAS MZA. C LOTE. 9 URB. LOS ALISOS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37604', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37606', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37607', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37608', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37609', NULL, 'GRUPO 54 S.A.C.', '--', '20608374486', '', '', 'CAL.VICTOR PLASCENCIA NRO. 181 URB. PROLONGACION BENAVIDES LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37610', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37611', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37613', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37616', NULL, 'juan arteaga', '--', '', '', '', 'pedro ruiz -amazonas', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37617', NULL, 'STEACKHOUSE S.A.C.', '--', '20607906638', '', '', 'JR. JOSÉ SANTOS CHOCANO NRO. S/N SEC. PAMPA DEL CARMEN (C/C AV. CIRCUNVALACIÓN FRENTE A LOZA DEP) JUNIN - CHANCHAMAYO - CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37619', NULL, 'STEACKHOUSE S.A.C.', '--', '20607906638', '', '', 'R. JOSÉ SANTOS CHOCANO NRO. S/N SEC. PAMPA DEL CARMEN (C/C AV. CIRCUNVALACIÓN FRENTE A LOZA DEP) JUNIN - CHANCHAMAYO - CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37624', NULL, 'sara mamani', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37625', NULL, 'sara mamani', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37626', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37627', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37628', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37629', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37630', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37632', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37634', NULL, 'SILVA CASTAÑEDA VALERIA NICOL', '--', '10760230290', '', '', 'AV GRAU 193 INT 110-LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37635', NULL, 'SILVA CASTAÑEDA VALERIA NICOL', '--', '10760230290', '', '', 'AV GRAU 193 INT 110-LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37636', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37637', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37638', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37639', NULL, 'GABINO ESCALANTE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37640', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37641', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37642', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37649', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37650', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37651', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37652', NULL, 'HUACCALSAYCO YAUYO EDITH JUSTINA', '--', '10467553360', '', '', 'JR SIMON BOLIVAR 511 - SATIPO - SATIPO - JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37653', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37658', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37661', NULL, 'MAICOL DELGADO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37662', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37665', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37666', NULL, 'BEAUTY CENTER Y SPA E.I.R.L.', '--', '20603246293', '', '', 'CAL.LOS FICUS NRO. 112 INT. 3 PI URB. JARDINES DE VIRU (CRUCE DE FAUCETT Y VENEZUELA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37668', NULL, 'CAROLINA BRONCANO ZAVALA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37669', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37670', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37671', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37672', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37673', NULL, 'LA GOMITA E.I.R.L.', '--', '20600069455', '', '', 'CAL.LORETO NRO. 160 CERACDO (A 1 CDRA DE LA PLAZOLETA BELEN) MOQUEGUA - MARISCAL NIETO - MOQUEGUA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37674', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37675', NULL, 'DANIELA SANTOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37678', NULL, 'SERVICENT SOLUCIONES LOGISTICAS S.A.C.', '--', '20607929000', '', '', 'MZA. K LOTE. 13 A.H. LOS PROGRESISTAS A LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37680', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37681', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37684', NULL, 'LUCIA MARTINEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37685', NULL, 'LUCIA MARTINEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37686', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37687', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37688', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37700', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37701', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37708', NULL, 'AUTOMOTRIZ J.W.C. S.A.C.', '--', '20536232550', '', '', 'CAL.CHAMAYA NRO. 770 URB. CHACRA COLORADA (ALTURA CDRA. 15 AV. VENEZUELA) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37711', NULL, 'henry chacon', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37714', NULL, 'gina sanchez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37715', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37716', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37717', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37719', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37720', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37732', NULL, 'EMBALAJES V Y V SOCIEDAD ANONIMA CERRADA - EMBALAJES V ', '--', '20600393988', '', '', 'AV. BAUZATE Y MEZA NRO. 104 (2DO PISO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37733', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37734', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37735', NULL, 'diana huacagolque', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37737', NULL, 'augusto barrientos', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37739', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37743', NULL, 'EDGARD QUARITE GUTIERREZ', '09515370', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37744', NULL, 'EDGARD QUARITE GUTIERREZ', '09515370', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37745', NULL, 'EDGARD QUARITE GUTIERREZ', '09515370', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37746', NULL, 'EDGARD QUARITE GUTIERREZ', '09515370', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37748', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37749', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37752', NULL, 'KEYLA MERCADO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37758', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37759', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37760', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37761', NULL, 'CARMEN HERRERA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37762', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37764', NULL, 'ADELMA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37765', NULL, 'SHERLY BECERRA', '47232868', '', '', '', 'TARAPOTO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37766', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37768', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37770', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37771', NULL, 'MARITZA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37772', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37775', NULL, 'NICOLE  ALDERETE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37777', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37778', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37780', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37781', NULL, 'POMA & DE LA CRUZ ASOCIADOS S.R.L.', '--', '20608516451', '', '', 'AV. LOS NOGALES NRO. 251 DPTO. 1306 INT. T10 CND. CLUB RECREA LOS NOGALES (CONDOMINIO LOS NOGALES T10 DPTO 1306) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37782', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37783', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37786', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37787', NULL, 'INVERSIONES RANA S.A.C.', '--', '20602971946', '', '', 'CAR.TARAPOTO - YURIMAGUAS KM. 27.9 OTR. CARRETERA TARAPOTO - YURIMAGUAS KM 27.9 SAN MARTIN - SAN MARTIN - TARAPOTO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37791', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37792', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37793', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37794', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37796', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37797', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37799', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37802', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37803', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37804', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37805', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37806', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37812', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37819', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37823', NULL, 'juan asto', '46316735', '', '', '', 'lima -ate', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37824', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37825', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37826', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37827', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37828', NULL, 'INVERSIONES ALASKAN E.I.R.L.', '--', '20606405694', '', '', 'CAL.ZARAGOZA NRO. 257 URB. LA CAPILLA SUPMANZANA U-DOS LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37829', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37830', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37831', NULL, 'CARMEN  PEREZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37832', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37833', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37835', NULL, 'VICTORIA MARIN', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37836', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37837', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37838', NULL, 'ROSA PANDO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37839', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37840', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37841', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37842', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37843', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37844', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37845', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37848', NULL, 'DALILA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37849', NULL, 'DALILA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37854', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37855', NULL, 'elena sanchez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37857', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37858', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37861', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37862', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37865', NULL, 'MELCHOR HUAMANI EDUARDO', '--', '10804639778', '', '', 'AV. MICAELA BASTIDAS #233 PICHANAQUI-JUNIN- CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37866', NULL, 'MELCHOR HUAMANI EDUARDO', '--', '10804639778', '', '', 'AV. MICAELA BASTIDAS #233 PICHANAQUI-JUNIN- CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37868', NULL, 'MELCHOR HUAMANI EDUARDO', '--', '10804639778', '', '', 'AV. MICAELA BASTIDAS #233 PICHANAQUI-JUNIN- CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37870', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37871', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37872', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37873', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37883', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37885', NULL, 'paola', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37886', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37887', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37888', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37889', NULL, 'CORPORACION ZAHILGA S.A.C.', '--', '20606788887', '', '', 'JR. PARURO NRO. 1415 (PARURO CON GRAU) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37894', NULL, 'GRIFOS ESPINOZA S A', '--', '20100111838', '', '', 'AV. JAVIER PRADO ESTE NRO. 6519 URB. PABLO CANEPA (ENTRE CRUCE AV. INGENIEROS, GESA MARKETS) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37895', NULL, 'herminia yuto llantoy', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37897', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37898', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37901', NULL, 'mendoza', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37905', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37906', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37907', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37908', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37909', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37911', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37917', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37918', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37919', NULL, 'NEIRA MANUEL JULIA GLADYS', '--', '10067112615', '', '', 'CALLE ERNESTO MALINOWSKY 301 - CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37923', NULL, 'doriza orbe', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37926', NULL, 'erika nuñez', '73606078', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37932', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37933', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37935', NULL, 'isabel fernandez', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37937', NULL, 'gian franco lopez clemente', '72141774', '', '', '', 'puerto maldonado', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37940', NULL, 'GARIBAY RAMIREZ ARMANDO NAZARENO', '--', '10412464066', '', '', 'PROLONGACION LA MAR 711 - INT 3 - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37941', NULL, 'ANA JIMENEZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37944', NULL, 'GARIBAY RAMIREZ ARMANDO NAZARENO', '--', '10412464066', '', '', 'PROLONGACION LA MAR 711 - INT 3 - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37949', NULL, 'SALVATIERRA LEON DONATO', '--', '10282926950', '', '', 'JR ALFONSO UGARTE 321 - SAN JUAN BAUTISTA - HUAMANGA - AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37950', NULL, 'SANCHEZ VALDERA GUSTAVO ALONSO', '--', '10701180394', '', '', 'AV. RAMON VARGAS MACHUCA #576 S.J.M-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37955', NULL, 'ANGELA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37956', NULL, 'MARIA CARRANZA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37958', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37959', NULL, 'susy gallardo', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37960', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37963', NULL, 'susy gallardo', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37964', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37965', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37971', NULL, 'LLANOS ADCO NELY YOLANDA', '--', '10400118944', '', '', 'GAMARRA 1010-INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37972', NULL, 'LLANOS ADCO NELY YOLANDA', '--', '10400118944', '', '', 'GAMARRA 1010-INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37973', NULL, 'LLANOS ADCO NELY YOLANDA', '--', '10400118944', '', '', 'GAMARRA 1010-INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37974', NULL, 'LLANOS ADCO NELY YOLANDA', '--', '10400118944', '', '', 'GAMARRA 1010-INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37975', NULL, 'LLANOS ADCO NELY YOLANDA', '--', '10400118944', '', '', 'GAMARRA 1010-INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37976', NULL, 'BARRICA 2007 S.A.C.', '--', '20606369230', '', '', 'JR. LEONARDO ARRIETA Y AV. COLONIAL NRO. 984 URB. LOS PINOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37977', NULL, 'BARRICA 2007 S.A.C.', '--', '20606369230', '', '', 'JR. LEONARDO ARRIETA Y AV. COLONIAL NRO. 984 URB. LOS PINOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37978', NULL, 'BARRICA 2007 S.A.C.', '--', '20606369230', '', '', 'JR. LEONARDO ARRIETA Y AV. COLONIAL NRO. 984 URB. LOS PINOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37982', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37983', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37985', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37987', NULL, 'HUARCA ENRIQUEZ GLADYS ROXANA', '--', '10107061334', '', '', 'MZ B LOTE 17 - AH NVO PROGRESO 2DA ET. GR.2 VILLA MARIA DEL TRIUNFO - LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37990', NULL, 'KILO MARKETS S.A.C.', '--', '20606143835', '', '', 'AV. GERARDO UNGER NRO. 1067 INT. P1 URB. SOL DE LIMA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37993', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('37999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38002', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38003', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38007', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38010', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38013', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38016', NULL, 'LOS VEGAS SERVICIO DE TELECOMUNICACIONES E.I.R.L.', '--', '20602350763', '', '', 'CAL.DIEGO QUISPE MZA. G´ LOTE. 38B URB. EL BOSQUE LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38019', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38020', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38021', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38022', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38025', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38031', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38032', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38038', NULL, 'MORENO VERACIERTA RUSMERY ESTHER', '--', '15606695133', '', '', 'URB. MI TERRUÑO MZK LOTE 11 S.M.P-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38039', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38040', NULL, 'FLOR', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38050', NULL, 'KAFKA COMUNICACIONES Y CONTENIDO S.A.C.', '--', '20604940886', '', '', 'AV. DEL PARQUE NORTE NRO. 336 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38051', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38052', NULL, 'INVERSIONES CASIOLES E.I.R.L.', '--', '20601976529', '', '', 'MZA. Y-4 LOTE. 3-B A.H. JULIO C. TELLO (ALAMEDA DE LOS CHICHARRONES SECTOR 14) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38055', NULL, 'YANINA ZEVALLOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38056', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38058', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38061', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38062', NULL, 'MELVA COLCA ARANDA', '04307049', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38065', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38066', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38067', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38071', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38072', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38073', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38074', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38075', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38076', NULL, 'AG INTERNATIONAL TRADING S.A.C.', '--', '20603010222', '', '', 'OTR.IV ETAPA MZA. C LOTE. 10 ASC. RESIDENCIAL LOS OLIVOS DE ATE LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38077', NULL, 'AG INTERNATIONAL TRADING S.A.C.', '--', '20603010222', '', '', 'OTR.IV ETAPA MZA. C LOTE. 10 ASC. RESIDENCIAL LOS OLIVOS DE ATE LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38078', NULL, 'AG INTERNATIONAL TRADING S.A.C.', '--', '20603010222', '', '', 'OTR.IV ETAPA MZA. C LOTE. 10 ASC. RESIDENCIAL LOS OLIVOS DE ATE LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38083', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38089', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38091', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38092', NULL, 'POLISEMIA EDITORIAL S.A.C.', '--', '20608586378', '', '', 'AV. REPUBLICA DE ARGENTINA NRO. 144 INT. 2273 URB. LIMA INDUSTRIAL LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38093', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38096', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38097', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38098', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38100', NULL, 'ROMALDO HUERTA LINA EPIFANIA', '--', '10432003499', '', '', 'JR CONDE DE SUPERUNA 327 DPTO 110 - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38101', NULL, 'BLANCA VILLAR ARTEAGA', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38102', NULL, 'BLANCA VILLAR ARTEAGA', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38103', NULL, 'BLANCA VILLAR ARTEAGA', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38104', NULL, 'BLANCA VILLAR ARTEAGA', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38105', NULL, 'BLANCA VILLAR ARTEAGA', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38106', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38107', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38108', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38110', NULL, 'GUSTOSAMENTE - CATERING & EVENTOS E.I.R.L.', '--', '20605344454', '', '', 'PJ. LA DOCENCIA NRO. 115 URB. CARLOS CUETO FERNANDINI LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38112', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38113', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38114', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38115', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38122', NULL, 'POMA & DE LA CRUZ ASOCIADOS S.R.L.', '--', '20608516451', '', '', 'AV. LOS NOGALES NRO. 251 DPTO. 1306 INT. T10 CND. CLUB RECREA LOS NOGALES (CONDOMINIO LOS NOGALES T10 DPTO 1306) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38125', NULL, 'LUZMILA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38126', NULL, 'MERCEDES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38127', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38128', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38131', NULL, 'SANDOVAL FLORIAN JAIME HOMERO', '--', '10181803521', '', '', 'CALLE RAMON CASTILLA  MZ B LOTE 36  VEINTE   DE ABRIL - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38132', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38134', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38135', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38139', NULL, 'FUNDACION PARA EL DESARROLLO AGRARIO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38148', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38149', NULL, 'jhonatan enrrique guzman torre', '47160327', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38150', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38154', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38156', NULL, 'lucy', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38157', NULL, 'yesica sanchez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38158', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38159', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38160', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38161', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38164', NULL, 'LINCOLN  VILLANUEVA SICCHA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38167', NULL, 'MENDO ROXFIO E.I.R.L.', '--', '20605654852', '', '', 'CAL.SCHUBERT NRO. 819 DPTO. 301 LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38168', NULL, 'MENDO ROXFIO E.I.R.L.', '--', '20605654852', '', '', 'CAL.SCHUBERT NRO. 819 DPTO. 301 LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38169', NULL, 'MENDO ROXFIO E.I.R.L.', '--', '20605654852', '', '', 'CAL.SCHUBERT NRO. 819 DPTO. 301 LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38170', NULL, 'MENDO ROXFIO E.I.R.L.', '--', '20605654852', '', '', 'CAL.SCHUBERT NRO. 819 DPTO. 301 LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38171', NULL, 'FLORES VARGAS MARTHA YANNET', '--', '10421006224', '', '', 'AV JAIME BLANCO 2016  EL PORVENIR - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38172', NULL, 'NAVARRO BALLADARES CINTHYA HUNGRIA', '--', '10446716625', '', '', 'JR AYACUCHO 524-CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38173', NULL, 'NAVARRO BALLADARES CINTHYA HUNGRIA', '--', '10446716625', '', '', 'JR AYACUCHO 524-CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38174', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38183', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38184', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38194', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38195', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38197', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38206', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38207', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38208', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38209', NULL, 'JORGE MENDOZA', '08738628', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38210', NULL, 'JORGE MENDOZA', '08738628', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38211', NULL, 'JORGE MENDOZA', '08738628', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38212', NULL, 'JORGE MENDOZA', '08738628', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38213', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38214', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38215', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38216', NULL, 'LOS LOBOS JVC SERVICIOS GENERALES E.I.R.L.', '--', '20600119304', '', '', 'PJ. 5 MZA. D LOTE. 7 AGRU NIÑO JESUS CHAVIN H. LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38217', NULL, 'LOS LOBOS JVC SERVICIOS GENERALES E.I.R.L.', '--', '20600119304', '', '', 'PJ. 5 MZA. D LOTE. 7 AGRU NIÑO JESUS CHAVIN H. LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38218', NULL, 'LOS LOBOS JVC SERVICIOS GENERALES E.I.R.L.', '--', '20600119304', '', '', 'PJ. 5 MZA. D LOTE. 7 AGRU NIÑO JESUS CHAVIN H. LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38229', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38230', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38234', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38255', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38256', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38257', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38258', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38263', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38265', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38267', NULL, 'RUFASTO SOSA DE TRIGO MARIA LUISA', '--', '10077379946', '', '', 'JR SAEN PEÑA 540 DPT  102 - MAGDALENA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38273', NULL, 'INVERSIONES TOMAS VALLE S.A.C', '--', '20476633932', '', '', 'JR. DOMINGO CUETO NRO. 444 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38275', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38277', NULL, 'INVERSIONES EL FOGON EMPRESA INDIVIDUAL DE RESPONSABILI', '--', '20571563411', '', '', 'AV. VICTORIA LOTE. 20-A P.J. 3 DE OCTUBRE (REST.EL FOGON - CAMINO A RETES) LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38278', NULL, 'DIANA SALAZAR LOPEZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38279', NULL, 'DIANA SALAZAR LOPEZ', '71209875', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38284', NULL, 'NAVARRO MONTEAGUDO SANDRO TOMAS', '--', '10075197832', '', '', 'LOS JARDINES F 33 SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38287', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38288', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38289', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38290', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38291', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38292', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38295', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38298', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38299', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38300', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38304', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38305', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38306', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38308', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38309', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38310', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38311', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38312', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38318', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38319', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38320', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38324', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38325', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38326', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38327', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38328', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38330', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38334', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38340', NULL, 'BENAVENTE TRIBEÑOS VERONICA ALICIA', '--', '10044298622', '', '', 'JR HUANCAYO 771  SANTA ROSA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38341', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38344', NULL, 'VANESA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38345', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38346', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38347', NULL, 'CRUZADO PEREZ CAROLA TARITA', '--', '10099786618', '', '', 'JR. HIPOLITO UNANUE #425 COMAS-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38348', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38349', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38350', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38351', NULL, 'GRÁFICA AKOLOR S.A.C.', '--', '20606675713', '', '', 'AV. REPUBLICA DE ARGENTINA NRO. 144 INT. 2061 URB. LIMA INDUSTRIAL LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38352', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38353', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38356', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38358', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38359', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38360', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38361', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38362', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38364', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38365', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38368', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38369', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38370', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38373', NULL, 'INVERSIONES MULTIMAR E.I.R.L.', '--', '20534186780', '', '', 'AV. LUZURIAGA NRO. 651 (FRENTE DE CREDISCOTIA) ANCASH - HUARAZ - HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38383', NULL, 'PEREZ ROMANI ZORAIDA ESTELA', '08639589', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38384', NULL, 'PEREZ ROMANI ZORAIDA ESTELA', '08639589', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38385', NULL, 'PEREZ ROMANI ZORAIDA ESTELA', '08639589', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38386', NULL, 'PEREZ ROMANI ZORAIDA ESTELA', '08639589', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38387', NULL, 'ROCIO LEIVA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38388', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38389', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38390', NULL, 'ROCIO LEVA FRANCO', '40845495', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38392', NULL, 'FAMCAVEL SERVICIOS GENERALES E.I.R.L.', '--', '20569100349', '', '', 'JR. RAMON CASTILLA NRO. 125 INT. 1PIS CENTRO SIHUAS ANCASH - SIHUAS - SIHUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38393', NULL, 'FAMCAVEL SERVICIOS GENERALES E.I.R.L.', '--', '20569100349', '', '', 'JR. RAMON CASTILLA NRO. 125 INT. 1PIS CENTRO SIHUAS ANCASH - SIHUAS - SIHUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38394', NULL, 'FAMCAVEL SERVICIOS GENERALES E.I.R.L.', '--', '20569100349', '', '', 'JR. RAMON CASTILLA NRO. 125 INT. 1PIS CENTRO SIHUAS ANCASH - SIHUAS - SIHUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38395', NULL, 'FAMCAVEL SERVICIOS GENERALES E.I.R.L.', '--', '20569100349', '', '', 'JR. RAMON CASTILLA NRO. 125 INT. 1PIS CENTRO SIHUAS ANCASH - SIHUAS - SIHUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38396', NULL, 'FAMCAVEL SERVICIOS GENERALES E.I.R.L.', '--', '20569100349', '', '', 'JR. RAMON CASTILLA NRO. 125 INT. 1PIS CENTRO SIHUAS ANCASH - SIHUAS - SIHUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38397', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38398', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38399', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38400', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38408', NULL, 'CECILIA FLORES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38414', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38415', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38416', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38417', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38418', NULL, 'ROMERO ALVA DE MARTINEZ ZENAIDA', '--', '10286032147', '', '', 'JR OSWALDO N. REGAL 302 HUANTA - AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38427', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38430', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38432', NULL, 'GLOBAL TELECOM TECHNOLOGY E.I.R.L.', '--', '20604854203', '', '', 'JR. LIBERTAD NRO. 3618 (ALT CDRA 36 AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38433', NULL, 'GLOBAL TELECOM TECHNOLOGY E.I.R.L.', '--', '20604854203', '', '', 'JR. LIBERTAD NRO. 3618 (ALT CDRA 36 AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38434', NULL, 'GLOBAL TELECOM TECHNOLOGY E.I.R.L.', '--', '20604854203', '', '', 'JR. LIBERTAD NRO. 3618 (ALT CDRA 36 AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38436', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38437', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38447', NULL, 'FERNANDO MENDOZA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38453', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38454', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38455', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38458', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38460', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38461', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38462', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38463', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38464', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38465', NULL, 'ESTUDIO MBVO CONTADORES & ABOGADOS S.A.C.', '--', '20549309250', '', '', 'R. CARABAYA NRO. 560 INT. 9 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38466', NULL, 'ESTUDIO MBVO CONTADORES & ABOGADOS S.A.C.', '--', '20549309250', '', '', 'R. CARABAYA NRO. 560 INT. 9 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38467', NULL, 'ESTUDIO MBVO CONTADORES & ABOGADOS S.A.C.', '--', '20549309250', '', '', 'R. CARABAYA NRO. 560 INT. 9 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38468', NULL, 'ESTUDIO MBVO CONTADORES & ABOGADOS S.A.C.', '--', '20549309250', '', '', 'R. CARABAYA NRO. 560 INT. 9 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38472', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38473', NULL, 'LLACZA VILLALVA GUILLERMO AUGUSTO', '--', '10062325971', '', '', 'AV REYNALDO SAAVEDRA PIÑON 2469 URB ELIO -CERDADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38474', NULL, 'LLACZA VILLALVA GUILLERMO AUGUSTO', '--', '10062325971', '', '', 'AV REYNALDO SAAVEDRA PIÑON 2469 URB ELIO -CERDADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38475', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38476', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38477', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38486', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38487', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38488', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38489', NULL, 'BEATRIZ UGARTE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38490', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38491', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38493', NULL, 'JANET PARAVE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38497', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38499', NULL, 'C & E CONSULTING E.I.R.L.', '--', '20601037646', '', '', 'AV. PARQUE GONZALES PRADA NRO. 441 INT. E LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38500', NULL, 'C & E CONSULTING E.I.R.L.', '--', '20601037646', '', '', 'AV. PARQUE GONZALES PRADA NRO. 441 INT. E LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38501', NULL, 'C & E CONSULTING E.I.R.L.', '--', '20601037646', '', '', 'AV. PARQUE GONZALES PRADA NRO. 441 INT. E LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38502', NULL, 'C & E CONSULTING E.I.R.L.', '--', '20601037646', '', '', 'AV. PARQUE GONZALES PRADA NRO. 441 INT. E LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38503', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38505', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38511', NULL, 'CURTIEMBRE FENIX S.R.L.', '--', '20507017194', '', '', 'CAL.27 MZA. V LOTE. 16B1 ASOC. COMP. TERR. CAMPOY LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38515', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38516', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38517', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38518', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38522', NULL, 'MARIBEL HUAYTA', '48609632', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38525', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38527', NULL, 'maria cecilia quispe milla', '41671629', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38530', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38533', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38534', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38535', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38536', NULL, 'MORENO LEVEAU OMAR ARMANDO', '--', '10700763311', '', '', 'JR CARABAYA 918 DPTO 401 CERCADO DE LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38537', NULL, 'MORENO LEVEAU OMAR ARMANDO', '--', '10700763311', '', '', 'JR CARABAYA 918 DPTO 401 CERCADO DE LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38539', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38540', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38541', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38542', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38543', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38558', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38560', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38561', NULL, 'CINCO PANES Y DOS PECES S.A.C.', '--', '20522059481', '', '', 'CAL.CHAN CHAN NRO. 130 URB. PORTADA DEL SOL LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38562', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38563', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38565', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38567', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38570', NULL, 'VOKATRA PERÚ S.A.C.', '--', '20608273892', '', '', 'CAL.CASIMIRO ESPEJO NRO. 200 URB. SANTA LUZMILA ET. DOS LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38571', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38572', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38573', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38580', NULL, 'jonatan arana', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38581', NULL, 'jonatan arana', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38582', NULL, 'jonatan arana', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38583', NULL, 'jonatan arana', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38585', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38587', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38588', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38589', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38595', NULL, 'mari luisa', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38596', NULL, 'mari luisa', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38597', NULL, 'mari luisa', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38598', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38599', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38600', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38601', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38602', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38603', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38604', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38606', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38607', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38608', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38609', NULL, 'martha gamarra vasquez', '48292960', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38610', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38611', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38612', NULL, 'AGROPECUARIA SELVA CENTRAL CODO DEL POZUZO S.A.C.', '--', '20528938109', '', '', 'AV. LOS FUNDADORES MZA. N LOTE. 9 (A 2 CDRAS DEL PARQUE PRINCIPAL) HUANUCO - PUERTO INCA - CODO DEL POZUZO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38613', NULL, 'AGROPECUARIA SELVA CENTRAL CODO DEL POZUZO S.A.C.', '--', '20528938109', '', '', 'AV. LOS FUNDADORES MZA. N LOTE. 9 (A 2 CDRAS DEL PARQUE PRINCIPAL) HUANUCO - PUERTO INCA - CODO DEL POZUZO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38616', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38617', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38621', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38622', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38623', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38624', NULL, 'CONSORCIO MEDITERRANEO S.A.C.', '--', '20553255881', '', '', 'AV. SIETE NRO. 229 URB. RINCONADA BAJA (A TRES CUADRAS DE MOLICENTRO) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38626', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38627', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38628', NULL, 'isabel', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38629', NULL, 'VARIOS', '17830441', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38630', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38632', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38637', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38639', NULL, 'ESPINOZA CARLOS DANIEL ANDRES', '--', '10720122265', '', '', 'RIO CHIRA MZ D LOTE 6 MZ  D URB . LOS ALAMOS - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38640', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38641', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38642', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38652', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38653', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38654', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38655', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38656', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38661', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38662', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38665', NULL, 'SILVIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38666', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38667', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38668', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38676', NULL, 'ESTAR BIEN S.A.C.', '--', '20603244240', '', '', 'CAL.MANUEL ESTACIO NRO. 185 URB. PANDO 7MA ET. LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38677', NULL, 'ESTAR BIEN S.A.C.', '--', '20603244240', '', '', 'CAL.MANUEL ESTACIO NRO. 185 URB. PANDO 7MA ET. LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38678', NULL, 'ESTAR BIEN S.A.C.', '--', '20603244240', '', '', 'CAL.MANUEL ESTACIO NRO. 185 URB. PANDO 7MA ET. LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38679', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38680', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38681', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38682', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38683', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38684', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ B4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38685', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ D4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38686', NULL, 'SALVADOR URBANO JAVIER ANGEL', '--', '15379699402', '', '', 'PSJE BENEDICTO JIMENEZ MZ D4 LOTE 10 URB HONOR Y LEALTAD -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38687', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38688', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38689', NULL, 'ASOCIACION EDUCATIVA LICEO SANTO DOMINGO', '--', '20547080841', '', '', 'CAL.48 MZA. X1 LOTE. 08 URB. EL PINAR (AV.LOS INCAS CRUCE CON AV.UNIVERSITARIA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38690', NULL, 'ASOCIACION EDUCATIVA LICEO SANTO DOMINGO', '--', '20547080841', '', '', 'CAL.48 MZA. X1 LOTE. 08 URB. EL PINAR (AV.LOS INCAS CRUCE CON AV.UNIVERSITARIA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38691', NULL, 'ASOCIACION EDUCATIVA LICEO SANTO DOMINGO', '--', '20547080841', '', '', 'CAL.48 MZA. X1 LOTE. 08 URB. EL PINAR (AV.LOS INCAS CRUCE CON AV.UNIVERSITARIA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38695', NULL, 'MISION DE AMOR PERU', '--', '20549109595', '', '', 'CAL.SAMIRIA MZA. A LOTE. 29 URB. AURORA ESTE (ALT. 13 Y 14 AV. TOMAS MARSANO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38696', NULL, 'MISION DE AMOR PERU', '--', '20549109595', '', '', 'CAL.SAMIRIA MZA. A LOTE. 29 URB. AURORA ESTE (ALT. 13 Y 14 AV. TOMAS MARSANO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38697', NULL, 'MISION DE AMOR PERU', '--', '20549109595', '', '', 'CAL.SAMIRIA MZA. A LOTE. 29 URB. AURORA ESTE (ALT. 13 Y 14 AV. TOMAS MARSANO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38698', NULL, 'MISION DE AMOR PERU', '--', '20549109595', '', '', 'CAL.SAMIRIA MZA. A LOTE. 29 URB. AURORA ESTE (ALT. 13 Y 14 AV. TOMAS MARSANO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38700', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38701', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38707', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38708', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38715', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38716', NULL, 'CUPE BERROCAL OLINDA RENEE', '--', '10430302804', '', '', 'MZ B Y 8 LOTE 3B -SAN ANTONIO DE HUAROCHIRI-S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38717', NULL, 'CUPE BERROCAL OLINDA RENEE', '--', '10430302804', '', '', 'MZ B Y 8 LOTE 3B -SAN ANTONIO DE HUAROCHIRI-S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38726', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38727', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38729', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38730', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38731', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38732', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38733', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38734', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38735', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38736', NULL, 'ROSARIO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38737', NULL, 'TELLO NAVARRO JOSE LUIS', '--', '10098095417', '', '', 'CALLE TIAHUANACO479-SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38738', NULL, 'TELLO NAVARRO JOSE LUIS', '--', '10098095417', '', '', 'CALLE TIAHUANACO479-SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38745', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38746', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38747', NULL, 'MENDOZA ZAMBRANO PABLO', '--', '10417582563', '', '', 'AV LA CULTURA MZ H LOTE 12-SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38748', NULL, 'MENDOZA ZAMBRANO PABLO', '--', '10417582563', '', '', 'AV LA CULTURA MZ H LOTE 12-SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38749', NULL, 'MENDOZA ZAMBRANO PABLO', '--', '10417582563', '', '', 'AV LA CULTURA MZ H LOTE 12-SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38750', NULL, 'MENDOZA ZAMBRANO PABLO', '--', '10417582563', '', '', 'AV LA CULTURA MZ H LOTE 12-SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38751', NULL, 'MENDOZA ZAMBRANO PABLO', '--', '10417582563', '', '', 'AV LA CULTURA MZ H LOTE 12-SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38752', NULL, 'MENDOZA ZAMBRANO PABLO', '--', '10417582563', '', '', 'AV LA CULTURA MZ H LOTE 12-SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38753', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38754', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38755', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38756', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38757', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38758', NULL, 'walter reynoso', '40805167', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38759', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38760', NULL, 'lupe ochoa', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38761', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38762', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38765', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38766', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38768', NULL, 'judith paucar arellana', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38770', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38771', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38772', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38775', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38777', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38778', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38783', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38784', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38785', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38786', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38787', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38788', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38789', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38790', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38791', NULL, 'SABINO SALINAS PERCY RAMOS', '--', '10402476341', '', '', 'MZ K  LOTE 5 ASOC. VIVIENDA SANTO TOMAS SAN PEDRO DE CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38792', NULL, 'SABINO SALINAS PERCY RAMOS', '--', '10402476341', '', '', 'MZ K  LOTE 5 ASOC. VIVIENDA SANTO TOMAS SAN PEDRO DE CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38793', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38794', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38795', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38797', NULL, 'BARRICA 2007 S.A.C.', '--', '20606369230', '', '', 'JR. LEONARDO ARRIETA Y AV. COLONIAL NRO. 984 URB. LOS PINOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38799', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38802', NULL, 'julia grabiel', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38803', NULL, 'bilma mejia sanchez', '41400013', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38804', NULL, 'bilma mejia sanchez', '41400013', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38805', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38806', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38809', NULL, '7094', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38813', NULL, 'BRANDON ESPINOZA MIGUEL ANGEL', '--', '10450729855', '935036097', '', 'calle punta sal #420 punta hermosa', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38819', NULL, 'bertha', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38823', NULL, 'ARGA MEDIC E.I.R.L.', '--', '20516753049', '', '', 'AV. SANTA ROSA NRO. 160 P.J. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38824', NULL, 'ARGA MEDIC E.I.R.L.', '--', '20516753049', '', '', 'AV. SANTA ROSA NRO. 160 P.J. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38825', NULL, 'ARGA MEDIC E.I.R.L.', '--', '20516753049', '', '', 'AV. SANTA ROSA NRO. 160 P.J. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38831', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38834', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38835', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38836', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38837', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38838', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38839', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38840', NULL, 'BLAS LOPEZ VICENTA AQUILINA', '--', '10258122432', '', '', 'mz a lt5 urb. 7 de agosto callao-callao', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38841', NULL, 'FLORISTERIA SOLANGE EIRL.', '--', '20601973147', '', '', 'CAL.FRANCISCO MORENO NRO. 1134 URB. CERCADO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38842', NULL, 'FLORISTERIA SOLANGE EIRL.', '--', '20601973147', '', '', 'CAL.FRANCISCO MORENO NRO. 1134 URB. CERCADO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38843', NULL, 'FLORISTERIA SOLANGE EIRL.', '--', '20601973147', '', '', 'CAL.FRANCISCO MORENO NRO. 1134 URB. CERCADO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38844', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38845', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38847', NULL, 'LA GRAN FLORISTERIA E.I.R.L.', '--', '20607775509', '', '', 'CAL.TERCERA NRO. 780 URB. CHACARITAS PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38848', NULL, 'LA GRAN FLORISTERIA E.I.R.L.', '--', '20607775509', '', '', 'CAL.TERCERA NRO. 780 URB. CHACARITAS PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38849', NULL, 'LA GRAN FLORISTERIA E.I.R.L.', '--', '20607775509', '', '', 'CAL.TERCERA NRO. 780 URB. CHACARITAS PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38853', NULL, 'jackeline ortiz cardenas', '43205092', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38854', NULL, 'jackeline ortiz cardenas', '43205092', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38855', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38857', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38858', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38861', NULL, 'CURSOR EMPRESARIAL S.A.C. CURSORE S.A.C', '--', '20537665441', '', '', 'CAL.12 MZA. L LOTE. 06 URB. EL PINAR LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38864', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38866', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38870', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38871', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38872', NULL, 'ruth medrano', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38873', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38875', NULL, 'RIOS RAMIREZ & ASOCIADOS CONTADORES PUBLICOS SOCIEDAD C', '--', '20100587590', '', '', 'JR. VIRREY ABASCAL NRO. 106 INT. 302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38876', NULL, 'nicanor soto', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38877', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38882', NULL, 'FJ INVERSIONES PERU S.A.C.', '--', '20604821861', '', '', 'CAL.ALFA CENTAURO NRO. 166 DPTO. 802 URB. LA CALERA DE MONTERRICO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38883', NULL, 'FJ INVERSIONES PERU S.A.C.', '--', '20604821861', '', '', 'CAL.ALFA CENTAURO NRO. 166 DPTO. 802 URB. LA CALERA DE MONTERRICO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38884', NULL, 'FJ INVERSIONES PERU S.A.C.', '--', '20604821861', '', '', 'CAL.ALFA CENTAURO NRO. 166 DPTO. 802 URB. LA CALERA DE MONTERRICO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38886', NULL, 'jorge jamanca', '46220885', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38887', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38888', NULL, 'marleny dilas', '45284354', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38892', NULL, 'AGUILAR ESPERME RUDY', '--', '10472527971', '', '', 'anexo huanca s/n santa lucia-ayacucho', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38893', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38894', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38895', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38896', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38897', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38898', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38901', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38905', NULL, 'tania nampa', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38906', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38907', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38908', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38909', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38910', NULL, 'MURAIDO S.A.C.', '--', '20551058043', '', '', 'CAL.JOSE GABRIEL COSSIO TUDELA NRO. 294 URB. ORRANTIA DEL MAR (ESQUINA CON AV.ANTONIO MIROQUESADA) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38911', NULL, 'MURAIDO S.A.C.', '--', '20551058043', '', '', 'CAL.JOSE GABRIEL COSSIO TUDELA NRO. 294 URB. ORRANTIA DEL MAR (ESQUINA CON AV.ANTONIO MIROQUESADA) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38912', NULL, 'MURAIDO S.A.C.', '--', '20551058043', '', '', 'CAL.JOSE GABRIEL COSSIO TUDELA NRO. 294 URB. ORRANTIA DEL MAR (ESQUINA CON AV.ANTONIO MIROQUESADA) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38913', NULL, 'MURAIDO S.A.C.', '--', '20551058043', '', '', 'CAL.JOSE GABRIEL COSSIO TUDELA NRO. 294 URB. ORRANTIA DEL MAR (ESQUINA CON AV.ANTONIO MIROQUESADA) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38914', NULL, 'juan la rosa', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38916', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38919', NULL, 'merida salazar', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38922', NULL, 'nataly kotrina', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38931', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38940', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38943', NULL, 'THE QUALITY COMPANY INTERNATIONAL E.I.R.L.-THE Q CO.', '--', '20604201951', '', '', 'CAL.MARIANO MELGAR NRO. 184 DPTO. 101 URB. SANTA RAQUEL ZONA OESTE 1 ET (CRUCE DE AV CONSTRUCTORES CON INGENIEROS) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38944', NULL, 'THE QUALITY COMPANY INTERNATIONAL E.I.R.L.-THE Q CO.', '--', '20604201951', '', '', 'CAL.MARIANO MELGAR NRO. 184 DPTO. 101 URB. SANTA RAQUEL ZONA OESTE 1 ET (CRUCE DE AV CONSTRUCTORES CON INGENIEROS) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38945', NULL, 'THE QUALITY COMPANY INTERNATIONAL E.I.R.L.-THE Q CO.', '--', '20604201951', '', '', 'CAL.MARIANO MELGAR NRO. 184 DPTO. 101 URB. SANTA RAQUEL ZONA OESTE 1 ET (CRUCE DE AV CONSTRUCTORES CON INGENIEROS) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38946', NULL, 'THE QUALITY COMPANY INTERNATIONAL E.I.R.L.-THE Q CO.', '--', '20604201951', '', '', 'CAL.MARIANO MELGAR NRO. 184 DPTO. 101 URB. SANTA RAQUEL ZONA OESTE 1 ET (CRUCE DE AV CONSTRUCTORES CON INGENIEROS) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38947', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38948', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38949', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38950', NULL, 'RIOS RAMIREZ & ASOCIADOS CONTADORES PUBLICOS SOCIEDAD C', '--', '20100587590', '', '', 'JR. VIRREY ABASCAL NRO. 106 INT. 302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38951', NULL, 'RIOS RAMIREZ & ASOCIADOS CONTADORES PUBLICOS SOCIEDAD C', '--', '20100587590', '', '', 'JR. VIRREY ABASCAL NRO. 106 INT. 302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38952', NULL, 'RIOS RAMIREZ & ASOCIADOS CONTADORES PUBLICOS SOCIEDAD C', '--', '20100587590', '', '', 'JR. VIRREY ABASCAL NRO. 106 INT. 302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38953', NULL, 'RIOS RAMIREZ & ASOCIADOS CONTADORES PUBLICOS SOCIEDAD C', '--', '20100587590', '', '', 'JR. VIRREY ABASCAL NRO. 106 INT. 302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38958', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38960', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38961', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38962', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38969', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38970', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38971', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38972', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38974', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38975', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38976', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38978', NULL, 'WALTER ORTIZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38979', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38980', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38981', NULL, 'CESAR HERNANDEZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38983', NULL, 'nancy machahuay', '--', '', '', '', 'ica', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38990', NULL, 'CEVICHERIA ARICA BEACH E.I.R.L.', '--', '20608994476', '', '', 'CAL.LAS ISLAS BALLENAS NRO. 0 LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38991', NULL, 'CEVICHERIA ARICA BEACH E.I.R.L.', '--', '20608994476', '', '', 'CAL.LAS ISLAS BALLENAS NRO. 0 LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38992', NULL, 'CEVICHERIA ARICA BEACH E.I.R.L.', '--', '20608994476', '', '', 'CAL.LAS ISLAS BALLENAS NRO. 0 LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38993', NULL, 'CEVICHERIA ARICA BEACH E.I.R.L.', '--', '20608994476', '', '', 'CAL.LAS ISLAS BALLENAS NRO. 0 LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38995', NULL, 'CHAVARRIA APOLINARIO MEDALID MILAGROS', '--', '10460468871', '', '', 'av. cincuentenario #509 -hualmay-huacho', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('38999', NULL, 'ORGANIZACION NACIONAL DE MUJERES INDIGENAS ANDINAS Y AM', '--', '20537116006', '', '', 'JR. ANTONIO MIRO QUESADA NRO. 327 INT. 406 URB. LIMA CERCADO LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39002', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39003', NULL, 'EDER RICARDO CONSTRUCTORES S.A.C', '--', '20605477608', '', '', 'MZA. H LOTE. 12 RES. VIRGEN DE CHAPI (CAMINO A LA HUEGA) ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39004', NULL, 'EDER RICARDO CONSTRUCTORES S.A.C', '--', '20605477608', '', '', 'MZA. H LOTE. 12 RES. VIRGEN DE CHAPI (CAMINO A LA HUEGA) ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39005', NULL, 'EDER RICARDO CONSTRUCTORES S.A.C', '--', '20605477608', '', '', 'MZA. H LOTE. 12 RES. VIRGEN DE CHAPI (CAMINO A LA HUEGA) ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39006', NULL, 'EDER RICARDO CONSTRUCTORES S.A.C', '--', '20605477608', '', '', 'MZA. H LOTE. 12 RES. VIRGEN DE CHAPI (CAMINO A LA HUEGA) ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39007', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39008', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39009', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39010', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39011', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39012', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39013', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39015', NULL, 'andreitt espinoza', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39016', NULL, 'SOFIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39021', NULL, 'CIPRIANO CARRASCAL RENEE JAVIER', '--', '10422484243', '', '', 'ciudadela chalaca mzf lote 17 -callao-callao', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39022', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39023', NULL, 'ROJAS OCAMPO OSCAR HUMBERTO', '--', '10463018290', '', '', 'jr. salaverry #180 MAGDALENA DEL MAR -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39025', NULL, 'VILMA FELICITA CHAUPIS TRUJILLO', '22884253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39026', NULL, 'VILMA FELICITA CHAUPIS TRUJILLO', '22884253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39027', NULL, 'VILMA FELICITA CHAUPIS TRUJILLO', '22884253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39028', NULL, 'VILMA FELICITA CHAUPIS TRUJILLO', '22884253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39029', NULL, 'VILMA FELICITA CHAUPIS TRUJILLO', '22884253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39030', NULL, 'VILMA FELICITA CHAUPIS TRUJILLO', '22884253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39031', NULL, 'VILMA FELICITA CHAUPIS TRUJILLO', '22884253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39032', NULL, 'VILMA FELICITA CHAUPIS TRUJILLO', '22884253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39035', NULL, 'FERMIN RUIZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39038', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39039', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39041', NULL, 'VARIOS', '17830441', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39042', NULL, 'REPUESTOS GENERALES AUTOMOTRICES DEL PERU S.A.C.', '--', '20510902921', '', '', 'PJ. NICOLAS ARRIOLA NRO. 138 URB. APOLO LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39043', NULL, 'REPUESTOS GENERALES AUTOMOTRICES DEL PERU S.A.C.', '--', '20510902921', '', '', 'PJ. NICOLAS ARRIOLA NRO. 138 URB. APOLO LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39044', NULL, 'REPUESTOS GENERALES AUTOMOTRICES DEL PERU S.A.C.', '--', '20510902921', '', '', 'PJ. NICOLAS ARRIOLA NRO. 138 URB. APOLO LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39055', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39059', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39061', NULL, 'VALDEZ HUAMANI LIZ STEFANY NANCY', '--', '10766768372', '', '', 'AH MARIANO MELGAR MZ H LOTE 8 INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39062', NULL, 'VALDEZ HUAMANI LIZ STEFANY NANCY', '--', '10766768372', '', '', 'AH MARIANO MELGAR MZ H LOTE 8 INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39065', NULL, 'ADRIANA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39066', NULL, 'ALVARO RONCEROS', '74220124', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39067', NULL, 'ruly', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39072', NULL, 'CORPORACION TERREROS GUTARRA S.A.C.', '--', '20546194729', '', '', 'KM. 0 MZA. C8 LOTE. 18 COO. SANTA AURELIA (AV. LA CULTURA Y METROPOLITANO) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39073', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39074', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39075', NULL, 'ALUMINIOS LAMINADOS DEL PERU SOCIEDAD ANONIMA CERRADA', '--', '20513524243', '', '', 'MZA. 8 LOTE. 05 PARQ INDUSTRIAL PARCELA 1 (ALT PARADERO 8 DE TABLADA DE LURIN) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39076', NULL, 'MARISOL SANCHEZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39077', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39078', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39079', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39090', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39091', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39093', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39094', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39095', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39097', NULL, 'gloria', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39098', NULL, 'PRODUCCIONES PROTV SOCIEDAD ANONIMA CERRADA - (PRODUCCI', '--', '20507750380', '', '', 'CAL.GENERAL MIGUEL IGLESIAS NRO. 630 URB. CERCADO DE MIRAFLORES (ALT. CUADRA 8 AV. ANGAMOS OESTE) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39099', NULL, 'PRODUCCIONES PROTV SOCIEDAD ANONIMA CERRADA - (PRODUCCI', '--', '20507750380', '', '', 'CAL.GENERAL MIGUEL IGLESIAS NRO. 630 URB. CERCADO DE MIRAFLORES (ALT. CUADRA 8 AV. ANGAMOS OESTE) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39100', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39102', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39103', NULL, 'CALLO MAMANI JOHN', '--', '10449309087', '', '', 'JR PIEROLA 800 JULIACA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39104', NULL, 'CALLO MAMANI JOHN', '--', '10449309087', '', '', 'JR PIEROLA 800 JULIACA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39105', NULL, 'CALLO MAMANI JOHN', '--', '10449309087', '', '', 'JR PIEROLA 800 JULIACA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39106', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39107', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39108', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39109', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39112', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39113', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39114', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39115', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39116', NULL, 'MAYEDA MASUMURA JOSE ANTONIO', '--', '10064268789', '', '', 'av. canaval y moreyra #880 urb. corpac- san isidro', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39117', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39119', NULL, 'LIDIA MENDOZA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39126', NULL, 'sonia llaja', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39127', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39128', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39129', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39131', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39132', NULL, 'rosa gomez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39137', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39138', NULL, 'CABALLO BLANCO-ESCENOGRAFICA S.A.C', '--', '20543804453', '', '', 'PJ. PQ INTERNO - HOGAR POLICI NRO. 2-7A URB. HOGAR POLICIAL LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39139', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39140', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39141', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39142', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39143', NULL, 'liliana velasco', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39156', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39157', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39158', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39159', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39160', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39161', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39162', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39164', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39165', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39166', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39167', NULL, 'INVERSIONES Y SERVICIOS CORBIPERU SOCIEDAD ANONIMA CERR', '--', '20602687741', '', '', 'AV. HEROES DE JACTAY NRO. 836 HUANUCO - HUANUCO - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39168', NULL, 'INVERSIONES Y SERVICIOS CORBIPERU SOCIEDAD ANONIMA CERR', '--', '20602687741', '', '', 'AV. HEROES DE JACTAY NRO. 836 HUANUCO - HUANUCO - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39169', NULL, 'INVERSIONES Y SERVICIOS CORBIPERU SOCIEDAD ANONIMA CERR', '--', '20602687741', '', '', 'AV. HEROES DE JACTAY NRO. 836 HUANUCO - HUANUCO - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39170', NULL, 'INVERSIONES Y SERVICIOS CORBIPERU SOCIEDAD ANONIMA CERR', '--', '20602687741', '', '', 'AV. HEROES DE JACTAY NRO. 836 HUANUCO - HUANUCO - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39172', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39174', NULL, 'MARCOS SIPAN JAVIER ULISES', '--', '10097968824', '', '', 'MZ B LOTE 38 URB LA PRADERA 2 S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39175', NULL, 'MARCOS SIPAN JAVIER ULISES', '--', '10097968824', '', '', 'MZ B LOTE 38 URB LA PRADERA 2 S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39176', NULL, 'MARCOS SIPAN JAVIER ULISES', '--', '10097968824', '', '', 'MZ B LOTE 38 URB LA PRADERA 2 S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39177', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39178', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39179', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39180', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39181', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39182', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39183', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39184', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39185', NULL, 'FEDERACION CENTRO UNION DE TRABAJADORES DEL SEGURO SOCI', '--', '20186910436', '', '', 'PJ. MIGUEL DE LOS RIOS NRO. 149 (3ER PISO ALT DE LA CDRA 1 DE LA AV GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39186', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39187', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39188', NULL, 'RUTH', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39189', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39190', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39192', NULL, 'MANUEL CHARRA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39194', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39195', NULL, 'SEBASTIAN CONDOR', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39197', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39199', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39200', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39201', NULL, 'JUAN', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39202', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39203', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39204', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39205', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39207', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39208', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39209', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39212', NULL, 'PLUS VISUAL SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMIT', '--', '20522980243', '', '', 'SAN LUCAS NRO. 250 V ROSSI (ALT.CDRA.11 AV.LA CAPILLA Y TARAPACA) LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39214', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39218', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39221', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39222', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39223', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39228', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39231', NULL, 'ROXANA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39232', NULL, 'VISUAL PRINTS S.A.C.', '--', '20557286749', '', '', 'PJ. BALCONCILLO NRO. 182 URB. VICTORIA (CRUCE AV ALCIBAR CON AV. GRIEVE) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39233', NULL, 'VISUAL PRINTS S.A.C.', '--', '20557286749', '', '', 'PJ. BALCONCILLO NRO. 182 URB. VICTORIA (CRUCE AV ALCIBAR CON AV. GRIEVE) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39234', NULL, 'VISUAL PRINTS S.A.C.', '--', '20557286749', '', '', 'PJ. BALCONCILLO NRO. 182 URB. VICTORIA (CRUCE AV ALCIBAR CON AV. GRIEVE) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39235', NULL, 'MILAGROS PATRICIA LOPÉZ ROJAS', '10723831', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39236', NULL, 'MILAGROS PATRICIA LOPÉZ ROJAS', '10723831', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39237', NULL, 'MILAGROS PATRICIA LOPÉZ ROJAS', '10723831', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39244', NULL, 'NAVAJA SEPIA S.A.C', '--', '20545057523', '', '', 'AV. VILLA DEL MAR MZA. I LOTE. 20 RES. SECTOR 2 GRUPO 11 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39248', NULL, 'MARIBEL', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39251', NULL, 'INVERSIONES CASIOLES E.I.R.L.', '--', '20601976529', '', '', 'MZA. Y-4 LOTE. 3-B A.H. JULIO C. TELLO (ALAMEDA DE LOS CHICHARRONES SECTOR 14) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39252', NULL, 'INVERSIONES CASIOLES E.I.R.L.', '--', '20601976529', '', '', 'MZA. Y-4 LOTE. 3-B A.H. JULIO C. TELLO (ALAMEDA DE LOS CHICHARRONES SECTOR 14) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39253', NULL, 'INVERSIONES CASIOLES E.I.R.L.', '--', '20601976529', '', '', 'MZA. Y-4 LOTE. 3-B A.H. JULIO C. TELLO (ALAMEDA DE LOS CHICHARRONES SECTOR 14) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39254', NULL, 'INVERSIONES CASIOLES E.I.R.L.', '--', '20601976529', '', '', 'MZA. Y-4 LOTE. 3-B A.H. JULIO C. TELLO (ALAMEDA DE LOS CHICHARRONES SECTOR 14) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39258', NULL, 'TRANSFORMADORES CARDOZO E.I.R.L.', '--', '20605250450', '', '', 'CAL.CERES NRO. 268 URB. VENTURA ROSSI (ENTRE CUADRA 11 Y 12 DE AV. LA CAPILLA) LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39259', NULL, 'TRANSFORMADORES CARDOZO E.I.R.L.', '--', '20605250450', '', '', 'CAL.CERES NRO. 268 URB. VENTURA ROSSI (ENTRE CUADRA 11 Y 12 DE AV. LA CAPILLA) LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39260', NULL, 'TRANSFORMADORES CARDOZO E.I.R.L.', '--', '20605250450', '', '', 'CAL.CERES NRO. 268 URB. VENTURA ROSSI (ENTRE CUADRA 11 Y 12 DE AV. LA CAPILLA) LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39261', NULL, 'TRANSFORMADORES CARDOZO E.I.R.L.', '--', '20605250450', '', '', 'CAL.CERES NRO. 268 URB. VENTURA ROSSI (ENTRE CUADRA 11 Y 12 DE AV. LA CAPILLA) LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39265', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39267', NULL, 'MARIA FERNADA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39268', NULL, 'GUISALA JUAREZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39269', NULL, 'GUISELA JUAREZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39273', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39275', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39277', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39280', NULL, 'jose novoa', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39283', NULL, 'CHUNGA MANCO MARLENE KATHERINE', '--', '10473713093', '', '', 'calle santa lucila mz f1 lote 16 chorillos-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39284', NULL, 'SANCHEZ PEREZ GUILLERMO', '--', '10453256796', '', '', 'mz v1 lote 23 enrique montenegro s.j.l', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39285', NULL, 'SANCHEZ PEREZ GUILLERMO', '--', '10453256796', '', '', 'mz v1 lote 23 enrique montenegro s.j.l', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39286', NULL, 'SANCHEZ PEREZ GUILLERMO', '--', '10453256796', '', '', 'mz v1 lote 23 enrique montenegro s.j.l', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39287', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39288', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39289', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39294', NULL, 'DIVESA SERVICE S A', '--', '20100708991', '', '', 'AL.POMABAMBA NRO. 578 URB. CHACRA COLORADA (PARALELA A LA CDRA.10 DE ZORRITOS) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39295', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39296', NULL, 'ARACELY', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39297', NULL, 'ARACELY', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39298', NULL, 'ARACELY', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39299', NULL, 'CHAVEZ VALDIVIEZO ANN ELIZABETH', '--', '10460073532', '', '', 'AV CENTRAL N.85 PARAMONGA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39300', NULL, 'CHAVEZ VALDIVIEZO ANN ELIZABETH', '--', '10460073532', '', '', 'AV CENTRAL N.85 PARAMONGA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39304', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39305', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39312', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39318', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39319', NULL, 'INVERSIONES TOMAS VALLE S.A.C', '--', '20476633932', '', '', 'JR. DOMINGO CUETO NRO. 444 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39321', NULL, 'yesica', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39325', NULL, 'GRUPO SEVEN SEAS SAC', '--', '20515506251', '', '', 'CAL.2 NRO. 136 DPTO. B URB. LA CALERITA (ALTURA CDRA. 19 AV. ANGAMOS) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39326', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39327', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39328', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39329', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39330', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39331', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39332', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39333', NULL, 'REAL CHEMICAL CORPORATION S.A.', '--', '20513595931', '', '', 'AV. 2 MZA. J LOTE. 1 URB. PRO INDUSTRIAL (COSTADO PUENTE CHILLON) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39334', NULL, 'REAL CHEMICAL CORPORATION S.A.', '--', '20513595931', '', '', 'AV. 2 MZA. J LOTE. 1 URB. PRO INDUSTRIAL (COSTADO PUENTE CHILLON) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39335', NULL, 'REAL CHEMICAL CORPORATION S.A.', '--', '20513595931', '', '', 'AV. 2 MZA. J LOTE. 1 URB. PRO INDUSTRIAL (COSTADO PUENTE CHILLON) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39336', NULL, 'REAL CHEMICAL CORPORATION S.A.', '--', '20513595931', '', '', 'AV. 2 MZA. J LOTE. 1 URB. PRO INDUSTRIAL (COSTADO PUENTE CHILLON) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39337', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39338', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39339', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39340', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39341', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39342', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39349', NULL, 'jose antonio mall qui quispe', '41677050', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39350', NULL, 'jose antonio mall qui quispe', '41677050', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39351', NULL, 'jose antonio mall qui quispe', '41677050', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39352', NULL, 'jose antonio mall qui quispe', '41677050', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39355', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39356', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39358', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39359', NULL, 'CORINCON G & P SOCIEDAD ANONIMA CERRADA', '--', '20604553947', '', '', 'JR. CALLE CHAUPIHUARANGA NRO. S/N P.J. JOSE CARLOS MARIATEGUI PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39360', NULL, 'CORINCON G & P SOCIEDAD ANONIMA CERRADA', '--', '20604553947', '', '', 'JR. CALLE CHAUPIHUARANGA NRO. S/N P.J. JOSE CARLOS MARIATEGUI PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39361', NULL, 'CORINCON G & P SOCIEDAD ANONIMA CERRADA', '--', '20604553947', '', '', 'JR. CALLE CHAUPIHUARANGA NRO. S/N P.J. JOSE CARLOS MARIATEGUI PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39362', NULL, 'CORINCON G & P SOCIEDAD ANONIMA CERRADA', '--', '20604553947', '', '', 'JR. CALLE CHAUPIHUARANGA NRO. S/N P.J. JOSE CARLOS MARIATEGUI PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39364', NULL, 'CORINCON G & P SOCIEDAD ANONIMA CERRADA', '--', '20604553947', '', '', 'JR. CALLE CHAUPIHUARANGA NRO. S/N P.J. JOSE CARLOS MARIATEGUI PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39365', NULL, 'CORINCON G & P SOCIEDAD ANONIMA CERRADA', '--', '20604553947', '', '', 'JR. CALLE CHAUPIHUARANGA NRO. S/N P.J. JOSE CARLOS MARIATEGUI PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39366', NULL, 'CORINCON G & P SOCIEDAD ANONIMA CERRADA', '--', '20604553947', '', '', 'JR. CALLE CHAUPIHUARANGA NRO. S/N P.J. JOSE CARLOS MARIATEGUI PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39367', NULL, 'CORINCON G & P SOCIEDAD ANONIMA CERRADA', '--', '20604553947', '', '', 'JR. CALLE CHAUPIHUARANGA NRO. S/N P.J. JOSE CARLOS MARIATEGUI PASCO - PASCO - SIMON BOLIVAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39368', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39371', NULL, 'valery vasquez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39374', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39379', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39380', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39381', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39382', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39383', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39384', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39385', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39386', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39387', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39388', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39389', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39390', NULL, 'FERNANDEZ REVILLA ELIZABETH MIRIAM', '--', '10081682203', '', '', 'CALLE 5 290 -SAN ISIDRO', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39391', NULL, 'FERNANDEZ REVILLA ELIZABETH MIRIAM', '--', '10081682203', '', '', 'CALLE 5 290 -SAN ISIDRO', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39392', NULL, 'FERNANDEZ REVILLA ELIZABETH MIRIAM', '--', '10081682203', '', '', 'CALLE 5 290 -SAN ISIDRO', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39393', NULL, 'FERNANDEZ REVILLA ELIZABETH MIRIAM', '--', '10081682203', '', '', 'CALLE 5 290 -SAN ISIDRO', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39394', NULL, 'FERNANDEZ REVILLA ELIZABETH MIRIAM', '--', '10081682203', '', '', 'CALLE 5 290 -SAN ISIDRO', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39397', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39398', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39399', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39400', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39407', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39411', NULL, 'SINCHITULLO LLANTOY AMADOR', '--', '10277252240', '', '', 'AV . MESONES MURO 192-JAEN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39412', NULL, 'SINCHITULLO LLANTOY AMADOR', '--', '10277252240', '', '', 'AV . MESONES MURO 192-JAEN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39414', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39415', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39416', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39417', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39418', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39419', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39420', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39421', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39422', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39423', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39427', NULL, 'MIRTA ESPINOZA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39428', NULL, 'MIRTA ESPINOZA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39429', NULL, 'SUMAQ BERLIN E.I.R.L.', '--', '20608420976', '', '', 'CAL.BERLIN NRO. 309 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39430', NULL, 'SUMAQ BERLIN E.I.R.L.', '--', '20608420976', '', '', 'CAL.BERLIN NRO. 309 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39431', NULL, 'SUMAQ BERLIN E.I.R.L.', '--', '20608420976', '', '', 'CAL.BERLIN NRO. 309 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39433', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39434', NULL, 'GRUPO SEVEN SEAS SAC', '--', '20515506251', '', '', 'CAL.2 NRO. 136 DPTO. B URB. LA CALERITA (ALTURA CDRA. 19 AV. ANGAMOS) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39435', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39436', NULL, 'CENTRO DE ASESORIA Y DESARROLLO EMPRESARIAL DEL PERU S.', '--', '20555517824', '', '', 'CAL.2 MZA. K LOTE. 11 A.V. RIO SANTA (ANTES DEL OVALO INFANTAS) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39437', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39440', NULL, 'lourdes', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39442', NULL, 'ASOCIACION DE PRODUCTORES AGROSOSTENIBLES VILLA ECOLOGI', '--', '20568194951', '', '', 'JR. PRIMAVERA NRO. S/N C.P. SEC UNIDOS SAN RAMON (COSTADO DE LA COOPERATIVA SANGARENI) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39443', NULL, 'ASOCIACION DE PRODUCTORES AGROSOSTENIBLES VILLA ECOLOGI', '--', '20568194951', '', '', 'JR. PRIMAVERA NRO. S/N C.P. SEC UNIDOS SAN RAMON (COSTADO DE LA COOPERATIVA SANGARENI) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39444', NULL, 'ASOCIACION DE PRODUCTORES AGROSOSTENIBLES VILLA ECOLOGI', '--', '20568194951', '', '', 'JR. PRIMAVERA NRO. S/N C.P. SEC UNIDOS SAN RAMON (COSTADO DE LA COOPERATIVA SANGARENI) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39445', NULL, 'ASOCIACION DE PRODUCTORES AGROSOSTENIBLES VILLA ECOLOGI', '--', '20568194951', '', '', 'JR. PRIMAVERA NRO. S/N C.P. SEC UNIDOS SAN RAMON (COSTADO DE LA COOPERATIVA SANGARENI) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39446', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39447', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39448', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39449', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39452', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39453', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39454', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39458', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39459', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39460', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39461', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39462', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39463', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39464', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39465', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39466', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39467', NULL, 'deysi', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39468', NULL, 'MELISSA ORTEGA', '70519672', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39469', NULL, 'MELISSA ORTEGA', '70519672', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39470', NULL, 'MELISSA ORTEGA', '70519672', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39471', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39473', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39474', NULL, 'BRAVO BERROSPI ROSINALDO', '--', '10722574856', '', '', 'AV GRAU 727 - LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39475', NULL, 'BRAVO BERROSPI ROSINALDO', '--', '10722574856', '', '', 'AV GRAU 727 - LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39476', NULL, 'BRAVO BERROSPI ROSINALDO', '--', '10722574856', '', '', 'AV GRAU 727 - LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39477', NULL, 'BRAVO BERROSPI ROSINALDO', '--', '10722574856', '', '', 'AV GRAU 727 - LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39481', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39485', NULL, 'ADELAIDA JULIA CLAUDIO MANDUJANO SOLUCION INTEGRAL SOCI', '--', '20600997247', '', '', 'JR. LAS CASUARINAS NRO. 222 URB. CAYHUAYNA BAJA (AL COSTADO DE LA CHOZA DE TARZAN) HUANUCO - HUANUCO - PILLCO MARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39486', NULL, 'ADELAIDA JULIA CLAUDIO MANDUJANO SOLUCION INTEGRAL SOCI', '--', '20600997247', '', '', 'JR. LAS CASUARINAS NRO. 222 URB. CAYHUAYNA BAJA (AL COSTADO DE LA CHOZA DE TARZAN) HUANUCO - HUANUCO - PILLCO MARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39487', NULL, 'ADELAIDA JULIA CLAUDIO MANDUJANO SOLUCION INTEGRAL SOCI', '--', '20600997247', '', '', 'JR. LAS CASUARINAS NRO. 222 URB. CAYHUAYNA BAJA (AL COSTADO DE LA CHOZA DE TARZAN) HUANUCO - HUANUCO - PILLCO MARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39488', NULL, 'ADELAIDA JULIA CLAUDIO MANDUJANO SOLUCION INTEGRAL SOCI', '--', '20600997247', '', '', 'JR. LAS CASUARINAS NRO. 222 URB. CAYHUAYNA BAJA (AL COSTADO DE LA CHOZA DE TARZAN) HUANUCO - HUANUCO - PILLCO MARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39489', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39491', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39492', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39493', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39497', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39499', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39503', NULL, 'SUSY CONDOR HUAMAN', '44220058', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39504', NULL, 'CORTEZ RAMOS JUAN CARLOS', '--', '10099343619', '', '', 'PSJE OLAVIDE 248-LIMA_LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39508', NULL, 'ada', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39510', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39511', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39512', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39513', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39514', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39515', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39516', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39517', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39518', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39519', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39522', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39524', NULL, 'TARAZONA BRAVO ANDRES ZOCIMO', '--', '10074656612', '', '', 'JR MONTEVIDEO 750-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39525', NULL, 'TARAZONA BRAVO ANDRES ZOCIMO', '--', '10074656612', '', '', 'JR MONTEVIDEO 750-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39526', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39527', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39528', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39530', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39533', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39534', NULL, 'IMPORTACIONES HIRAOKA S.A.C.', '--', '20100016681', '', '', 'AV. ABANCAY NRO. 594 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39535', NULL, 'IMPORTACIONES HIRAOKA S.A.C.', '--', '20100016681', '', '', 'AV. ABANCAY NRO. 594 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39536', NULL, 'IMPORTACIONES HIRAOKA S.A.C.', '--', '20100016681', '', '', 'AV. ABANCAY NRO. 594 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39537', NULL, 'IMPORTACIONES HIRAOKA S.A.C.', '--', '20100016681', '', '', 'AV. ABANCAY NRO. 594 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39539', NULL, 'FIORELA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39540', NULL, 'JENIFER', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39541', NULL, 'YENNIFER OCHANTE OSORIO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39542', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39543', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39544', NULL, 'MOREA FOOD BIKE S.A.C.', '--', '20605702083', '', '', 'MZA. L LOTE. 1 URB. MIRAMAR LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39545', NULL, 'MOREA FOOD BIKE S.A.C.', '--', '20605702083', '', '', 'MZA. L LOTE. 1 URB. MIRAMAR LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39546', NULL, 'EMPERATRIZ SALCEDO FLORES', '72221580', '', '', '', 'CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39547', NULL, 'EMPERATRIZ SALCEDO FLORES', '72221580', '', '', '', 'CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39548', NULL, 'EMPERATRIZ SALCEDO FLORES', '72221580', '', '', '', 'CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39550', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39551', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39552', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39554', NULL, 'VELASQUE PALOMINO VIRGINIA', '--', '10310401507', '', '', 'JR AREQUIPA # 519 ABANCAY -AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39555', NULL, 'VELASQUE PALOMINO VIRGINIA', '--', '10310401507', '', '', 'JR. AREQUIPA #519-ABANCAY -APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39558', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39560', NULL, 'ASOC. PASTORAL DE SERVICIOS MEDICO ASISTENCIALES GOOD H', '--', '20337889167', '', '', 'MLC.BALTA NRO. 956 RES. MIRAFLORES (ALTURA PARQUE DEL AMOR) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39561', NULL, 'ASOC. PASTORAL DE SERVICIOS MEDICO ASISTENCIALES GOOD H', '--', '20337889167', '', '', 'MLC.BALTA NRO. 956 RES. MIRAFLORES (ALTURA PARQUE DEL AMOR) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39562', NULL, 'ASOC. PASTORAL DE SERVICIOS MEDICO ASISTENCIALES GOOD H', '--', '20337889167', '', '', 'MLC.BALTA NRO. 956 RES. MIRAFLORES (ALTURA PARQUE DEL AMOR) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39565', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39567', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39573', NULL, 'INVERSIONES PROLE F & N E.I.R.L.', '--', '20540742716', '', '', 'CAL.CAÑETE NRO. 130 (FTE A POLVOS AZULES) ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39574', NULL, 'INVERSIONES PROLE F & N E.I.R.L.', '--', '20540742716', '', '', 'CAL.CAÑETE NRO. 130 (FTE A POLVOS AZULES) ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39575', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39576', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39577', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39578', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39579', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39580', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39581', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39585', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39586', NULL, 'MAGALI ROMERO', '45114013', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39587', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39588', NULL, 'francisco fernandez jimenez', '44363368', '', '', '', 'chiclayo', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39589', NULL, 'francisco fernandez jimenez', '44363368', '', '', '', 'chiclayo', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39592', NULL, 'michel huiman', '42011300', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39595', NULL, 'TASAYCO ROJAS JUANA MARGOT', '--', '10218618249', '', '', 'JR 16 DE OCTUBRE 801 LAMAS SAN MARTIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39596', NULL, 'TASAYCO ROJAS JUANA MARGOT', '--', '10218618249', '', '', 'JR 16 DE OCTUBRE 801 LAMAS SAN MARTIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39605', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39607', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39610', NULL, 'LUIS ROJAS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39611', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39613', NULL, 'VERILA DIAZ CAMPOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39616', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39617', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39621', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39622', NULL, 'CACERES QUICAÑA ANGELA', '--', '10456328704', '', '', 'JR BELLIDO 215 AYACUCHO- HUAMANGA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39623', NULL, 'CACERES QUICAÑA ANGELA', '--', '10456328704', '', '', 'JR BELLIDO 215 AYACUCHO- HUAMANGA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39624', NULL, 'CACERES QUICAÑA ANGELA', '--', '10456328704', '', '', 'JR BELLIDO 215 AYACUCHO- HUAMANGA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39630', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39631', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39637', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39639', NULL, 'GRUPO OPTICO JR S.R.L.', '--', '20553669937', '', '', 'JR. CUZCO NRO. 412 INT. 303 (ANTES HIRAOKA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39640', NULL, 'GRUPO OPTICO JR S.R.L.', '--', '20553669937', '', '', 'JR. CUZCO NRO. 412 INT. 303 (ANTES HIRAOKA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39641', NULL, 'GRUPO OPTICO JR S.R.L.', '--', '20553669937', '', '', 'JR. CUZCO NRO. 412 INT. 303 (ANTES HIRAOKA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39642', NULL, 'GRUPO OPTICO JR S.R.L.', '--', '20553669937', '', '', 'JR. CUZCO NRO. 412 INT. 303 (ANTES HIRAOKA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39643', NULL, 'GRUPO OPTICO JR S.R.L.', '--', '20553669937', '', '', 'JR. CUZCO NRO. 412 INT. 303 (ANTES HIRAOKA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39644', NULL, 'GRUPO OPTICO JR S.R.L.', '--', '20553669937', '', '', 'JR. CUZCO NRO. 412 INT. 303 (ANTES HIRAOKA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39645', NULL, 'GRUPO OPTICO JR S.R.L.', '--', '20553669937', '', '', 'JR. CUZCO NRO. 412 INT. 303 (ANTES HIRAOKA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39646', NULL, 'GRUPO OPTICO JR S.R.L.', '--', '20553669937', '', '', 'JR. CUZCO NRO. 412 INT. 303 (ANTES HIRAOKA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39649', NULL, 'ARZAPALO LLANA DELIA', '--', '10209021191', '', '', 'UCV#198 LT 32 ZONA Q HUAYCAN ATE-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39650', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39651', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39652', NULL, 'ATILIO TARMEÑO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39653', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39656', NULL, 'ANA MORENO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39664', NULL, 'MUÑOZ GRANDE ANTHONY ROBERT', '--', '10209021191', '', '', 'JR. HUANCABAMBA 780 BREÑA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39665', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39666', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39668', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39669', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39670', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39676', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39679', NULL, 'JULIO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39680', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39681', NULL, 'DANIEL CRUZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39682', NULL, 'NATALY', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39684', NULL, 'CARMEN', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39685', NULL, 'CHAUCA VERA OSCAR MIGUEL', '--', '10436759687', '', '', 'JR ANDAHUAYLAS 180 INT 1147 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39686', NULL, 'CHAUCA VERA OSCAR MIGUEL', '--', '10436759687', '', '', 'JR ANDAHUAYLAS 180 INT 1147 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39687', NULL, 'CHAUCA VERA OSCAR MIGUEL', '--', '10436759687', '', '', 'JR ANDAHUAYLAS 180 INT 1147 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39688', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39689', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39690', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39693', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39694', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39695', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39696', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39700', NULL, 'ROBERTO SIHALER', '02889164', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39701', NULL, 'FRANCISCO SERAFICO BARRETO', '10354108', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39702', NULL, 'LESLI ZAPATA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39705', NULL, 'EL GARAGE AUTOMOTRIZ EMPRESA INDIVIDUAL DE RESPONSABILI', '--', '20604408661', '', '', 'AV. AVIACION NRO. 4007 URB. LA CALERA DE LA MERCED LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39706', NULL, 'EL GARAGE AUTOMOTRIZ EMPRESA INDIVIDUAL DE RESPONSABILI', '--', '20604408661', '', '', 'AV. AVIACION NRO. 4007 URB. LA CALERA DE LA MERCED LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39707', NULL, 'EL GARAGE AUTOMOTRIZ EMPRESA INDIVIDUAL DE RESPONSABILI', '--', '20604408661', '', '', 'AV. AVIACION NRO. 4007 URB. LA CALERA DE LA MERCED LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39708', NULL, 'EL GARAGE AUTOMOTRIZ EMPRESA INDIVIDUAL DE RESPONSABILI', '--', '20604408661', '', '', 'AV. AVIACION NRO. 4007 URB. LA CALERA DE LA MERCED LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39717', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39720', NULL, 'REULT PERU SAC', '--', '20602740448', '', '', 'JR. ARICA NRO. 349 INT. B URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39721', NULL, 'REULT PERU SAC', '--', '20602740448', '', '', 'JR. ARICA NRO. 349 INT. B URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39722', NULL, 'REULT PERU SAC', '--', '20602740448', '', '', 'JR. ARICA NRO. 349 INT. B URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39723', NULL, 'REULT PERU SAC', '--', '20602740448', '', '', 'JR. ARICA NRO. 349 INT. B URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39724', NULL, 'REULT PERU SAC', '--', '20602740448', '', '', 'JR. ARICA NRO. 349 INT. B URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39725', NULL, 'REULT PERU SAC', '--', '20602740448', '', '', 'JR. ARICA NRO. 349 INT. B URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39726', NULL, 'REULT PERU SAC', '--', '20602740448', '', '', 'JR. ARICA NRO. 349 INT. B URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39727', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39729', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39730', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39731', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39732', NULL, 'EYES BUSINESS SAC', '--', '20511561613', '', '', 'JR. PUNO NRO. 631 INT. 5 (ALT. CDRA 7 AV. ABANCAY) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39733', NULL, 'EYES BUSINESS SAC', '--', '20511561613', '', '', 'JR. PUNO NRO. 631 INT. 5 (ALT. CDRA 7 AV. ABANCAY) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39734', NULL, 'EYES BUSINESS SAC', '--', '20511561613', '', '', 'JR. PUNO NRO. 631 INT. 5 (ALT. CDRA 7 AV. ABANCAY) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39735', NULL, 'EYES BUSINESS SAC', '--', '20511561613', '', '', 'JR. PUNO NRO. 631 INT. 5 (ALT. CDRA 7 AV. ABANCAY) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39737', NULL, 'mabel', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39738', NULL, 'TORRES PADILLA VERONICA YSABEL', '--', '10420695034', '', '', 'AV SAN BORJA SUR 824 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39739', NULL, 'TORRES PADILLA VERONICA YSABEL', '--', '10420695034', '', '', 'AV SAN BORJA SUR 824 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39740', NULL, 'TORRES PADILLA VERONICA YSABEL', '--', '10420695034', '', '', 'AV SAN BORJA SUR 824 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39747', NULL, 'VERONICA QUISPE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39748', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39750', NULL, 'MAYEDA MASUMURA JOSE ANTONIO', '--', '10064268789', '', '', 'AV CANAVAL Y MOREYRA 880 URB CORPAC -SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39751', NULL, 'MAYEDA MASUMURA JOSE ANTONIO', '--', '10064268789', '', '', 'AV CANAVAL Y MOREYRA 880 URB CORPAC -SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39752', NULL, 'MAYEDA MASUMURA JOSE ANTONIO', '--', '10064268789', '', '', 'AV CANAVAL Y MOREYRA 880 URB CORPAC -SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39753', NULL, 'CHANGA LOBATON GLADYS ELIZABETH', '--', '10445612184', '', '', 'MZ E LOTE 20 PRIMERA ETAPA DE VIILA ALEJANDRO LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39754', NULL, 'CHANGA LOBATON GLADYS ELIZABETH', '--', '10445612184', '', '', 'MZ E LOTE 20 PRIMERA ETAPA DE VIILA ALEJANDRO LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39755', NULL, 'CHANGA LOBATON GLADYS ELIZABETH', '--', '10445612184', '', '', 'MZ E LOTE 20 PRIMERA ETAPA DE VIILA ALEJANDRO LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39756', NULL, 'CHANGA LOBATON GLADYS ELIZABETH', '--', '10445612184', '', '', 'MZ E LOTE 20 PRIMERA ETAPA DE VIILA ALEJANDRO LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39757', NULL, 'CHANGA LOBATON GLADYS ELIZABETH', '--', '10445612184', '', '', 'MZ E LOTE 20 PRIMERA ETAPA DE VIILA ALEJANDRO LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39758', NULL, 'CHANGA LOBATON GLADYS ELIZABETH', '--', '10445612184', '', '', 'MZ E LOTE 20 PRIMERA ETAPA DE VIILA ALEJANDRO LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39765', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39766', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39768', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39769', NULL, 'ELIZABETH ZAPATA', '42492305', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39774', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39776', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39777', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39778', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39781', NULL, 'CORDOVA SIHUENTA GRACIELA CELESTINA', '--', '10073314041', '', '', 'AV SAN LUIS 1976 STAND 6 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39782', NULL, 'CORDOVA SIHUENTA GRACIELA CELESTINA', '--', '10073314041', '', '', 'AV SAN LUIS 1976 STAND 6 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39783', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39784', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39785', NULL, 'JCM RENTAL S.A.C.', '--', '20553586560', '', '', 'AV. JOSE CARLOS MARIATEGUI NRO. 432 URB. LUCYANA LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39786', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39787', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39788', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39789', NULL, 'LOPEZ LOPEZ ESTEFANIA LIZETH', '--', '10721740949', '', '', 'AV. INDUSTRIAL CDRA4 INT2 INDEPENDENCIA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39790', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39792', NULL, 'BAUTISTA VEGA MIGUEL ANGEL', '--', '10282899065', '', '', 'JR DOS DE MAYO 7771 INT 5 AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39793', NULL, 'BAUTISTA VEGA MIGUEL ANGEL', '--', '10282899065', '', '', 'JR DOS DE MAYO 7771 INT 5 AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39794', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39795', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39796', NULL, 'RUTH CHINGUEL', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39797', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39799', NULL, 'FLOR', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39800', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39806', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39807', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39808', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39809', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39810', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39811', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39812', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39813', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39814', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39816', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39817', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39823', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39824', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39832', NULL, 'pricila muñoz añi', '72495905', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39833', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39835', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39836', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39837', NULL, 'GRUPO TORI SOCIEDAD ANONIMA CERRADA', '--', '20523029194', '', '', 'AV. INCA GARCILASO DE LA VEGA NRO. 1337 INT. 2171 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39846', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39847', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39848', NULL, 'alicia frugones', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39851', NULL, 'alex', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39853', NULL, 'D\'RENZOZ IMPORT EXPORT E.I.R.L.', '--', '20495077471', '', '', 'CAL.PROLONGACION MZA. C LOTE. 01 INT. 1 A.H. 9 DE JUNIO (PROLONG. LA VICTORIA 210) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39854', NULL, 'D\'RENZOZ IMPORT EXPORT E.I.R.L.', '--', '20495077471', '', '', 'CAL.PROLONGACION MZA. C LOTE. 01 INT. 1 A.H. 9 DE JUNIO (PROLONG. LA VICTORIA 210) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39855', NULL, 'D\'RENZOZ IMPORT EXPORT E.I.R.L.', '--', '20495077471', '', '', 'CAL.PROLONGACION MZA. C LOTE. 01 INT. 1 A.H. 9 DE JUNIO (PROLONG. LA VICTORIA 210) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39856', NULL, 'THIAGO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39857', NULL, 'THIAGO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39859', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39861', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39862', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39864', NULL, 'dina luz huamani chota', '44403865', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39866', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39870', NULL, 'INVYCONS E.I.R.L', '--', '20601323461', '', '', 'MZA. B LOTE. 14 H.U. EL TREBOL ICA - PISCO - PISCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39871', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39872', NULL, 'CHUMPITAZ CERNA PEDRO ALVARO', '--', '10800705946', '', '', 'CALLE CONTISUYO 673 ZARATE- SAN JUAN DE LURIGANCHO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39873', NULL, 'CHUMPITAZ CERNA PEDRO ALVARO', '--', '10800705946', '', '', 'CALLE CONTISUYO 673 ZARATE- SAN JUAN DE LURIGANCHO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39874', NULL, 'CHUMPITAZ CERNA PEDRO ALVARO', '--', '10800705946', '', '', 'CALLE CONTISUYO 673 ZARATE- SAN JUAN DE LURIGANCHO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39875', NULL, 'CHUMPITAZ CERNA PEDRO ALVARO', '--', '10800705946', '', '', 'CALLE CONTISUYO 673 ZARATE- SAN JUAN DE LURIGANCHO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39876', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39877', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39878', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39879', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39880', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39881', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39883', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39884', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39885', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39887', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39888', NULL, 'PANTA S.A.C.', '--', '20605617981', '', '', 'CAL.PRECIADO NRO. 127 DPTO. PISO INT. 3ER LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39889', NULL, 'PANTA S.A.C.', '--', '20605617981', '', '', 'CAL.PRECIADO NRO. 127 DPTO. PISO INT. 3ER LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39890', NULL, 'PANTA S.A.C.', '--', '20605617981', '', '', 'CAL.PRECIADO NRO. 127 DPTO. PISO INT. 3ER LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39891', NULL, 'PANTA S.A.C.', '--', '20605617981', '', '', 'CAL.PRECIADO NRO. 127 DPTO. PISO INT. 3ER LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39892', NULL, 'KALLPA SERVICIOS EMPRESARIALES S.A.C.', '--', '20607549231', '', '', 'OTR.VILLA EL POLVORIN MZA. N LOTE. 03 URB. VILLA EL POLVORIN LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39893', NULL, 'KALLPA SERVICIOS EMPRESARIALES S.A.C.', '--', '20607549231', '', '', 'OTR.VILLA EL POLVORIN MZA. N LOTE. 03 URB. VILLA EL POLVORIN LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39894', NULL, 'KALLPA SERVICIOS EMPRESARIALES S.A.C.', '--', '20607549231', '', '', 'OTR.VILLA EL POLVORIN MZA. N LOTE. 03 URB. VILLA EL POLVORIN LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39895', NULL, 'KALLPA SERVICIOS EMPRESARIALES S.A.C.', '--', '20607549231', '', '', 'OTR.VILLA EL POLVORIN MZA. N LOTE. 03 URB. VILLA EL POLVORIN LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39896', NULL, 'KALLPA SERVICIOS EMPRESARIALES S.A.C.', '--', '20607549231', '', '', 'OTR.VILLA EL POLVORIN MZA. N LOTE. 03 URB. VILLA EL POLVORIN LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39904', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39905', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39908', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39909', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39911', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39912', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39913', NULL, 'max eufracio', '10285770', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39914', NULL, 'leonardo', '42007675', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39916', NULL, 'heidy martinez', '61297454', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39918', NULL, 'PAREDES CRISTINO CINDY MARIBEL', '--', '10440640368', '', '', 'JR. HUMBOL #1582 LA VICTORIA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39920', NULL, 'elizabeth quispe', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39923', NULL, 'FRESHOP', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39926', NULL, 'EDUARDO PANTA RODRIGUEZ', '03492755', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39927', NULL, 'EDUARDO PANTA RODRIGUEZ', '03492755', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39928', NULL, 'EDUARDO PANTA RODRIGUEZ', '03492755', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39929', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39930', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39931', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39933', NULL, 'lelie huaman', '47922371', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39937', NULL, 'VASQUEZ SOSA MELISSA FIORELLA', '--', '10728716369', '', '', 'JR LAMPA 1147 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39938', NULL, 'VASQUEZ SOSA MELISSA FIORELLA', '--', '10728716369', '', '', 'JR LAMPA 1147 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39939', NULL, 'VASQUEZ SOSA MELISSA FIORELLA', '--', '10728716369', '', '', 'JR LAMPA 1147 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39940', NULL, 'VASQUEZ SOSA MELISSA FIORELLA', '--', '10728716369', '', '', 'JR LAMPA 1147 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39941', NULL, 'JIMENEZ MEDICOS ASOCIADOS S.A.C.', '--', '20602716342', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 4640 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39942', NULL, 'JIMENEZ MEDICOS ASOCIADOS S.A.C.', '--', '20602716342', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 4640 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39943', NULL, 'JIMENEZ MEDICOS ASOCIADOS S.A.C.', '--', '20602716342', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 4640 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39945', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39946', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39947', NULL, 'OMAR', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39953', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39958', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39959', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39960', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39961', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39962', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39963', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39964', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39965', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39966', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39967', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39968', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39969', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39970', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39971', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39972', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39973', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39974', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39975', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39976', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39977', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39978', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39979', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39980', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39981', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39982', NULL, 'RONALD MILTON MORA HERNANDEZ', '06783899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39983', NULL, 'VELASQUE PALOMINO VIRGINIA', '--', '10310401507', '', '', 'JR AREQUIPA # 519 ABANCAY - APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39984', NULL, 'VELASQUE PALOMINO VIRGINIA', '--', '10310401507', '', '', 'JR AREQUIPA # 519 ABANCAY - APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39985', NULL, 'VELASQUE PALOMINO VIRGINIA', '--', '10310401507', '', '', 'JR AREQUIPA # 519 ABANCAY - APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39988', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39989', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39990', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39993', NULL, 'PEREYRA MENDIZABAL RUTH YOLANDA', '--', '10015433898', '', '', 'AV. CAYETANO HEREDIA #380 JESUS MARIA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39996', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39998', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('39999', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40000', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40002', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40003', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40006', NULL, 'magnolia laveriano lopez', '80205393', '', '', '', 'ancash-huaraz', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40007', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40010', NULL, 'ASOCIACION EVANGELICA DE LA MISION ISRAELITA DEL NUEVO ', '--', '20147968605', '', '', 'AV. MORRO SOLAR NRO. 1234 DPTO. 2PIS URB. LAS GARDENIAS (ALT DE PROSEGUR) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40013', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40014', NULL, 'INTA MAMANI DE VELIZ FELICIANA', '--', '10080315584', '', '', 'MZ O9 LOTE 8 ASOC DE CASA BLANCA S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40015', NULL, 'INTA MAMANI DE VELIZ FELICIANA', '--', '10080315584', '', '', 'MZ O9 LOTE 8 ASOC DE CASA BLANCA S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40016', NULL, 'INTA MAMANI DE VELIZ FELICIANA', '--', '10080315584', '', '', 'MZ O9 LOTE 8 ASOC DE CASA BLANCA S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40017', NULL, 'INTA MAMANI DE VELIZ FELICIANA', '--', '10080315584', '', '', 'MZ O9 LOTE 8 ASOC DE CASA BLANCA S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40019', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40020', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40021', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40022', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40025', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40030', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40035', NULL, 'GUADALUPE NAVARRO', '25558411', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40038', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40039', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40042', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40043', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40044', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40045', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40046', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40047', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40048', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40050', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40051', NULL, 'IMPORTACIONES EVOLUTIONS MOTORS SOCIEDAD ANONIMA CERRAD', '--', '20549215948', '', '', 'JR. SAENZ PEÑA NRO. 204 (ALT. PLAZA MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40052', NULL, 'IMPORTACIONES EVOLUTIONS MOTORS SOCIEDAD ANONIMA CERRAD', '--', '20549215948', '', '', 'JR. SAENZ PEÑA NRO. 204 (ALT. PLAZA MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40053', NULL, 'IMPORTACIONES EVOLUTIONS MOTORS SOCIEDAD ANONIMA CERRAD', '--', '20549215948', '', '', 'JR. SAENZ PEÑA NRO. 204 (ALT. PLAZA MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40054', NULL, 'IMPORTACIONES EVOLUTIONS MOTORS SOCIEDAD ANONIMA CERRAD', '--', '20549215948', '', '', 'JR. SAENZ PEÑA NRO. 204 (ALT. PLAZA MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40055', NULL, 'IMPORTACIONES EVOLUTIONS MOTORS SOCIEDAD ANONIMA CERRAD', '--', '20549215948', '', '', 'JR. SAENZ PEÑA NRO. 204 (ALT. PLAZA MANCO CAPAC) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40059', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40060', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40061', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40065', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40067', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40077', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40078', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40079', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40080', NULL, 'evelyn tacsa', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40083', NULL, 'INDIE CAFE & CONCEPT STORE E.I.R.L.', '--', '20609017881', '', '', 'CAL.CALLE PALACIO NRO. 126 INT. C OTR. CENTRO HISTORICO DEL CUSCO CUSCO - CUSCO - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40084', NULL, 'INDIE CAFE & CONCEPT STORE E.I.R.L.', '--', '20609017881', '', '', 'CAL.CALLE PALACIO NRO. 126 INT. C OTR. CENTRO HISTORICO DEL CUSCO CUSCO - CUSCO - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40090', NULL, 'CORDOVA REBAZA MIGUEL ANGEL', '--', '10329695188', '', '', 'CALLLE SALAVERRY MZ D LOTE1 CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40091', NULL, 'CORDOVA REBAZA MIGUEL ANGEL', '--', '10329695188', '', '', 'CALLLE SALAVERRY MZ D LOTE1 CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40092', NULL, 'CORDOVA REBAZA MIGUEL ANGEL', '--', '10329695188', '', '', 'CALLLE SALAVERRY MZ D LOTE1 CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40093', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40096', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40097', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40098', NULL, 'GRACE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40100', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40102', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40104', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40106', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40107', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40108', NULL, 'WALTER', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40110', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40112', NULL, 'jose figueroa', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40113', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40114', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40115', NULL, 'evelyn', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40116', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40117', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40119', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40126', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40127', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40128', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40129', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40140', NULL, 'EDUARDO PANTA', '03492755', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40141', NULL, 'EDUARDO PANTA', '03492755', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40143', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40150', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40152', NULL, 'CARDENAS ZUÑIGA VDA DE SANCHEZ ZOILA ROSA', '--', '10072449601', '', '', 'AV 6 DE AGOSTO S/N JESUS MARIA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40153', NULL, 'CARDENAS ZUÑIGA VDA DE SANCHEZ ZOILA ROSA', '--', '10072449601', '', '', 'AV 6 DE AGOSTO S/N JESUS MARIA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40154', NULL, 'CARDENAS ZUÑIGA VDA DE SANCHEZ ZOILA ROSA', '--', '10072449601', '', '', 'AV 6 DE AGOSTO S/N JESUS MARIA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40157', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40159', NULL, 'EDITH TIMANA ROSA PEREZ', '08643929', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40160', NULL, 'EDITH TIMANA ROSA PEREZ', '08643929', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40161', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40165', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40168', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40172', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40174', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40175', NULL, 'KP SERVER S.A.C.', '--', '20548675147', '', '', 'CAL.UCAYALI MZA. L3 LOTE. 15 URB. OLLANTAY (ALT. ESTADIO OLLANTAY) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40176', NULL, 'KP SERVER S.A.C.', '--', '20548675147', '', '', 'CAL.UCAYALI MZA. L3 LOTE. 15 URB. OLLANTAY (ALT. ESTADIO OLLANTAY) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40177', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40183', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40184', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40185', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40186', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40191', NULL, 'JAVC E.I.R.L.', '--', '20544022360', '', '', 'MZA. E LOTE. 8 RES. LAS GARDENIAS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40194', NULL, 'juan lorenzo', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40195', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40197', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40199', NULL, 'EDUARDO huanca torres', '09445028', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40200', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40204', NULL, 'yurico miranda', '46641791', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40205', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40206', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40207', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40208', NULL, 'LARA MARQUEZ MANUEL ALBERTO', '--', '10098551161', '', '', 'JR COMERCIO 1311 CHIQUIAN -ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40209', NULL, 'LARA MARQUEZ MANUEL ALBERTO', '--', '10098551161', '', '', 'JR COMERCIO 1311 CHIQUIAN -ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40210', NULL, 'LARA MARQUEZ MANUEL ALBERTO', '--', '10098551161', '', '', 'JR COMERCIO 1311 CHIQUIAN -ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40211', NULL, 'LARA MARQUEZ MANUEL ALBERTO', '--', '10098551161', '', '', 'JR COMERCIO 1311 CHIQUIAN -ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40212', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40213', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40214', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40215', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40216', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40217', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40220', NULL, 'JAVC E.I.R.L.', '--', '20544022360', '', '', 'MZA. E LOTE. 8 RES. LAS GARDENIAS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40221', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40222', NULL, 'RODRIGUEZ ALVARADO EDGAR LUCIO', '--', '10097400780', '', '', 'AV. LA ALBORADA #178 COMAS-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40223', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40226', NULL, 'secundaria ie6048', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40239', NULL, 'INVERSIONES NAVA E.I.R.L.', '--', '20605178643', '', '', 'JR. LAMBAYEQUE NRO. 3763 LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40249', NULL, 'CADEL INGENIERIA Y PROYECTOS S.R.L.', '--', '20521674009', '', '', 'AV. SEPARADORA INDUSTRIAL MZA. I LOTE. 29 A.H. SICUANI (ENTRE PQUE LOS ANILLOS Y AV STA ROSA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40250', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40251', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40252', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40254', NULL, 'dalila guevara diaz', '71388438', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40257', NULL, 'luz piyaca', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40263', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40265', NULL, 'yesica', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40268', NULL, 'LUIS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40273', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40276', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40278', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40279', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40280', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40281', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40282', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40283', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40284', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40285', NULL, 'DAVNEGOSYA S.A.C.', '--', '20606319623', '', '', 'JR. JULIO CESAR TELLO NRO. 940 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40286', NULL, 'DAVNEGOSYA S.A.C.', '--', '20606319623', '', '', 'JR. JULIO CESAR TELLO NRO. 940 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40287', NULL, 'DAVNEGOSYA S.A.C.', '--', '20606319623', '', '', 'JR. JULIO CESAR TELLO NRO. 940 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40288', NULL, 'DAVNEGOSYA S.A.C.', '--', '20606319623', '', '', 'JR. JULIO CESAR TELLO NRO. 940 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40289', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40293', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40294', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40298', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40299', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40300', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40301', NULL, 'PROTECCION & CONTROL SECURITY CORPS S.A.C', '--', '20606027274', '', '', 'AV. HUANDOY NRO. 7468 URB. PUERTA DE PRO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40302', NULL, 'PROTECCION & CONTROL SECURITY CORPS S.A.C.', '--', '20606027274', '', '', 'AV. HUANDOY NRO. 7468 URB. PUERTA DE PRO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40303', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40304', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40305', NULL, 'MAYERLI CARPIO', '44366245', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40306', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40308', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40309', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40310', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40311', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40312', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40314', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40315', NULL, 'CHARLES GABRIEL', '09979369', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40316', NULL, 'VARIOS', '17830441', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40318', NULL, 'MARIA RODRIGUEZ', '40279882', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40319', NULL, 'MARIA RODRIGUEZ', '40279882', '', '', '', 'PUENTE VIRU', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40320', NULL, 'FERNANDO', '08958885', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40321', NULL, 'AIDA GUERRA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40322', NULL, 'YACHACHIN ALIAGA DE ESPINOZA EMILIA IRENE', '--', '10105188396', '', '', 'JR.LAMPA #782 CERCADO DE LIMA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40331', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40332', NULL, 'YANET CABALLERO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40336', NULL, 'IMAGENES Y NEGOCIACIONES FAMAR E.I.R.L.', '--', '20451480503', '', '', 'AV. SAN MARTIN NRO. 810 INT. 3 (ALTURA DE METRO DE LA AV. SUCRE) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40341', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40345', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40346', NULL, 'maria weston', '07392061', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40354', NULL, 'C.G CORAZON DEL PINO', '00000734', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40355', NULL, 'C.G CORAZON DEL PINO', '00000734', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40356', NULL, 'C.G CORAZON DEL PINO', '00000734', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40357', NULL, 'INSTITUCION EDUCATIVA NUESTRA SEÑORA DE LA SABIDURIA', '--', '20601986940', '', '', 'AV. BERNARDO BALAGUER NRO. S/N URB. ÑAÑA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40362', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40363', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40364', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40365', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40368', NULL, 'sonia', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40371', NULL, 'ZAFIRO NEGOCIOS EMPRESA INDIVIDUAL DE RESPONSABILIDAD L', '--', '20606025760', '', '', 'CAL.HUIRACOCHA NRO. 287 URB. ZARATE (FRENTE A MIFARMA) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40374', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40375', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40376', NULL, 'noemi reyes', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40377', NULL, 'carolina yauri lazaro', '40726455', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40379', NULL, 'gustavo', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40382', NULL, 'daniel lazo', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40387', NULL, 'oscar veliz', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40388', NULL, 'oscar veliz', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40389', NULL, 'INVERSIONES GASTRONOMICAS ANTUCO S.A.C.', '--', '20600576438', '', '', 'AV. ELMER FAUCETT NRO. 379 URB. MARANGA ETAPA SEIS LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40390', NULL, 'INVERSIONES GASTRONOMICAS ANTUCO S.A.C.', '--', '20600576438', '', '', 'AV. ELMER FAUCETT NRO. 379 URB. MARANGA ETAPA SEIS LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40391', NULL, 'INVERSIONES GASTRONOMICAS ANTUCO S.A.C.', '--', '20600576438', '', '', 'AV. ELMER FAUCETT NRO. 379 URB. MARANGA ETAPA SEIS LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40392', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40393', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40394', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40395', NULL, 'DANIELA GARCIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40396', NULL, 'DANIELA GARCIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40397', NULL, 'DANIELA GARCIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40398', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40399', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40400', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40403', NULL, 'MARISABEL BARRIOS VARGAS', '42817808', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40404', NULL, 'MARISABEL BARRIOS VARGAS', '42817808', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40406', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40407', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40408', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40409', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40410', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40414', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40415', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40416', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40417', NULL, 'BERTHA CALANCHE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40426', NULL, 'POMA & DE LA CRUZ ASOCIADOS S.R.L', '--', '20608516451', '', '', 'AV. CORONEL SAMUEL ALCAZAR NRO. 448 URB. EL MANZANO LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40427', NULL, 'SHAMI BUBBLE SHOP S.A.C.', '--', '20608722565', '', '', 'AV. ABEL B DU PETIT THOUARS NRO. 2809 URB. FUNDO CONDE DE SAN ISIDRO LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40428', NULL, 'PRIMITIVA LOPEZ RIOS', '10195999', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40430', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40432', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40433', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40434', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40435', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40436', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40438', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40439', NULL, 'DELY SOFY PERU E.I.R.L.', '--', '20600218906', '', '', 'JR. CARMEN NRO. 411 LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40440', NULL, 'DELY SOFY PERU E.I.R.L.', '--', '20600218906', '', '', 'JR. CARMEN NRO. 411 LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40443', NULL, 'norma mallqui', '31645879', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40452', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40453', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40454', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40455', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40456', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40457', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40458', NULL, 'CONNECTING BPO S.R.L.', '--', '20602112285', '', '', 'MZA. C LOTE. 16 ASC. JARDINES DE SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40461', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40463', NULL, 'mo0nica salinas', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40464', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40465', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40466', NULL, 'dina leon guzman', '32044903', '', '', '', 'carhuaz-ancash', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40467', NULL, 'antonieta garcia', '10184808', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40470', NULL, 'YUMPE TINTAYA JESUS', '--', '10100970509', '', '', 'AV. LATINOAMERICA 481- V.M.T', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40471', NULL, 'YUMPE TINTAYA JESUS', '--', '10100970509', '', '', 'AV. LATINOAMERICA 481- V.M.T', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40472', NULL, 'YUMPE TINTAYA JESUS', '--', '10100970509', '', '', 'AV. LATINOAMERICA 481- V.M.T', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40473', NULL, 'YUMPE TINTAYA JESUS', '--', '10100970509', '', '', 'AV. LATINOAMERICA 481- V.M.T', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40474', NULL, 'YUMPE TINTAYA JESUS', '--', '10100970509', '', '', 'AV. LATINOAMERICA 481- V.M.T', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40475', NULL, 'YUMPE TINTAYA JESUS', '--', '10100970509', '', '', 'AV. LATINOAMERICA 481- V.M.T', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40476', NULL, 'YUMPE TINTAYA JESUS', '--', '10100970509', '', '', 'AV. LATINOAMERICA 481- V.M.T', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40478', NULL, 'INVERSIONES & NEGOCIOS DON JUAN S.A.C.', '--', '20601984793', '', '', 'AV. EDUARDO DE HABICH NRO. 550 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40479', NULL, 'INVERSIONES & NEGOCIOS DON JUAN S.A.C.', '--', '20601984793', '', '', 'AV. EDUARDO DE HABICH NRO. 550 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40480', NULL, 'INVERSIONES & NEGOCIOS DON JUAN S.A.C.', '--', '20601984793', '', '', 'AV. EDUARDO DE HABICH NRO. 550 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40481', NULL, 'INVERSIONES & NEGOCIOS DON JUAN S.A.C.', '--', '20601984793', '', '', 'AV. EDUARDO DE HABICH NRO. 550 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40483', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40484', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40485', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40486', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40487', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40488', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40489', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40491', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40492', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40493', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40497', NULL, 'PANDA SEGURIDAD E HIGIENE INDUSTRIAL S.A.C.', '--', '20608541820', '', '', 'AV. ZARUMILLA NRO. 1581 URB. JOSE GALVEZ (ALT DEL MERCADO PARADERO 9) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40498', NULL, 'PANDA SEGURIDAD E HIGIENE INDUSTRIAL S.A.C.', '--', '20608541820', '', '', 'AV. ZARUMILLA NRO. 1581 URB. JOSE GALVEZ (ALT DEL MERCADO PARADERO 9) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40499', NULL, 'PANDA SEGURIDAD E HIGIENE INDUSTRIAL S.A.C.', '--', '20608541820', '', '', 'AV. ZARUMILLA NRO. 1581 URB. JOSE GALVEZ (ALT DEL MERCADO PARADERO 9) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40500', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40501', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40502', NULL, 'vanesa vilca', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40503', NULL, 'vanesa vilca', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40505', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40506', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40510', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40511', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40512', NULL, 'NIDIA FERNANDEZ DE GALVES', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40513', NULL, 'NIDIA FERNANDEZ DE GALVES', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40514', NULL, 'NIDIA FERNANDEZ DE GALVES', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40515', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40516', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40517', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40518', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40519', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40520', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40521', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40522', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40526', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40527', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40528', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40530', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40531', NULL, 'VILLANUEVA VALVERDE ARTURO JAVIER', '--', '10107480086', '', '', 'AV REVOLUCION 2300 COLLIQUE- COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40532', NULL, 'VILLANUEVA VALVERDE ARTURO JAVIER', '--', '10107480086', '', '', 'AV REVOLUCION 2300 COLLIQUE- COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40533', NULL, 'VILLANUEVA VALVERDE ARTURO JAVIER', '--', '10107480086', '', '', 'AV REVOLUCION 2300 COLLIQUE- COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40534', NULL, 'LILIAN', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40535', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40536', NULL, 'RAFAEL DIAZ', '27279728', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40537', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40539', NULL, 'TARGET MARKETING OUTSOURCING FORCE S.A.C.', '--', '20601051690', '', '', 'JR. HUANCAYO NRO. 288 INT. 503 OTR. CERCADO DE LIMA (JIRON HUNACAYO CRUCE CON AV. GUZMAN BLAN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40540', NULL, 'TARGET MARKETING OUTSOURCING FORCE S.A.C.', '--', '20601051690', '', '', 'JR. HUANCAYO NRO. 288 INT. 503 OTR. CERCADO DE LIMA (JIRON HUNACAYO CRUCE CON AV. GUZMAN BLAN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40541', NULL, 'TARGET MARKETING OUTSOURCING FORCE S.A.C.', '--', '20601051690', '', '', 'JR. HUANCAYO NRO. 288 INT. 503 OTR. CERCADO DE LIMA (JIRON HUNACAYO CRUCE CON AV. GUZMAN BLAN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40542', NULL, 'TARGET MARKETING OUTSOURCING FORCE S.A.C.', '--', '20601051690', '', '', 'JR. HUANCAYO NRO. 288 INT. 503 OTR. CERCADO DE LIMA (JIRON HUNACAYO CRUCE CON AV. GUZMAN BLAN) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40543', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40550', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40551', NULL, 'EXPOINCA S.A.C', '--', '20607075761', '', '', 'AV. TUPAC AMARU MZA. D2 LOTE. 18 (FRENTE A LA TORNERIA CUADROS) CUSCO - LA CONVENCION - KIMBIRI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40552', NULL, 'EXPOINCA S.A.C', '--', '20607075761', '', '', 'AV. TUPAC AMARU MZA. D2 LOTE. 18 (FRENTE A LA TORNERIA CUADROS) CUSCO - LA CONVENCION - KIMBIRI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40553', NULL, 'EXPOINCA S.A.C', '--', '20607075761', '', '', 'AV. TUPAC AMARU MZA. D2 LOTE. 18 (FRENTE A LA TORNERIA CUADROS) CUSCO - LA CONVENCION - KIMBIRI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40554', NULL, 'celemias segura ascencios', '23097974', '', '', '', 'huacaybamba-huanuco', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40555', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40556', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40557', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40559', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40560', NULL, 'celemias segura ascencios', '23097974', '', '', '', 'huacaybamba-huanuco', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40561', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40562', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40563', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40565', NULL, 'ENVASES INDUSTRIALES DEL PERU E.I.R.L.', '--', '20606241616', '', '', 'AV. CARRETERA CENTRAL KM. 14.8 C.P. GLORIA GRANDE SEC.31 (GRIFO GLORIA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40567', NULL, 'carlos enrique gonzales said de la oliva', '16725471', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40569', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40570', NULL, 'ROSA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40575', NULL, 'ZEMTEL S.A.C.', '--', '20482312684', '', '', '20482312684', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40578', NULL, 'gladys añi', '08060455', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40580', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40581', NULL, 'maritza', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40584', NULL, 'EL GOURMET URBANO S.A.C.', '--', '20600213203', '', '', 'CAL.COLON NRO. 601 INT. 156 (CENTRO COMERCIAL PLAZA EL SOL) LIMA - HUAURA - HUACHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40585', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40586', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40587', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40588', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40589', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40593', NULL, 'pereyra pinedo sue ellen', '41453044', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40594', NULL, 'pereyra pinedo sue ellen', '41453044', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40595', NULL, 'pereyra pinedo sue ellen', '41453044', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40599', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40600', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40601', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40602', NULL, 'maria coronado', '25778024', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40606', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40607', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40608', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40609', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40613', NULL, 'ORTIZ VELASQUEZ DIANA CONSUELO', '--', '10469066601', '', '', 'CALLE B MZ D LOTE 48 INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40614', NULL, 'ORTIZ VELASQUEZ DIANA CONSUELO', '--', '10469066601', '', '', 'CALLE B MZ D LOTE 48 INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40615', NULL, 'ORTIZ VELASQUEZ DIANA CONSUELO', '--', '10469066601', '', '', 'CALLE B MZ D LOTE 48 INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40618', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40621', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40622', NULL, 'OLIVIA GUARDOIA FLORES DE LAMAS', '07365084', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40623', NULL, 'OLIVIA GUARDIA FLORES DE LAMAS', '07365084', '', '', '', 'MANUEL UGARTE CHAMORRO 173 URB.FORTIS LA VICTORIA-LIMA', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40624', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40626', NULL, 'NINA KILLA EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITA', '--', '20601017882', '', '', 'MZA. 8 LOTE. 7 S M PORRAS FERREY D PEREZ GOD LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40627', NULL, 'NINA KILLA EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITA', '--', '20601017882', '', '', 'MZA. 8 LOTE. 7 S M PORRAS FERREY D PEREZ GOD LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40628', NULL, 'NINA KILLA EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITA', '--', '20601017882', '', '', 'MZA. 8 LOTE. 7 S M PORRAS FERREY D PEREZ GOD LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40629', NULL, 'GRUPO SALUD SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMIT', '--', '20300861556', '', '', 'CAL.PEDRO SOLARI NRO. 242 LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40630', NULL, 'GRUPO SALUD SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMIT', '--', '20300861556', '', '', 'CAL.PEDRO SOLARI NRO. 242 LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40632', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40637', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40639', NULL, 'zoe aquemi', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40640', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40641', NULL, 'INKA CROPS S.A.', '--', '20291939083', '', '', 'AV. EL SANTUARIO NRO. 1127 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40642', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40653', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40654', NULL, 'AMFA VITRUM S.A. Tipo Contribuyente: SOCIEDAD ANONIMA', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40655', NULL, 'AMFA VITRUM S.A. Tipo Contribuyente: SOCIEDAD ANONIMA', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40656', NULL, 'AMFA VITRUM S.A. Tipo Contribuyente: SOCIEDAD ANONIMA', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40657', NULL, 'AMFA VITRUM S.A. Tipo Contribuyente: SOCIEDAD ANONIMA', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40658', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40661', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40662', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40663', NULL, 'AMFA VITRUM S.A.', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40664', NULL, 'AMFA VITRUM S.A.', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40665', NULL, 'AMFA VITRUM S.A.', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40666', NULL, 'AMFA VITRUM S.A.', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40668', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40669', NULL, 'AMFA VITRUM S.A.', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40670', NULL, 'AMFA VITRUM S.A.', '--', '20378148813', '', '', 'CAL.LAS HERRAMIENTAS NRO. 1855 A.H. UNO DE SEPTIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40671', NULL, 'PORRAS VILA MIRIAM VIRGINIA', '--', '10200681253', '', '', 'PSJE GREGORIO MENDOZA MZ H LOTE 2-LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40672', NULL, 'PORRAS VILA MIRIAM VIRGINIA', '--', '10200681253', '', '', 'PSJE GREGORIO MENDOZA MZ H LOTE 2-LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40673', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40676', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40677', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40678', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40679', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40680', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40681', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40682', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40683', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40684', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40685', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40686', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40687', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40688', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40689', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40690', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40691', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40692', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40693', NULL, 'JC KAFF COMPAÑIA S.A.C. - JC KAFF S.A.C.', '--', '20602424082', '', '', 'AV. COLOMBIA NRO. 267 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40694', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40696', NULL, 'wilfredo barboza', '80228653', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40700', NULL, 'lucero', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40701', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40702', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40708', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40709', NULL, 'IMPRESORES EDITORES MIRAFLORES SOCIEDAD COMERCIAL DE RE', '--', '20510030398', '', '', 'CAL.LA ESPERANZA NRO. 390 URB. N. RODRIGO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40710', NULL, 'RAMADITA NORTEÑA S.R.L.', '--', '20604868204', '', '', 'MZA. 09 LOTE. 55 A.H. HUAYCAN (UCV 09 AV MARIATEGUI POR PLAZA DE ARMAS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40716', NULL, 'CARLOS CAPCHA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40717', NULL, 'LAURA PORTA AQUILINA MARGARITA', '--', '10159436409', '', '', 'SECTOR 1BARRIO MZ K 1 LOTE 24 IV ETAPA URB PACHACAMAC -VES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40718', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40719', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40720', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40732', NULL, 'TANIA OCOLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40733', NULL, 'TANIA OCOLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40734', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40735', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40737', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40739', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40740', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40745', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40746', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40747', NULL, 'BROCHETA BAR S.A.C.', '--', '20608537164', '', '', 'JR. MARISCAL DE LAS HERAS NRO. 216 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40748', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40749', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40752', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40753', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40754', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40755', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40756', NULL, 'AYALA ORTEGA JUAN CARLOS', '--', '10086499709', '', '', 'AV SAENZ PEÑA N 554 A 121 GALERIA POLVOS  CHALACOS CALLAO PROV. CONST. DEL CALLAO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40757', NULL, 'AYALA ORTEGA JUAN CARLOS', '--', '10086499709', '', '', 'AV SAENZ PEÑA N 554 A 121 GALERIA POLVOS  CHALACOS CALLAO PROV. CONST. DEL CALLAO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40758', NULL, 'AYALA ORTEGA JUAN CARLOS', '--', '10086499709', '', '', 'AV SAENZ PEÑA N 554 A 121 GALERIA POLVOS  CHALACOS CALLAO PROV. CONST. DEL CALLAO -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40759', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40760', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40761', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40762', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40763', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40764', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40765', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40766', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40767', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40771', NULL, 'MARIBEL', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40772', NULL, 'LAS BARRAS CEVICHERAS PERÚ SOCIEDAD ANONIMA CERRADA', '--', '20601193427', '', '', 'AV. SAN LUIS NRO. 1960 LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40775', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40776', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40777', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40778', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40787', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40788', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40789', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40790', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40791', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40792', NULL, 'ASOCIACION CULTURAL BRISAS DEL TITICACA', '--', '20100642281', '', '', 'CAL.HEROES DE TARAPACA NRO. 168 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40793', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40796', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40797', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40798', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40802', NULL, 'CAL.HEROES DE TARAPACA NRO. 168 LIMA - LIMA - LIMA', '--', '10304884474', '', '', 'AV. AREQUIPA 444 ATICO-AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40803', NULL, 'TREVIÑOS CHAUCA CATALINA BELDA', '--', '10304884474', '', '', 'AV. AREQUIPA #444 ATICO-AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40804', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40805', NULL, 'FRIO CARGO S.A.C.', '--', '20553429111', '', '', 'CAL.6 MZA. G LOTE. 21 URB. VILLAFLORES (AV PRIMERO DE MAYO CON ALGAROBOS) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40806', NULL, 'FRIO CARGO S.A.C.', '--', '20553429111', '', '', 'CAL.6 MZA. G LOTE. 21 URB. VILLAFLORES (AV PRIMERO DE MAYO CON ALGAROBOS) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40807', NULL, 'FRIO CARGO S.A.C.', '--', '20553429111', '', '', 'CAL.6 MZA. G LOTE. 21 URB. VILLAFLORES (AV PRIMERO DE MAYO CON ALGAROBOS) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40808', NULL, 'FRIO CARGO S.A.C.', '--', '20553429111', '', '', 'CAL.6 MZA. G LOTE. 21 URB. VILLAFLORES (AV PRIMERO DE MAYO CON ALGAROBOS) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40809', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40810', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40811', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40812', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40813', NULL, 'CASTILLO MOGOLLON VICTOR JUAN', '--', '10321341689', '', '', 'av. celestino zapata 102 balneario culebras ancash', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40816', NULL, 'juan carlos cortegana aguilar', '40300518', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40823', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40824', NULL, 'HOTEL LOS CISNES DEL MARSANO SOCIEDAD COMERCIAL DE RESP', '--', '20502622359', '', '', 'AV. TOMAS MARSANO NRO. 2230 (ALT CDRA 22 AV TOMAS MARSANO) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40825', NULL, 'HOTEL LOS CISNES DEL MARSANO SOCIEDAD COMERCIAL DE RESP', '--', '20502622359', '', '', 'AV. TOMAS MARSANO NRO. 2230 (ALT CDRA 22 AV TOMAS MARSANO) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40826', NULL, 'HOTEL LOS CISNES DEL MARSANO SOCIEDAD COMERCIAL DE RESP', '--', '20502622359', '', '', 'AV. TOMAS MARSANO NRO. 2230 (ALT CDRA 22 AV TOMAS MARSANO) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40832', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40833', NULL, 'LEIVA', '47119104', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40835', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40836', NULL, 'DIEGO ENAO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40842', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40843', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40844', NULL, 'PROAÑO ALVA NIEVES MATILDE', '--', '10230185579', '', '', 'CALLE BERLIN N°315 - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40845', NULL, 'PROAÑO ALVA NIEVES MATILDE', '--', '10230185579', '', '', 'CALLE BERLIN N°315 - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40846', NULL, 'PROAÑO ALVA NIEVES MATILDE', '--', '10230185579', '', '', 'CALLE BERLIN N°315 - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40847', NULL, 'PROAÑO ALVA NIEVES MATILDE', '--', '10230185579', '', '', 'CALLE BERLIN N°315 - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40848', NULL, 'BRAVO CIERTO JORDY WILBER', '--', '10731346190', '', '', 'CALLE LAS NUECES 151 - URB EL NARANJAL - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40849', NULL, 'BRAVO CIERTO JORDY WILBER', '--', '10731346190', '', '', 'CALLE LAS NUECES 151 - URB EL NARANJAL - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40850', NULL, 'BRAVO CIERTO JORDY WILBER', '--', '10731346190', '', '', 'CALLE LAS NUECES 151 - URB EL NARANJAL - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40854', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40855', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40857', NULL, 'magaly quispe', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40858', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40861', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40862', NULL, 'ARAPA SEJE JUAN FELIPE', '--', '10100119850', '', '', 'CALLE PIURA 575 -MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40863', NULL, 'ARAPA SEJE JUAN FELIPE', '--', '10100119850', '', '', 'CALLE PIURA 575 -MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40864', NULL, 'ARAPA SEJE JUAN FELIPE', '--', '10100119850', '', '', 'CALLE PIURA 575 -MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40866', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40868', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40869', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40871', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40873', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40877', NULL, 'ADA LOPEZ', '09765722', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40879', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40883', NULL, 'MERY TORRES', '47165157', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40884', NULL, 'JULIA SURCO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40886', NULL, 'A COCINAR E.I.R.L.', '--', '20608117874', '', '', 'AV. PERU MZA. B2 LOTE. 8 A.H. TUPAC AMARU DE VILLA (FRENTE COLEGIO TUPAC AMARU DE VILLA 2º) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40887', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40890', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40891', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40892', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40893', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40894', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40895', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40896', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40897', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40898', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40899', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40900', NULL, 'INMOBICORP S.A.C.', '--', '20601527341', '', '', 'JR. DE LOS CONQUISTADORES MZA. E-1 LOTE. 1-A DPTO. 202 URB. LAS LOMAS DE LA MOLINA VIEJA (EDIFICIO 8) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40904', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40905', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40908', NULL, 'MENDEZ JULCA MONICA JANET', '--', '10405123491', '', '', 'mz. 105 lote 25c.p 3 dras. parque av. san francisco y miranda- chilca -lima-cañete', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40909', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40911', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40912', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40913', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40914', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40916', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40918', NULL, 'aracely', '73738745', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40921', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40925', NULL, 'maria reyna rodriguez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40931', NULL, 'VASQUEZ SAAVEDRA GENARO', '--', '10105831302', '', '', 'JR LOS ZAFIROS 2068-SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40932', NULL, 'VASQUEZ SAAVEDRA GENARO', '--', '10105831302', '', '', 'JR LOS ZAFIROS 2068-SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40933', NULL, 'VASQUEZ SAAVEDRA GENARO', '--', '10105831302', '', '', 'JR LOS ZAFIROS 2068-SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40934', NULL, 'VASQUEZ SAAVEDRA GENARO', '--', '10105831302', '', '', 'JR LOS ZAFIROS 2068-SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40935', NULL, 'VASQUEZ SAAVEDRA GENARO', '--', '10105831302', '', '', 'JR LOS ZAFIROS 2068-SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40940', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40944', NULL, 'SAAVEDRA MESTANZA JUAN CARLOS', '--', '10440126559', '', '', 'JR. LUIS VARELA Y ORBEGOZO #115 SURQUILLO -LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40950', NULL, 'TERESA TEJADA S.A.C.', '--', '20607886106', '', '', 'JR. REYES GUERRA NRO. 733 BAR. ZARAGOZA SAN MARTIN - MOYOBAMBA - MOYOBAMBA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40951', NULL, 'TERESA TEJADA S.A.C.', '--', '20607886106', '', '', 'JR. REYES GUERRA NRO. 733 BAR. ZARAGOZA SAN MARTIN - MOYOBAMBA - MOYOBAMBA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40952', NULL, 'TERESA TEJADA S.A.C.', '--', '20607886106', '', '', 'JR. REYES GUERRA NRO. 733 BAR. ZARAGOZA SAN MARTIN - MOYOBAMBA - MOYOBAMBA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40953', NULL, 'TERESA TEJADA S.A.C.', '--', '20607886106', '', '', 'JR. REYES GUERRA NRO. 733 BAR. ZARAGOZA SAN MARTIN - MOYOBAMBA - MOYOBAMBA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40954', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40955', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40958', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40960', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40961', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40962', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40965', NULL, 'ANTONIPO GONZALES', '09635224', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40966', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40967', NULL, 'TESSY', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40972', NULL, 'erika', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40974', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40975', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40976', NULL, 'LA LEñA S.A.C.', '--', '20486441713', '', '', 'AV. LAS VIOLETAS NRO. 772 (COSTADO NOTARIA BEATRIZ ZEVALLOS) LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40978', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40979', NULL, 'VILA FLORES NARDA MARLEENI', '--', '10297010129', '', '', 'calle eduardo bello #385 santa catalina- la victoria -lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40980', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40982', NULL, 'eduardo rojas', '07504629', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40988', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40989', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40990', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40991', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40992', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40993', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40994', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40995', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40996', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40998', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('40999', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41000', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41002', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41003', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41004', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41005', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41006', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41007', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41008', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41009', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41010', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41011', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41012', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41014', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41015', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41016', NULL, 'GARCIA GONZALEZ MARTIN EDUARDO', '--', '10461411008', '', '', 'URB SANTA MARIA MZ E 19 LOTE 31 -SEGUNDA ETAPA- CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41019', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41020', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41021', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41022', NULL, 'SAFE TRANSPORT E.I.R.L.', '--', '20600755456', '', '', 'MZA. Q LOTE. 6 SEC. VI A.M.CACERES PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41023', NULL, 'SAFE TRANSPORT E.I.R.L.', '--', '20600755456', '', '', 'MZA. Q LOTE. 6 SEC. VI A.M.CACERES PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41024', NULL, 'SAFE TRANSPORT E.I.R.L.', '--', '20600755456', '', '', 'MZA. Q LOTE. 6 SEC. VI A.M.CACERES PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41025', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41033', NULL, 'DEIVIS MAMANI', '41458174', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41035', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41042', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41043', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41044', NULL, 'SONIA CANALES', '15613987', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41045', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41046', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41047', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41048', NULL, 'GLADIS HUAMAN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41049', NULL, 'GLADIS HUAMAN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41050', NULL, 'GLADIS HUAMAN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41051', NULL, 'RODRIGUEZ LEJAVO ANN SHEYLA', '47970675', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41052', NULL, 'RODRIGUEZ LEJAVO ANN SHEYLA', '47970675', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41053', NULL, 'RODRIGUEZ LEJAVO ANN SHEYLA', '47970675', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41055', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41061', NULL, 'CORPORACION DE SERVICIOS TURISTICOS LIRIO S.A.C.', '--', '20493995295', '', '', 'CAL.ARICA NRO. 111 URB. EL CENTRO LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41062', NULL, 'CORPORACION DE SERVICIOS TURISTICOS LIRIO S.A.C.', '--', '20493995295', '', '', 'CAL.ARICA NRO. 111 URB. EL CENTRO LORETO - ALTO AMAZONAS - YURIMAGUAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41068', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41069', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41070', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41071', NULL, 'EUROPE CERTIFICATIONS S.A.C.', '--', '20607257125', '', '', 'CAL.CALLE 6 MZA. 143 LOTE. 23 SEC. CONFRATERNIDAD UR SAN MARTIN (ESPALDA DEL CC. SS. SAN MARTIN) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41072', NULL, 'EUROPE CERTIFICATIONS S.A.C.', '--', '20607257125', '', '', 'CAL.CALLE 6 MZA. 143 LOTE. 23 SEC. CONFRATERNIDAD UR SAN MARTIN (ESPALDA DEL CC. SS. SAN MARTIN) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41073', NULL, 'EUROPE CERTIFICATIONS S.A.C.', '--', '20607257125', '', '', 'CAL.CALLE 6 MZA. 143 LOTE. 23 SEC. CONFRATERNIDAD UR SAN MARTIN (ESPALDA DEL CC. SS. SAN MARTIN) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41074', NULL, 'EUROPE CERTIFICATIONS S.A.C.', '--', '20607257125', '', '', 'CAL.CALLE 6 MZA. 143 LOTE. 23 SEC. CONFRATERNIDAD UR SAN MARTIN (ESPALDA DEL CC. SS. SAN MARTIN) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41075', NULL, 'EUROPE CERTIFICATIONS S.A.C.', '--', '20607257125', '', '', 'CAL.CALLE 6 MZA. 143 LOTE. 23 SEC. CONFRATERNIDAD UR SAN MARTIN (ESPALDA DEL CC. SS. SAN MARTIN) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41076', NULL, 'EUROPE CERTIFICATIONS S.A.C.', '--', '20607257125', '', '', 'CAL.CALLE 6 MZA. 143 LOTE. 23 SEC. CONFRATERNIDAD UR SAN MARTIN (ESPALDA DEL CC. SS. SAN MARTIN) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41082', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41083', NULL, 'RAMIREZ QUISPE CLAUDIA PAOLA', '--', '10433447609', '', '', 'AV ALAMEDA SUR 464- CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41084', NULL, 'RAMIREZ QUISPE CLAUDIA PAOLA', '--', '10433447609', '', '', 'AV ALAMEDA SUR 464- CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41085', NULL, 'RAMIREZ QUISPE CLAUDIA PAOLA', '--', '10433447609', '', '', 'AV ALAMEDA SUR 464- CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41086', NULL, 'RAMIREZ QUISPE CLAUDIA PAOLA', '--', '10433447609', '', '', 'AV ALAMEDA SUR 464- CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41087', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41088', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41089', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41091', NULL, 'MR & 3J\'S NEGOCIOS S.A.C.', '--', '20536349155', '', '', 'ALM.SAN LORENZO MZA. C2 LOTE. 18 URB. LOS CEDROS DE VILLA LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41092', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41093', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41094', NULL, 'ESCUELA NACIONAL DE FORMACIÓN PROFESIONAL POLICIAL PNP', '--', '20381959997', '', '', 'AV. GUARDIA CIVIL NRO. S/N URB. LA CAMPINA (ESCUELA DE LA PNP.-PTA.PRINCIPAL.) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41095', NULL, 'ESCUELA NACIONAL DE FORMACIÓN PROFESIONAL POLICIAL PNP', '--', '20381959997', '', '', 'AV. GUARDIA CIVIL NRO. S/N URB. LA CAMPINA (ESCUELA DE LA PNP.-PTA.PRINCIPAL.) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41096', NULL, 'ESCUELA NACIONAL DE FORMACIÓN PROFESIONAL POLICIAL PNP', '--', '20381959997', '', '', 'AV. GUARDIA CIVIL NRO. S/N URB. LA CAMPINA (ESCUELA DE LA PNP.-PTA.PRINCIPAL.) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41097', NULL, 'ESCUELA NACIONAL DE FORMACIÓN PROFESIONAL POLICIAL PNP', '--', '20381959997', '', '', 'AV. GUARDIA CIVIL NRO. S/N URB. LA CAMPINA (ESCUELA DE LA PNP.-PTA.PRINCIPAL.) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41098', NULL, 'ESCUELA NACIONAL DE FORMACIÓN PROFESIONAL POLICIAL PNP', '--', '20381959997', '', '', 'AV. GUARDIA CIVIL NRO. S/N URB. LA CAMPINA (ESCUELA DE LA PNP.-PTA.PRINCIPAL.) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41100', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41102', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41104', NULL, 'jorge richar lopez', '32984691', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41106', NULL, 'IMPORTACIONES Y EXPORTACIONES YORK S.A.C.', '--', '20607584444', '', '', 'JR. CUSCO NRO. 665 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41107', NULL, 'IMPORTACIONES Y EXPORTACIONES YORK S.A.C.', '--', '20607584444', '', '', 'JR. CUSCO NRO. 665 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41108', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41109', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41110', NULL, 'dora neyra', '41079492', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41113', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41114', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41115', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41119', NULL, 'gaby', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41120', NULL, 'gaby', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41121', NULL, 'gaby', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41122', NULL, 'gaby', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41123', NULL, 'TORREJON CULQUI TALI MARINA', '--', '10409447967', '', '', 'AV MICAELA BASTIDAS 119 URB SAN AGUSTIN- COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41124', NULL, 'TORREJON CULQUI TALI MARINA', '--', '10409447967', '', '', 'AV MICAELA BASTIDAS 119 URB SAN AGUSTIN- COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41125', NULL, 'TORREJON CULQUI TALI MARINA', '--', '10409447967', '', '', 'AV MICAELA BASTIDAS 119 URB SAN AGUSTIN- COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41126', NULL, 'TORREJON CULQUI TALI MARINA', '--', '10409447967', '', '', 'AV MICAELA BASTIDAS 119 URB SAN AGUSTIN- COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41127', NULL, 'TORREJON CULQUI TALI MARINA', '--', '10409447967', '', '', 'AV MICAELA BASTIDAS 119 URB SAN AGUSTIN- COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41128', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41129', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41134', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41135', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CALLE 17 A. HUASCAR MZ A 183 LOTE 11 S.J.L -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41136', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CALLE 17 A. HUASCAR MZ A 183 LOTE 11 S.J.L -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41137', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CALLE 17 A. HUASCAR MZ A 183 LOTE 11 S.J.L -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41138', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41139', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41140', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41141', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41142', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41147', NULL, 'MARTELL ESPINOZA SANTIAGO EDILBERTO', '--', '10178067864', '', '', 'AV. LOS PROCERES MZÑ1A LT11 BELLAS ARTES DE CAMPOY SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41148', NULL, 'ANA ZEVALLOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41149', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41150', NULL, 'INVERSIONES COPACABANA CHICKEN E.I.R.L.', '--', '20524564107', '', '', 'JR. MONTEVIDEO NRO. 893 (C.C. MOVICENTRO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41151', NULL, 'INVERSIONES COPACABANA CHICKEN E.I.R.L.', '--', '20524564107', '', '', 'JR. MONTEVIDEO NRO. 893 (C.C. MOVICENTRO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41152', NULL, 'INVERSIONES COPACABANA CHICKEN E.I.R.L.', '--', '20524564107', '', '', 'JR. MONTEVIDEO NRO. 893 (C.C. MOVICENTRO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41153', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41154', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41157', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CALLE 17 A. HUASCAR MZ A 183 LOTE 11 S.J.L -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41158', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CALLE 17 A. HUASCAR MZ A 183 LOTE 11 S.J.L -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41159', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CALLE 17 A. HUASCAR MZ A 183 LOTE 11 S.J.L -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41160', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CALLE 17 A. HUASCAR MZ A 183 LOTE 11 S.J.L -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41161', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41164', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41165', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41166', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41167', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41168', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41169', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41171', NULL, 'MI PLAZUELITA S.A.C.', '--', '20606174544', '', '', 'AV. PARQUE ZONAL MZA. L LOTE. 38 URB. 2 ETAPA DE SANTO DOMINGO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41172', NULL, 'MI PLAZUELITA S.A.C.', '--', '20606174544', '', '', 'AV. PARQUE ZONAL MZA. L LOTE. 38 URB. 2 ETAPA DE SANTO DOMINGO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41173', NULL, 'MI PLAZUELITA S.A.C.', '--', '20606174544', '', '', 'AV. PARQUE ZONAL MZA. L LOTE. 38 URB. 2 ETAPA DE SANTO DOMINGO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41174', NULL, 'MI PLAZUELITA S.A.C.', '--', '20606174544', '', '', 'AV. PARQUE ZONAL MZA. L LOTE. 38 URB. 2 ETAPA DE SANTO DOMINGO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41175', NULL, 'MI PLAZUELITA S.A.C.', '--', '20606174544', '', '', 'AV. PARQUE ZONAL MZA. L LOTE. 38 URB. 2 ETAPA DE SANTO DOMINGO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41176', NULL, 'MI PLAZUELITA S.A.C.', '--', '20606174544', '', '', 'AV. PARQUE ZONAL MZA. L LOTE. 38 URB. 2 ETAPA DE SANTO DOMINGO LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41177', NULL, 'TICSE CAPCHA OSCAR ORLANDO', '--', '10258378364', '', '', 'MZ E LOTE 1 ASOC DE VIVIENDA LOS CHASQUIS  S.M P -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41178', NULL, 'TICSE CAPCHA OSCAR ORLANDO', '--', '10258378364', '', '', 'MZ E LOTE 1 ASOC DE VIVIENDA LOS CHASQUIS  S.M P -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41179', NULL, 'TICSE CAPCHA OSCAR ORLANDO', '--', '10258378364', '', '', 'MZ E LOTE 1 ASOC DE VIVIENDA LOS CHASQUIS  S.M P -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41180', NULL, 'TICSE CAPCHA OSCAR ORLANDO', '--', '10258378364', '', '', 'MZ E LOTE 1 ASOC DE VIVIENDA LOS CHASQUIS  S.M P -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41181', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41182', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41183', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41184', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41188', NULL, 'TRANSPORTES V.H. SERVICE DE CARGA E.I.R.L. - T.V.H.S.C', '--', '20537162709', '', '', 'CAL.LOS ALGARROBOS MZA. M1 LOTE. 6B COO. UMAMARCA (KM.13.5 PANM. SUR) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41189', NULL, 'TRANSPORTES V.H. SERVICE DE CARGA E.I.R.L. - T.V.H.S.C', '--', '20537162709', '', '', 'CAL.LOS ALGARROBOS MZA. M1 LOTE. 6B COO. UMAMARCA (KM.13.5 PANM. SUR) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41190', NULL, 'TRANSPORTES V.H. SERVICE DE CARGA E.I.R.L. - T.V.H.S.C', '--', '20537162709', '', '', 'CAL.LOS ALGARROBOS MZA. M1 LOTE. 6B COO. UMAMARCA (KM.13.5 PANM. SUR) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41191', NULL, 'VELA SARRIA HERIBERTO GABRIEL', '--', '10100590323', '', '', 'ARBOLEDA 234-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41192', NULL, 'VELA SARRIA HERIBERTO GABRIEL', '--', '10100590323', '', '', 'ARBOLEDA 234-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41193', NULL, 'VELA SARRIA HERIBERTO GABRIEL', '--', '10100590323', '', '', 'ARBOLEDA 234-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41194', NULL, 'VELA SARRIA HERIBERTO GABRIEL', '--', '10100590323', '', '', 'ARBOLEDA 234-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41195', NULL, 'VELA SARRIA HERIBERTO GABRIEL', '--', '10100590323', '', '', 'ARBOLEDA 234-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41207', NULL, 'URILAP SALUD E.I.R.L.', '--', '20606466171', '', '', 'JR. JORGE CHAVEZ NRO. 1747 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41208', NULL, 'URILAP SALUD E.I.R.L.', '--', '20606466171', '', '', 'JR. JORGE CHAVEZ NRO. 1747 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41209', NULL, 'URILAP SALUD E.I.R.L.', '--', '20606466171', '', '', 'JR. JORGE CHAVEZ NRO. 1747 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41210', NULL, 'URILAP SALUD E.I.R.L.', '--', '20606466171', '', '', 'JR. JORGE CHAVEZ NRO. 1747 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41212', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41213', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41214', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41215', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41216', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41217', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41223', NULL, 'INGELAB PERU S.A.C.', '--', '20605691634', '', '', 'AV. SANTA ROSA MZA. E LOTE. 18 URB. LOS GIRASOLES DE SANTA ROSA (ETAPA 2 PISO 1) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41224', NULL, 'INGELAB PERU S.A.C.', '--', '20605691634', '', '', 'AV. SANTA ROSA MZA. E LOTE. 18 URB. LOS GIRASOLES DE SANTA ROSA (ETAPA 2 PISO 1) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41228', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41241', NULL, 'OLORTEGUI TREBEJO NELLY EDITH', '--', '10099634338', '', '', 'JR DANTE 884 -SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41242', NULL, 'OLORTEGUI TREBEJO NELLY EDITH', '--', '10099634338', '', '', 'JR DANTE 884 -SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41243', NULL, 'OLORTEGUI TREBEJO NELLY EDITH', '--', '10099634338', '', '', 'JR DANTE 884 -SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41244', NULL, 'OLORTEGUI TREBEJO NELLY EDITH', '--', '10099634338', '', '', 'JR DANTE 884 -SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41247', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41248', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41249', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41250', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41251', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41252', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41253', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41254', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41255', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41256', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41257', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41258', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41260', NULL, 'TECNICAS CP S.A.C.', '--', '20511469644', '', '', 'AV. SANTA ANA MZA. H LOTE. 2 URB. SAN DIEGO VIPOL (FRENTE AL COLEGIO 2026) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41261', NULL, 'TECNICAS CP S.A.C.', '--', '20511469644', '', '', 'AV. SANTA ANA MZA. H LOTE. 2 URB. SAN DIEGO VIPOL (FRENTE AL COLEGIO 2026) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41262', NULL, 'TECNICAS CP S.A.C.', '--', '20511469644', '', '', 'AV. SANTA ANA MZA. H LOTE. 2 URB. SAN DIEGO VIPOL (FRENTE AL COLEGIO 2026) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41263', NULL, 'TECNICAS CP S.A.C.', '--', '20511469644', '', '', 'AV. SANTA ANA MZA. H LOTE. 2 URB. SAN DIEGO VIPOL (FRENTE AL COLEGIO 2026) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41264', NULL, 'TECNICAS CP S.A.C.', '--', '20511469644', '', '', 'AV. SANTA ANA MZA. H LOTE. 2 URB. SAN DIEGO VIPOL (FRENTE AL COLEGIO 2026) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41268', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41269', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41274', NULL, 'REYES CARBAJAL EDITH', '40735322', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41275', NULL, 'REYES CARBAJAL EDITH', '40735322', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41276', NULL, 'REYES CARBAJAL EDITH', '40735322', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41277', NULL, 'REYES CARBAJAL EDITH', '40735322', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41278', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41279', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41284', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41285', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41286', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41287', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41288', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41289', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41293', NULL, 'KIMBBERLYM BOHGER CASAFRANCA', '48151639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41294', NULL, 'KIMBBERLYM BOHGER CASAFRANCA', '48151639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41295', NULL, 'KIMBBERLYM BOHGER CASAFRANCA', '48151639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41296', NULL, 'KIMBBERLYM BOHGER CASAFRANCA', '48151639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41297', NULL, 'KIMBBERLYM BOHGER CASAFRANCA', '48151639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41298', NULL, 'KIMBBERLYM BOHGER CASAFRANCA', '48151639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41299', NULL, 'KIMBBERLYM BOHGER CASAFRANCA', '48151639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41300', NULL, 'KIMBBERLYM BOHGER CASAFRANCA', '48151639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41304', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41305', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41306', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41310', NULL, 'PERU OFFSET DIGITAL S.A.C.', '--', '20100853907', '', '', 'CAL.ARCHIPIELAGO MZA. C LOTE. 9 URB. LA CAPITANA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41311', NULL, 'PERU OFFSET DIGITAL S.A.C.', '--', '20100853907', '', '', 'CAL.ARCHIPIELAGO MZA. C LOTE. 9 URB. LA CAPITANA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41312', NULL, 'PERU OFFSET DIGITAL S.A.C.', '--', '20100853907', '', '', 'CAL.ARCHIPIELAGO MZA. C LOTE. 9 URB. LA CAPITANA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41313', NULL, 'PERU OFFSET DIGITAL S.A.C.', '--', '20100853907', '', '', 'CAL.ARCHIPIELAGO MZA. C LOTE. 9 URB. LA CAPITANA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41314', NULL, 'PERU OFFSET DIGITAL S.A.C.', '--', '20100853907', '', '', 'CAL.ARCHIPIELAGO MZA. C LOTE. 9 URB. LA CAPITANA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41315', NULL, 'ALESSIA SERVICIOS EMPRESARIALES E.I.R.L. - ALESSIA SE E', '--', '20605143165', '', '', 'AV. ROMULO BETANCOURT MZA. S1 LOTE. 7 A.H. LOS OLIVOS DE PRO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41316', NULL, 'ALESSIA SERVICIOS EMPRESARIALES E.I.R.L. - ALESSIA SE E', '--', '20605143165', '', '', 'AV. ROMULO BETANCOURT MZA. S1 LOTE. 7 A.H. LOS OLIVOS DE PRO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41317', NULL, 'ALESSIA SERVICIOS EMPRESARIALES E.I.R.L. - ALESSIA SE E', '--', '20605143165', '', '', 'AV. ROMULO BETANCOURT MZA. S1 LOTE. 7 A.H. LOS OLIVOS DE PRO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41318', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41320', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41321', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41322', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41323', NULL, 'INVERSIONES ALZECE E.I.R.L.', '--', '20604206741', '', '', 'CAL.BARCELONA NRO. 221 URB. SAN ISIDRO LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41331', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41332', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41333', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41334', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41335', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41336', NULL, 'ABARCA OLIVERA MAYKA ELOISA', '--', '10098253543', '', '', 'JR LINO MENDOZA MZ T 1 LOTE 26 URB HONOR Y LEALTAD SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41337', NULL, 'ABARCA OLIVERA MAYKA ELOISA', '--', '10098253543', '', '', 'JR LINO MENDOZA MZ T 1 LOTE 26 URB HONOR Y LEALTAD SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41338', NULL, 'ABARCA OLIVERA MAYKA ELOISA', '--', '10098253543', '', '', 'JR LINO MENDOZA MZ T 1 LOTE 26 URB HONOR Y LEALTAD SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41339', NULL, 'ABARCA OLIVERA MAYKA ELOISA', '--', '10098253543', '', '', 'JR LINO MENDOZA MZ T 1 LOTE 26 URB HONOR Y LEALTAD SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41340', NULL, 'ABARCA OLIVERA MAYKA ELOISA', '--', '10098253543', '', '', 'JR LINO MENDOZA MZ T 1 LOTE 26 URB HONOR Y LEALTAD SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41341', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41342', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41346', NULL, 'FITOINKA E.I.R.L.', '--', '20601054648', '', '', 'AV. ROSA LUZ MZA. E LOTE. 41 URB. ROSA LUZ PRIMERA ETAPA (1ER PISO) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41347', NULL, 'GRUPO CORAL M & S S.A.C.', '--', '20604080208', '', '', 'CAL.B MZA. E LOTE. 14 A.V. VILLA SANTA CRUZ LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41348', NULL, 'GRUPO CORAL M & S S.A.C.', '--', '20604080208', '', '', 'CAL.B MZA. E LOTE. 14 A.V. VILLA SANTA CRUZ LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41349', NULL, 'GRUPO CORAL M & S S.A.C.', '--', '20604080208', '', '', 'CAL.B MZA. E LOTE. 14 A.V. VILLA SANTA CRUZ LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41350', NULL, 'GRUPO CORAL M & S S.A.C.', '--', '20604080208', '', '', 'CAL.B MZA. E LOTE. 14 A.V. VILLA SANTA CRUZ LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41351', NULL, 'GRUPO CORAL M & S S.A.C.', '--', '20604080208', '', '', 'CAL.B MZA. E LOTE. 14 A.V. VILLA SANTA CRUZ LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41352', NULL, 'GRUPO CORAL M & S S.A.C.', '--', '20604080208', '', '', 'CAL.B MZA. E LOTE. 14 A.V. VILLA SANTA CRUZ LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41353', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41355', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41356', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41358', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41361', NULL, 'ANGELO NEIRA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41362', NULL, 'ANGELO NEIRA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41363', NULL, 'ANGELO NEIRA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41364', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41365', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41368', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41369', NULL, 'GRISSY LIXMEY JHOMARA', '73962806', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41370', NULL, 'GRISSY LIXMEY JHOMARA', '73962806', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41371', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41372', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41373', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41379', NULL, 'soledad', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41380', NULL, 'karol', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41391', NULL, 'ZAVALETA CRUZADO MARIA SOLANGE', '--', '10729430396', '', '', 'CALLE OCHARAN 27- SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41392', NULL, 'ZAVALETA CRUZADO MARIA SOLANGE', '--', '10729430396', '', '', 'CALLE OCHARAN 27- SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41393', NULL, 'ZAVALETA CRUZADO MARIA SOLANGE', '--', '10729430396', '', '', 'CALLE OCHARAN 27- SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41394', NULL, 'ZAVALETA CRUZADO MARIA SOLANGE', '--', '10729430396', '', '', 'CALLE OCHARAN 27- SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41397', NULL, 'ELIZABETH REYES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41401', NULL, 'INGELAB PERU S.A.C.', '--', '20605691634', '', '', 'AV. SANTA ROSA MZA. E LOTE. 18 URB. LOS GIRASOLES DE SANTA ROSA (ETAPA 2 PISO 1) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41402', NULL, 'INGELAB PERU S.A.C.', '--', '20605691634', '', '', 'AV. SANTA ROSA MZA. E LOTE. 18 URB. LOS GIRASOLES DE SANTA ROSA (ETAPA 2 PISO 1) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41403', NULL, 'INGELAB PERU S.A.C.', '--', '20605691634', '', '', 'AV. SANTA ROSA MZA. E LOTE. 18 URB. LOS GIRASOLES DE SANTA ROSA (ETAPA 2 PISO 1) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41404', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41405', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41406', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41407', NULL, 'PROY-INTER SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITA', '--', '20489507103', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41408', NULL, 'PROY-INTER SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITA', '--', '20489507103', '', '', 'JR. 2 DE MAYO NRO. 736 HUANUCO - HUANUCO - HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41411', NULL, 'lizbeth  quesquen', '43339034', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41412', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41413', NULL, 'rolando alvaro', '40096213', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41414', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41415', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41416', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41417', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41419', NULL, 'maria pazos  miraya', '72038969', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41423', NULL, 'ALCOCER POVIS ROSA INES', '--', '10101715596', '', '', 'PSJE SAN LUIS 270 SAN FERNANDO ALTO-CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41424', NULL, 'ALCOCER POVIS ROSA INES', '--', '10101715596', '', '', 'PSJE SAN LUIS 270 SAN FERNANDO ALTO-CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41425', NULL, 'ALCOCER POVIS ROSA INES', '--', '10101715596', '', '', 'PSJE SAN LUIS 270 SAN FERNANDO ALTO-CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41426', NULL, 'ALCOCER POVIS ROSA INES', '--', '10101715596', '', '', 'PSJE SAN LUIS 270 SAN FERNANDO ALTO-CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41427', NULL, 'ALCOCER POVIS ROSA INES', '--', '10101715596', '', '', 'PSJE SAN LUIS 270 SAN FERNANDO ALTO-CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41428', NULL, 'ALCOCER POVIS ROSA INES', '--', '10101715596', '', '', 'PSJE SAN LUIS 270 SAN FERNANDO ALTO-CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41429', NULL, 'ALCOCER POVIS ROSA INES', '--', '10101715596', '', '', 'PSJE SAN LUIS 270 SAN FERNANDO ALTO-CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41430', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41431', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41433', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41434', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41435', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41436', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41438', NULL, 'NADINA INFANTE', '06829639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41439', NULL, 'NADINA INFANTE', '06829639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41440', NULL, 'NADINA INFANTE', '06829639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41441', NULL, 'NADINA INFANTE', '06829639', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41442', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41443', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41444', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41445', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41446', NULL, 'CHEF INVERSIONES S.A.C.', '--', '20600749863', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 3579 OTR. SAN ISIDRO (FRENTE AL COLEGIO ALFONSO UGARTE) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41452', NULL, 'angelica', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41458', NULL, 'PEQUEÑOS DETALLES JOYERIA E.I.R.L.', '--', '20608439120', '', '', 'JR. DE LA UNION NRO. 462 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41461', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41464', NULL, 'luis huaroto', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41465', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41466', NULL, 'MAT SERVICIOS GENERALES, INDUSTRIALES Y AUTOMOTRIZ S.A.', '--', '20600975804', '', '', 'CAL.6 MZA. D LOTE. 19 URB. VIRGEN DEL CARMEN DE OQUENDO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41467', NULL, 'leida fonseca', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41472', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41473', NULL, 'edith roxana vasquez alayo', '42909302', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41475', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41478', NULL, 'ana auquilla bustamante', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41479', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41480', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41486', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41487', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41488', NULL, '3R SERVICE & ASOCIADOS S.A.C.', '--', '20608670760', '', '', 'AV. 7 DE JUNIO NRO. 472 URB. LOS FICUS LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41489', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41490', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41491', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41493', NULL, 'CAVALIE BECERRA CARLOS ENRIQUE', '--', '10094294466', '', '', 'PASAJE CASAPALCA #1655 LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41497', NULL, 'COMPAÑIA DE INVERSIONES MTG PERU S.A.C.', '--', '20602463495', '', '', 'CAL.LAS AZUCENAS NRO. 189 A.H. LOS GIRASOLES (CARR.CENTRAL KM 28 COST. COND GIRASOLES) LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41498', NULL, 'COMPAÑIA DE INVERSIONES MTG PERU S.A.C.', '--', '20602463495', '', '', 'CAL.LAS AZUCENAS NRO. 189 A.H. LOS GIRASOLES (CARR.CENTRAL KM 28 COST. COND GIRASOLES) LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41499', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41501', NULL, 'ORTEGA QUISPE LIVIA MARGOT', '--', '10095518589', '', '', 'AV 4 DE NOVIEMBRE 222-INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41502', NULL, 'ORTEGA QUISPE LIVIA MARGOT', '--', '10095518589', '', '', 'AV 4 DE NOVIEMBRE 222-INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41503', NULL, 'ORTEGA QUISPE LIVIA MARGOT', '--', '10095518589', '', '', 'AV 4 DE NOVIEMBRE 222-INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41504', NULL, 'NOMI CAR SERVICE E.I.R.L.', '--', '20603978006', '', '', 'AV. LOS PATRIOTAS NRO. 364 URB. MARANGA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41505', NULL, 'NOMI CAR SERVICE E.I.R.L.', '--', '20603978006', '', '', 'AV. LOS PATRIOTAS NRO. 364 URB. MARANGA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41506', NULL, 'NOMI CAR SERVICE E.I.R.L.', '--', '20603978006', '', '', 'AV. LOS PATRIOTAS NRO. 364 URB. MARANGA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41510', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41511', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41512', NULL, 'PATRICIA MORI', '44774928', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41515', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41516', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41517', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41518', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41519', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41520', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41521', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41522', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41525', NULL, 'OVIEDO ESTABRIDIS GIOVANNA ANDREA', '--', '10067926507', '', '', 'JR DON BOSCO 368-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41526', NULL, 'OVIEDO ESTABRIDIS GIOVANNA ANDREA', '--', '10067926507', '', '', 'JR DON BOSCO 368-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41527', NULL, 'OVIEDO ESTABRIDIS GIOVANNA ANDREA', '--', '10067926507', '', '', 'JR DON BOSCO 368-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41528', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41530', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41533', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41538', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41539', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41540', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41541', NULL, 'EULOGIA GUZMAN', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41542', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41543', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41550', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41553', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CAL. 17 A.H. HUASCAR MZA. 183 LOTE 11 SAN JUAN DE LURIGANCHO -LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41554', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CAL. 17 A.H. HUASCAR MZA. 183 LOTE 11 SAN JUAN DE LURIGANCHO -LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41555', NULL, 'PORRAS RAMIREZ SANTOS', '--', '10073705164', '', '', 'CAL. 17 A.H. HUASCAR MZA. 183 LOTE 11 SAN JUAN DE LURIGANCHO -LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41556', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41557', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41559', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41565', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41567', NULL, 'ENRIQUEZ CABEZUDO JHOANA OFELIA', '--', '10423546170', '', '', 'CALLE LIMA #614 TDA I5- ica', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41569', NULL, 'ESTUDIO CONTABLE OSAKA S.A.C.', '--', '20509477346', '', '', 'JR. SINCHI ROCA NRO. 1641 INT. 102 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41575', NULL, 'LUIS RIVERA BARRETO', '25544507', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41576', NULL, 'LUIS RIVERA BARRETO', '25544507', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41577', NULL, 'LUIS RIVERA BARRETO', '25544507', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41578', NULL, 'LUIS RIVERA BARRETO', '25544507', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41579', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41580', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41581', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41582', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41583', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41584', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41592', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41593', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41594', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41595', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41597', NULL, 'PAITAN HUAIRA JOSE ANTONIO', '--', '10418465391', '', '', 'AV MANCHEGO MUÑOZ 116 -HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41598', NULL, 'PAITAN HUAIRA JOSE ANTONIO', '--', '10418465391', '', '', 'AV MANCHEGO MUÑOZ 116 -HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41599', NULL, 'PAITAN HUAIRA JOSE ANTONIO', '--', '10418465391', '', '', 'AV MANCHEGO MUÑOZ 116 -HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41600', NULL, 'PAITAN HUAIRA JOSE ANTONIO', '--', '10418465391', '', '', 'AV MANCHEGO MUÑOZ 116 -HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41601', NULL, 'PAITAN HUAIRA JOSE ANTONIO', '--', '10418465391', '', '', 'AV MANCHEGO MUÑOZ 116 -HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41602', NULL, 'PAITAN HUAIRA JOSE ANTONIO', '--', '10418465391', '', '', 'AV MANCHEGO MUÑOZ 116 -HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41603', NULL, 'PAITAN HUAIRA JOSE ANTONIO', '--', '10418465391', '', '', 'AV MANCHEGO MUÑOZ 116 -HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41604', NULL, 'PAITAN HUAIRA JOSE ANTONIO', '--', '10418465391', '', '', 'AV MANCHEGO MUÑOZ 116 -HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41606', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41607', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41608', NULL, 'FRABHERSA S.A.C.', '--', '20547824629', '', '', 'CAL.MISTI NRO. 259 (CRUCE DE GRAU CON ANDAHUAYLAS) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41609', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41610', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41611', NULL, 'SOLUCIONES ROMA S.A.C.', '--', '20600723449', '', '', 'MZA. G-1 LOTE. 4 P.J. TUPAC AMARU DE VILLA (A 2CDRAS. DE LA PÓSTA TUPAC AMARU DE VIL) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41612', NULL, 'SOLUCIONES ROMA S.A.C.', '--', '20600723449', '', '', 'MZA. G-1 LOTE. 4 P.J. TUPAC AMARU DE VILLA (A 2CDRAS. DE LA PÓSTA TUPAC AMARU DE VIL) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41613', NULL, 'SOLUCIONES ROMA S.A.C.', '--', '20600723449', '', '', 'MZA. G-1 LOTE. 4 P.J. TUPAC AMARU DE VILLA (A 2CDRAS. DE LA PÓSTA TUPAC AMARU DE VIL) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41614', NULL, 'SOLUCIONES ROMA S.A.C.', '--', '20600723449', '', '', 'MZA. G-1 LOTE. 4 P.J. TUPAC AMARU DE VILLA (A 2CDRAS. DE LA PÓSTA TUPAC AMARU DE VIL) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41615', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41617', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41620', NULL, 'OEM ELECTRIC SOCIEDAD ANONIMA CERRADA', '--', '20507430555', '', '', 'AV. JAVIER PRADO ESTE NRO. 996 DPTO. 301 URB. EL PALOMAR (COSTADO CLINICA RICARDO PALMA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41621', NULL, 'OEM ELECTRIC SOCIEDAD ANONIMA CERRADA', '--', '20507430555', '', '', 'AV. JAVIER PRADO ESTE NRO. 996 DPTO. 301 URB. EL PALOMAR (COSTADO CLINICA RICARDO PALMA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41622', NULL, 'OEM ELECTRIC SOCIEDAD ANONIMA CERRADA', '--', '20507430555', '', '', 'AV. JAVIER PRADO ESTE NRO. 996 DPTO. 301 URB. EL PALOMAR (COSTADO CLINICA RICARDO PALMA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41623', NULL, 'OEM ELECTRIC SOCIEDAD ANONIMA CERRADA', '--', '20507430555', '', '', 'AV. JAVIER PRADO ESTE NRO. 996 DPTO. 301 URB. EL PALOMAR (COSTADO CLINICA RICARDO PALMA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41624', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41626', NULL, 'KELLY GLOBAL LOGISTICS S.A.C.', '--', '20602576541', '', '', 'AV. ELMER FAUCETT. NRO. S/N DPTO. MD E INT. 301 CENTRO AEREO COMERCIAL PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41627', NULL, 'katy', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41628', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41630', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41631', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41633', NULL, 'MENDOZA MENDOZA PEDRO PAUL', '--', '10756747644', '', '', 'CALLE SAN JUAN DE DIOS N°107 OFIC.204 AREQUIPA -AREQUIPA-AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41634', NULL, 'MENDOZA MENDOZA PEDRO PAUL', '--', '10756747644', '', '', 'CALLE SAN JUAN DE DIOS N°107 OFIC.204 AREQUIPA -AREQUIPA-AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41635', NULL, 'ORGANIC EXPORT CENTER SOCIEDAD ANONIMA CERRADA', '--', '20601600707', '', '', 'JR. PRIMAVERA S/N, SECTOR UNIDO LOTE. 1 C.P. SAN RAMON DE PANGOA (AL COSTADO DE APSOS ECOLOGICOS PERU) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41636', NULL, 'ORGANIC EXPORT CENTER SOCIEDAD ANONIMA CERRADA', '--', '20601600707', '', '', 'JR. PRIMAVERA S/N, SECTOR UNIDO LOTE. 1 C.P. SAN RAMON DE PANGOA (AL COSTADO DE APSOS ECOLOGICOS PERU) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41637', NULL, 'ORGANIC EXPORT CENTER SOCIEDAD ANONIMA CERRADA', '--', '20601600707', '', '', 'JR. PRIMAVERA S/N, SECTOR UNIDO LOTE. 1 C.P. SAN RAMON DE PANGOA (AL COSTADO DE APSOS ECOLOGICOS PERU) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41638', NULL, 'EXPORTADORA VILLA ECOLOGICA S.A.C.', '--', '20602932631', '', '', '----PRIMAVERA NRO. S/N SEC. UNIDOS (AL COSTAD COOPERATIVA SANGARENI SM 2057) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41639', NULL, 'EXPORTADORA VILLA ECOLOGICA S.A.C.', '--', '20602932631', '', '', '----PRIMAVERA NRO. S/N SEC. UNIDOS (AL COSTAD COOPERATIVA SANGARENI SM 2057) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41640', NULL, 'EXPORTADORA VILLA ECOLOGICA S.A.C.', '--', '20602932631', '', '', '----PRIMAVERA NRO. S/N SEC. UNIDOS (AL COSTAD COOPERATIVA SANGARENI SM 2057) JUNIN - SATIPO - PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41643', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41644', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41645', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41650', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41652', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41653', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41654', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41655', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41656', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41664', NULL, 'JHONNY HURTADO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41665', NULL, 'JHONNY HURTADO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41666', NULL, 'SERVICIOS GENERALES SEINHALI EIRL', '--', '20604782113', '', '', 'CAL.LOS PRECURSORES MZA. G LOTE. 2A URB. ANCIETA BAJA (ALTURA PAPELERA TRUPAL) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41667', NULL, 'SERVICIOS GENERALES SEINHALI EIRL', '--', '20604782113', '', '', 'CAL.LOS PRECURSORES MZA. G LOTE. 2A URB. ANCIETA BAJA (ALTURA PAPELERA TRUPAL) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41668', NULL, 'SERVICIOS GENERALES SEINHALI EIRL', '--', '20604782113', '', '', 'CAL.LOS PRECURSORES MZA. G LOTE. 2A URB. ANCIETA BAJA (ALTURA PAPELERA TRUPAL) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41669', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41670', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41671', NULL, 'MAA CONTRATISTAS GENERALES EMPRESA INDIVIDUAL DE RESPON', '--', '20608981218', '', '', 'JR. AREQUIPA NRO. 501 SEC. CASTILLA (FRENTE A LA IGLESIA TRANSITO) PIURA - PIURA - CASTILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41672', NULL, 'MAA CONTRATISTAS GENERALES EMPRESA INDIVIDUAL DE RESPON', '--', '20608981218', '', '', 'JR. AREQUIPA NRO. 501 SEC. CASTILLA (FRENTE A LA IGLESIA TRANSITO) PIURA - PIURA - CASTILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41673', NULL, 'MAA CONTRATISTAS GENERALES EMPRESA INDIVIDUAL DE RESPON', '--', '20608981218', '', '', 'JR. AREQUIPA NRO. 501 SEC. CASTILLA (FRENTE A LA IGLESIA TRANSITO) PIURA - PIURA - CASTILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41676', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41680', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41681', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41683', NULL, 'CARDOSO CLINICA DENTAL S.A.C.', '--', '20603562764', '', '', 'AV. ANTUNEZ DE MAYOLO NRO. 898 INT. 3PIS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41684', NULL, 'CARDOSO CLINICA DENTAL S.A.C.', '--', '20603562764', '', '', 'AV. ANTUNEZ DE MAYOLO NRO. 898 INT. 3PIS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41685', NULL, 'CARDOSO CLINICA DENTAL S.A.C.', '--', '20603562764', '', '', 'AV. ANTUNEZ DE MAYOLO NRO. 898 INT. 3PIS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41686', NULL, 'CARDOSO CLINICA DENTAL S.A.C.', '--', '20603562764', '', '', 'AV. ANTUNEZ DE MAYOLO NRO. 898 INT. 3PIS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41687', NULL, 'CARDOSO CLINICA DENTAL S.A.C.', '--', '20603562764', '', '', 'AV. ANTUNEZ DE MAYOLO NRO. 898 INT. 3PIS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41688', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41689', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41690', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41693', NULL, 'ROSARIO PUCUHUANCA', '00000000', '', '', '', 'CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41694', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41695', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41698', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41701', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41702', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41705', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41706', NULL, 'TUME VITE ALEX ANIBAL', '--', '10405102060', '', '', 'AV. A MZH LT39 LURIGANCHO- CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41708', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41717', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41718', NULL, 'UNIBELL S.A.C.', '--', '20511451354', '', '', 'AV. JAVIER PRADO OESTE NRO. 1475 URB. ORRANTIA LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41723', NULL, 'GUERRERO CHINGUEL ROSAURA', '--', '10032383071', '', '', 'CALLE SANTA TERESITA 245 -SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41724', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41725', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41726', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41731', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41732', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41733', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41736', NULL, 'FABRICACION DE REPUESTOS INDUSTRIALES SOCIEDAD ANONIMA ', '--', '20521134667', '', '', 'AV. CUZCO MZA. C LOTE. 23 ASOC ALAMEDA DE SANTA ROS (ENTRE BERTELLO Y AV CUZCO) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41737', NULL, 'FABRICACION DE REPUESTOS INDUSTRIALES SOCIEDAD ANONIMA ', '--', '20521134667', '', '', 'AV. CUZCO MZA. C LOTE. 23 ASOC ALAMEDA DE SANTA ROS (ENTRE BERTELLO Y AV CUZCO) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41738', NULL, 'FABRICACION DE REPUESTOS INDUSTRIALES SOCIEDAD ANONIMA ', '--', '20521134667', '', '', 'AV. CUZCO MZA. C LOTE. 23 ASOC ALAMEDA DE SANTA ROS (ENTRE BERTELLO Y AV CUZCO) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41739', NULL, 'CYFCONT ASESORIA EMPRESARIAL SOCIEDAD COMERCIAL DE RESP', '--', '20601701007', '', '', 'JR. LOS TILOS NRO. 365 URB. EL PALMAR LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41740', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41741', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41742', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41745', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41746', NULL, 'GUERRERO SOBRE RUEDAS E.I.R.L.', '--', '20608485636', '', '', 'JR. OBREROS NRO. 459 BAR. BARRIO OBRERO DE LA VICTORIA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41747', NULL, 'GUERRERO SOBRE RUEDAS E.I.R.L.', '--', '20608485636', '', '', 'JR. OBREROS NRO. 459 BAR. BARRIO OBRERO DE LA VICTORIA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41748', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41749', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41751', NULL, 'olinda leon', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41752', NULL, 'olinda leon', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41753', NULL, 'ester laureano', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41754', NULL, 'ester laureano', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41755', NULL, 'ester laureano', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41756', NULL, 'ester laureano', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41758', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41762', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41763', NULL, 'SUCENVIC S.A.C.', '--', '20601496772', '', '', 'AV. MARISCAL CASTILLA NRO. 177 BALNEARIO DE CHURIN LIMA - OYON - PACHANGARA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41764', NULL, 'SUCENVIC S.A.C.', '--', '20601496772', '', '', 'AV. MARISCAL CASTILLA NRO. 177 BALNEARIO DE CHURIN LIMA - OYON - PACHANGARA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41766', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41774', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41776', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41777', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41778', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41780', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41781', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41782', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41789', NULL, 'TORREJON CULQUI TALI MARINA', '--', '10409447967', '', '', 'AV MICAELA BASTIDAS 119 URB SAN AGUSTIN -COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41796', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41797', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41798', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41800', NULL, 'VIGEM S.A.C.', '--', '20606749822', '', '', 'MZA. A LOTE. 9 A.H. NUEVO PROGRESO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41801', NULL, 'VIGEM S.A.C.', '--', '20606749822', '', '', 'MZA. A LOTE. 9 A.H. NUEVO PROGRESO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41802', NULL, 'VIGEM S.A.C.', '--', '20606749822', '', '', 'MZA. A LOTE. 9 A.H. NUEVO PROGRESO LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41806', NULL, 'BENITO CHOQUE', '02856238', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41807', NULL, 'BENITO CHOQUE', '02856238', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41808', NULL, 'BENITO CHOQUE', '02856238', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41809', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41810', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41811', NULL, 'NANCY ROJAS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41819', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41823', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41824', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41825', NULL, 'PARI MENDOZA VIOLETA', '--', '10068006746', '', '', 'JR. HONRRADES # 632 URB- PRO- LOS OLIVOS -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41826', NULL, 'PARI MENDOZA VIOLETA', '--', '10068006746', '', '', 'JR. HORRADES #632 URB PRO-LOS OLIVOS-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41830', NULL, 'SERVICIOS GENERALES LAS LOMAS S.A.C.', '--', '20492380882', '', '', 'CAL.SUCRE NRO. 261 URB. JOSE CARLOS MARIATEGUI (ALTURA CUADRA 11 DE AV. JCM) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41831', NULL, 'SERVICIOS GENERALES LAS LOMAS S.A.C.', '--', '20492380882', '', '', 'CAL.SUCRE NRO. 261 URB. JOSE CARLOS MARIATEGUI (ALTURA CUADRA 11 DE AV. JCM) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41832', NULL, 'SERVICIOS GENERALES LAS LOMAS S.A.C.', '--', '20492380882', '', '', 'CAL.SUCRE NRO. 261 URB. JOSE CARLOS MARIATEGUI (ALTURA CUADRA 11 DE AV. JCM) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41833', NULL, 'SERVICIOS GENERALES LAS LOMAS S.A.C.', '--', '20492380882', '', '', 'CAL.SUCRE NRO. 261 URB. JOSE CARLOS MARIATEGUI (ALTURA CUADRA 11 DE AV. JCM) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41834', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41835', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41836', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41842', NULL, 'JULIO CUADRO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41843', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41844', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41845', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41846', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41850', NULL, 'sol victoria', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41854', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41855', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41857', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41858', NULL, 'EL GRANERO DE LIMA S.A.C.', '--', '20605365842', '', '', 'JR. SOLEDAD NRO. 241 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41861', NULL, 'RUIZ CAVIÑO NATIVIDAD AMPARITO', '--', '10425005184', '', '', 'JR. CIRO ALEGRIA# 244 SAN GABRIEL V.M.T-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41862', NULL, 'TOP CONNEXION S.A.C.', '--', '20549468218', '', '', 'AV. ELMER FAUCETT NRO. 169 INT. 10 URB. MARANGA (PISO 2) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41866', NULL, 'manuel fernandez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41869', NULL, 'fosa katy', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41870', NULL, 'rosa kati', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41871', NULL, 'susy carranza', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41873', NULL, 'MARIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41874', NULL, 'MARIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41875', NULL, 'MARIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41876', NULL, 'WALPA EXPRESS S.A.C', '--', '20606269022', '', '', 'AV. LAS FLORES DE PRIMAVERA NRO. 1766 COO. LAS FLORES LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41877', NULL, 'WALPA EXPRESS S.A.C', '--', '20606269022', '', '', 'AV. LAS FLORES DE PRIMAVERA NRO. 1766 COO. LAS FLORES LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41878', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41879', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41880', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41881', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41883', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41884', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41886', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41887', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41888', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41894', NULL, 'PUNTO FIT E.I.R.L.', '--', '20604758221', '', '', '20604758221', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41895', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41897', NULL, 'MIGUEL SIMON LUCIA NANCY', '--', '10159638290', '', '', 'CALLE ANIMAS #124-B HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41898', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41904', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41905', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41908', NULL, 'GMC TRADING S.A.C.', '--', '20606255030', '', '', 'CAL.JOSE SABOGAL NRO. 385 DPTO. 2 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41909', NULL, 'GMC TRADING S.A.C.', '--', '20606255030', '', '', 'CAL.JOSE SABOGAL NRO. 385 DPTO. 2 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41910', NULL, 'GMC TRADING S.A.C.', '--', '20606255030', '', '', 'CAL.JOSE SABOGAL NRO. 385 DPTO. 2 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41917', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41918', NULL, 'LUCIA BERNABLE', '09785873', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41919', NULL, 'LUCIA BERNABLE', '09785873', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41920', NULL, 'LUCIA BERNABLE', '09785873', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41921', NULL, 'LUCIA BERNABLE', '09785873', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41922', NULL, 'TERPEL PERU S.A.C.', '--', '20511995028', '', '', 'AV. JORGE BASADRE GROHMANN NRO. 347 INT. 1001 (EDIFICIO PATIO CENTRIC) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41923', NULL, 'TERPEL PERU S.A.C.', '--', '20511995028', '', '', 'AV. JORGE BASADRE GROHMANN NRO. 347 INT. 1001 (EDIFICIO PATIO CENTRIC) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41924', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41925', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41926', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41927', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41928', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41929', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41930', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41931', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41935', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41940', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41941', NULL, 'NADIA DE LA CRUZ CASAS', '10627353', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41943', NULL, 'PERU ART FACTORY S.R.L', '--', '20537704285', '', '', 'CAL.CESAR VALLEJO NRO. 1016 URB. COVIDA ET. I (PISO 2) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41944', NULL, 'PERU ART FACTORY S.R.L', '--', '20537704285', '', '', 'CAL.CESAR VALLEJO NRO. 1016 URB. COVIDA ET. I (PISO 2) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41945', NULL, 'PERU ART FACTORY S.R.L', '--', '20537704285', '', '', 'CAL.CESAR VALLEJO NRO. 1016 URB. COVIDA ET. I (PISO 2) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41946', NULL, 'PERU ART FACTORY S.R.L', '--', '20537704285', '', '', 'CAL.CESAR VALLEJO NRO. 1016 URB. COVIDA ET. I (PISO 2) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41947', NULL, 'PERU ART FACTORY S.R.L', '--', '20537704285', '', '', 'CAL.CESAR VALLEJO NRO. 1016 URB. COVIDA ET. I (PISO 2) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41948', NULL, 'PERU ART FACTORY S.R.L', '--', '20537704285', '', '', 'CAL.CESAR VALLEJO NRO. 1016 URB. COVIDA ET. I (PISO 2) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41950', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41951', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41952', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41955', NULL, 'MAHADI S.A.C', '--', '20602348157', '', '', 'JR. JOSE ILMAN MZA. D LOTE. 007A C.P. OTUZCO (A UNA CUADRA DE POSTA MEDICA DE OTUZCO) CAJAMARCA - CAJAMARCA - LOS BAÑOS DEL INCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41956', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41958', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41960', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41963', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41964', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41965', NULL, 'RAMIREZ FIGUEROA LOURDES ROCIO', '--', '10316703815', '', '', 'A.H. DANIEL ALCIDES CARRION MZ Y 1 LOTE 7 -LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41966', NULL, 'RAMIREZ FIGUEROA LOURDES ROCIO', '--', '10316703815', '', '', 'A.H. DANIEL ALCIDES CARRION MZ Y 1 LOTE 7 -LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41967', NULL, 'CORPORACION PAREDES ROJAS S.A.C', '--', '20553709319', '', '', 'CAL.CALLE LAS LILAS MZA. P LOTE. 21 ASC. SOL DE SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41968', NULL, 'CORPORACION PAREDES ROJAS S.A.C', '--', '20553709319', '', '', 'CAL.CALLE LAS LILAS MZA. P LOTE. 21 ASC. SOL DE SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41969', NULL, 'CORPORACION PAREDES ROJAS S.A.C', '--', '20553709319', '', '', 'CAL.CALLE LAS LILAS MZA. P LOTE. 21 ASC. SOL DE SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41970', NULL, 'CORPORACION PAREDES ROJAS S.A.C', '--', '20553709319', '', '', 'CAL.CALLE LAS LILAS MZA. P LOTE. 21 ASC. SOL DE SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41971', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41972', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41973', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41974', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41975', NULL, 'GLORIA JIMENEZ', '10138942', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41981', NULL, 'GARCIA GONZALEZ MARTIN EDUARDO', '--', '10461411008', '', '', 'URB SANTA MARIA MZ E 19 LOTE 31 -CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41982', NULL, 'GARCIA GONZALEZ MARTIN EDUARDO', '--', '10461411008', '', '', 'URB SANTA MARIA MZ E 19 LOTE 31 -CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41983', NULL, 'GARCIA GONZALEZ MARTIN EDUARDO', '--', '10461411008', '', '', 'URB SANTA MARIA MZ E 19 LOTE 31 -CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41989', NULL, 'nery vanessa huaman pacheco', '43939315', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41991', NULL, 'BEAUTY CENTER Y SPA E.I.R.L.', '--', '20603246293', '', '', 'CAL.LOS FICUS NRO. 112 INT. 3 PI URB. JARDINES DE VIRU (CRUCE DE FAUCETT Y VENEZUELA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41993', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41994', NULL, 'sandra huaman', '41008764', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41998', NULL, 'lilia loayza', '76271160', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('41999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42000', NULL, 'CONTRATISTAS FERNANDEZ S.A', '--', '20307083851', '', '', '20307083851', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42002', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42003', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42007', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42008', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42009', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42010', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42011', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42012', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42014', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42015', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42016', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42019', NULL, 'R & A INGS. CONSTRUCTORES Y CONSULTORES S.A.C.', '--', '20452647002', '', '', 'JR. 2 DE MAYO NRO. 120 (MISMA PLAZA DE ARMAS COSTADO PARROQUIA) AYACUCHO - LUCANAS - PUQUIO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42020', NULL, 'R & A INGS. CONSTRUCTORES Y CONSULTORES S.A.C.', '--', '20452647002', '', '', 'JR. 2 DE MAYO NRO. 120 (MISMA PLAZA DE ARMAS COSTADO PARROQUIA) AYACUCHO - LUCANAS - PUQUIO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42021', NULL, 'VASQUEZ MUGABURU MANUEL AUGUSTO', '--', '10258291447', '', '', 'CALLE LOS EUCALIPTOS 382 BELLAVISTA -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42022', NULL, 'VASQUEZ MUGABURU MANUEL AUGUSTO', '--', '10258291447', '', '', 'CALLE LOS EUCALIPTOS 382 BELLAVISTA -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42023', NULL, 'VASQUEZ MUGABURU MANUEL AUGUSTO', '--', '10258291447', '', '', 'CALLE LOS EUCALIPTOS 382 BELLAVISTA -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42025', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42026', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42031', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42032', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42033', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42034', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42035', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42036', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42037', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42052', NULL, 'TAMBILLO IPARRAGUIRRE DANIEL', '--', '10080583813', '', '', 'JR UCAYALI 565 -CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42055', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42056', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42057', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42058', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42059', NULL, 'CAPULLOS DE AMOR', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42060', NULL, 'MARTIN FIDEL ALMONTE ROJAS', '25607145', '', '', '', 'MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42061', NULL, 'CRISTIAN GUERRERO', '48037005', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42065', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42067', NULL, 'LESLY HUAMAN', '47922371', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42077', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42078', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42082', NULL, 'maria valencia', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42084', NULL, 'javier llamoctanta', '27577943', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42085', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42086', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42087', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42088', NULL, 'JAVC E.I.R.L.', '--', '20544022360', '', '', 'MZA. E LOTE. 8 RES. LAS GARDENIAS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42089', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42091', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42092', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42093', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42096', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42097', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42098', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42099', NULL, 'CORPORACION DIGITAL SIL S.A.C.', '--', '20608866664', '', '', 'CAL.EMILY CAR NRO. 147 DPTO. 302 URB. VIPEP LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42102', NULL, 'CESAR VELA', '44585524', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42103', NULL, 'CESAR VELA', '44585524', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42104', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42105', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42106', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42107', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42108', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42109', NULL, 'SERVICIOS GENERALES CANDYSAV S.A.C.', '--', '20547826753', '', '', 'JR. YAPURA NRO. 137 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42112', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42113', NULL, 'REAL SANDIGA LUDWIG', '21798502', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42114', NULL, 'REAL SANDIGA LUDWIG', '21798502', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42115', NULL, 'REAL SANDIGA LUDWIG', '21798502', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42116', NULL, 'REAL SANDIGA LUDWIG', '21798502', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42117', NULL, 'REAL SANDIGA LUDWIG', '21798502', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42118', NULL, 'REAL SANDIGA LUDWIG', '21798502', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42119', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42124', NULL, 'F K P INVESTMENT S.A.C.', '--', '20602583351', '', '', 'JR. HUANCAVELICA NRO. 151 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42126', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42127', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42128', NULL, 'SUPER COLOR CREATIVE S.A.C.', '--', '20519443482', '', '', 'AV. ARNALDO MARQUEZ NRO. 1368 URB. SAN FE (ALT CDRA 13 AV BRASIL) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42129', NULL, 'SUPER COLOR CREATIVE S.A.C.', '--', '20519443482', '', '', 'AV. ARNALDO MARQUEZ NRO. 1368 URB. SAN FE (ALT CDRA 13 AV BRASIL) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42130', NULL, 'SUPER COLOR CREATIVE S.A.C.', '--', '20519443482', '', '', 'AV. ARNALDO MARQUEZ NRO. 1368 URB. SAN FE (ALT CDRA 13 AV BRASIL) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42131', NULL, 'SUPER COLOR CREATIVE S.A.C.', '--', '20519443482', '', '', 'AV. ARNALDO MARQUEZ NRO. 1368 URB. SAN FE (ALT CDRA 13 AV BRASIL) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42132', NULL, 'SUPER COLOR CREATIVE S.A.C.', '--', '20519443482', '', '', 'AV. ARNALDO MARQUEZ NRO. 1368 URB. SAN FE (ALT CDRA 13 AV BRASIL) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42144', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42146', NULL, 'carla vivanco', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42147', NULL, 'CAMINOC E.I.R.L.', '--', '20544762134', '', '', '----DE LOS PRECURSORES NRO. 119 DPTO. 101 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42148', NULL, 'CAMINOC E.I.R.L.', '--', '20544762134', '', '', '----DE LOS PRECURSORES NRO. 119 DPTO. 101 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42149', NULL, 'CAMINOC E.I.R.L.', '--', '20544762134', '', '', '----DE LOS PRECURSORES NRO. 119 DPTO. 101 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42150', NULL, 'CAMINOC E.I.R.L.', '--', '20544762134', '', '', '----DE LOS PRECURSORES NRO. 119 DPTO. 101 URB. VALLE HERMOSO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42156', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42157', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42159', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42166', NULL, 'GISELLA GIOVANNA HERRERA LIZANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42167', NULL, 'GISELLA GIOVANNA HERRERA LIZANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42168', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42169', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42172', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42173', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42174', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42175', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42178', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42179', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42180', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42181', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42182', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42183', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42184', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42185', NULL, 'DELOSI S.A.', '--', '20100123330', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42186', NULL, 'DELOSI S.A.', '--', '20100123330', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42187', NULL, 'DELOSI S.A.', '--', '20100123330', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42194', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42195', NULL, 'moreno ruiz yolanda marina', '40455252', '', '', '', 'calle jorge muelle 272 dpto 401 san borja lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42197', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42198', NULL, 'ASOCIACION EDUCATIVA INTERNACIONAL ELIM', '--', '20515531107', '', '', 'CAL.FERMIN TANGUIS MZA. B7 LOTE. SN DPTO. 706 URB. SANTA CATALINA (ALT CDRA 8 AV NICOLAS ARRIOLA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42199', NULL, 'ASOCIACION EDUCATIVA INTERNACIONAL ELIM', '--', '20515531107', '', '', 'CAL.FERMIN TANGUIS MZA. B7 LOTE. SN DPTO. 706 URB. SANTA CATALINA (ALT CDRA 8 AV NICOLAS ARRIOLA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42200', NULL, 'ASOCIACION EDUCATIVA INTERNACIONAL ELIM', '--', '20515531107', '', '', 'CAL.FERMIN TANGUIS MZA. B7 LOTE. SN DPTO. 706 URB. SANTA CATALINA (ALT CDRA 8 AV NICOLAS ARRIOLA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42201', NULL, 'iris del rocio', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42207', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42208', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42209', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42210', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42211', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42212', NULL, 'MUNDICOM EIRL', '--', '20495712673', '', '', 'CAL.GENERAL BELISARIO SUAREZ NRO. 1036 INT. 11 URB. SURQUILLO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42214', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42218', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42221', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42222', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42223', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42229', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42230', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42231', NULL, 'FLOR BERNIA PACHECO', '06069226', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42232', NULL, 'FLOR BERNIA PACHECO', '06069226', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42233', NULL, 'VIRINGO’S RESTOBAR S.A.C.', '--', '20609079046', '', '', 'AV. PASEO DE LA REPUBLICA MZA. B LOTE. 20 DPTO. 403 URB. LOS ROSALES LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42234', NULL, 'VIRINGO’S RESTOBAR S.A.C.', '--', '20609079046', '', '', 'AV. PASEO DE LA REPUBLICA MZA. B LOTE. 20 DPTO. 403 URB. LOS ROSALES LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42235', NULL, 'VIRINGO’S RESTOBAR S.A.C.', '--', '20609079046', '', '', 'AV. PASEO DE LA REPUBLICA MZA. B LOTE. 20 DPTO. 403 URB. LOS ROSALES LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42236', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42237', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42240', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42241', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42242', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42244', NULL, 'heidi cisneros', '42825568', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42246', NULL, 'angela solano', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42248', NULL, 'ARANIBAR ESCUDERO RAQUEL HERMILA', '--', '10442185056', '', '', 'psje las joyas # 611 -la victoria-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42249', NULL, 'nancy flores', '41405743', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42253', NULL, 'A & P SERVICIOS GENERALES DESIGN S.A.C.', '--', '20603163975', '', '', 'MZA. N LOTE. 24 SEC. 1 GRUPO 22 (AV. MODELO HOSPITAL SOLIDARIDAD) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42254', NULL, 'A & P SERVICIOS GENERALES DESIGN S.A.C.', '--', '20603163975', '', '', 'MZA. N LOTE. 24 SEC. 1 GRUPO 22 (AV. MODELO HOSPITAL SOLIDARIDAD) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42255', NULL, 'A & P SERVICIOS GENERALES DESIGN S.A.C.', '--', '20603163975', '', '', 'MZA. N LOTE. 24 SEC. 1 GRUPO 22 (AV. MODELO HOSPITAL SOLIDARIDAD) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42259', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42260', NULL, 'LOPEZ ALVAREZ MELISSA VERUSKA', '--', '10443891027', '', '', 'av jose olaya 205 chorrillos-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42261', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42265', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42266', NULL, 'alfredo cuenca', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42274', NULL, 'CORPORATE M & C S.A.C.', '--', '20608849051', '', '', 'PJ. ANTONIO RAIMONDI NRO. 370 INT. 83 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42275', NULL, 'CORPORATE M & C S.A.C.', '--', '20608849051', '', '', 'PJ. ANTONIO RAIMONDI NRO. 370 INT. 83 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42276', NULL, 'CORPORATE M & C S.A.C.', '--', '20608849051', '', '', 'PJ. ANTONIO RAIMONDI NRO. 370 INT. 83 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42277', NULL, 'CORPORATE M & C S.A.C.', '--', '20608849051', '', '', 'PJ. ANTONIO RAIMONDI NRO. 370 INT. 83 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42280', NULL, 'juvenal peña', '32287272', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42281', NULL, 'juvenal peña', '32287272', '', '', '', 'huari-ancash', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42286', NULL, 'CENAS CASAMAYOR MARCIAL ANIBAL', '--', '10077588839', '', '', 'JR SUECIA 1283-URB SAN RAFAEL-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42287', NULL, 'CENAS CASAMAYOR MARCIAL ANIBAL', '--', '10077588839', '', '', 'JR SUECIA 1283-URB SAN RAFAEL-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42288', NULL, 'CENAS CASAMAYOR MARCIAL ANIBAL', '--', '10077588839', '', '', 'JR SUECIA 1283-URB SAN RAFAEL-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42289', NULL, 'CENAS CASAMAYOR MARCIAL ANIBAL', '--', '10077588839', '', '', 'JR SUECIA 1283-URB SAN RAFAEL-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42293', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42294', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42298', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42299', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42300', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42304', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42305', NULL, 'CORPORACION DESARROLLO INDUSTRIAL S.A.C. - CORDI S.A.C.', '--', '20600915241', '', '', 'CAL.LOS CIPRESES MZA. I LOTE. 39 (ZONA INDUSTRIAL ENZENADA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42306', NULL, 'CORPORACION DESARROLLO INDUSTRIAL S.A.C. - CORDI S.A.C.', '--', '20600915241', '', '', 'CAL.LOS CIPRESES MZA. I LOTE. 39 (ZONA INDUSTRIAL ENZENADA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42308', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42309', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42310', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42311', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42312', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42318', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42319', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42322', NULL, 'amanda marcelo', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42325', NULL, 'VARIOS', '17830441', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42329', NULL, 'leidy nunta', '48125910', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42330', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42332', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42335', NULL, 'RUBI GAMING S.A.C', '--', '20529464178', '', '', 'JR. DEL COMERCIO NRO. 755 BAR. SANTA APOLONIA CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42336', NULL, 'RUBI GAMING S.A.C', '--', '20529464178', '', '', 'JR. DEL COMERCIO NRO. 755 BAR. SANTA APOLONIA CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42337', NULL, 'RUBI GAMING S.A.C', '--', '20529464178', '', '', 'JR. DEL COMERCIO NRO. 755 BAR. SANTA APOLONIA CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42338', NULL, 'RUBI GAMING S.A.C', '--', '20529464178', '', '', 'JR. DEL COMERCIO NRO. 755 BAR. SANTA APOLONIA CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42339', NULL, 'RUBI GAMING S.A.C', '--', '20529464178', '', '', 'JR. DEL COMERCIO NRO. 755 BAR. SANTA APOLONIA CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42340', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42341', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42342', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42347', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42348', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42349', NULL, 'OLAVENT ELECTRONICS EIRL', '--', '20607685402', '', '', 'AV. ABANCAY NRO. 1054 INT. 423 (C.C. UNICACHI) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42350', NULL, 'OLAVENT ELECTRONICS EIRL', '--', '20607685402', '', '', 'AV. ABANCAY NRO. 1054 INT. 423 (C.C. UNICACHI) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42351', NULL, 'OLAVENT ELECTRONICS EIRL', '--', '20607685402', '', '', 'AV. ABANCAY NRO. 1054 INT. 423 (C.C. UNICACHI) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42352', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42356', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42357', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42367', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42368', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42372', NULL, 'INSIDE MARKETING DIGITAL S.A.C', '--', '20605955721', '', '', 'CAL.TORRES DE LA HIGUERA NRO. 142 LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42373', NULL, 'INSIDE MARKETING DIGITAL S.A.C', '--', '20605955721', '', '', 'CAL.TORRES DE LA HIGUERA NRO. 142 LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42374', NULL, 'INSIDE MARKETING DIGITAL S.A.C', '--', '20605955721', '', '', 'CAL.TORRES DE LA HIGUERA NRO. 142 LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42375', NULL, 'INSIDE MARKETING DIGITAL S.A.C', '--', '20605955721', '', '', 'CAL.TORRES DE LA HIGUERA NRO. 142 LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42377', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42386', NULL, 'andy caycho', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42387', NULL, 'kelly garcia', '70100125', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42388', NULL, 'ruben rojas', '06540191', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42389', NULL, 'josep ccama', '44311475', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42392', NULL, 'obdulio rivera', '40694224', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42394', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42398', NULL, 'pedro urruchi', '43051630', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42401', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42402', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42403', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42404', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42405', NULL, 'luciano antonio flores', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42406', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42411', NULL, 'TECNIGASPE E.I.R.L.', '--', '20607139921', '', '', '-CIRCUNVALACIÓN MZA. O LOTE. 2 LA ATARJEA LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42412', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42413', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42414', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42415', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42416', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42417', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42421', NULL, 'CHURA GOMEZ CESAR', '--', '10024344407', '', '', 'JR COPERNICO 370-LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42422', NULL, 'CHURA GOMEZ CESAR', '--', '10024344407', '', '', 'JR COPERNICO 370-LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42423', NULL, 'CHURA GOMEZ CESAR', '--', '10024344407', '', '', 'JR COPERNICO 370-LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42424', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42426', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42428', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42429', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42430', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42432', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42433', NULL, 'rocio portugal', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42434', NULL, 'wilson garcia', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42436', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42437', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42441', NULL, 'HUAMAN ESQUIVIAS FELIPE', '--', '10243898183', '', '', 'prolongacion huanuco #1599 int 107 la victoria-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42444', NULL, 'amelia', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42447', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42454', NULL, 'TINKA RESOURCES S.A.C.', '--', '20507480811', '', '', 'AV. ALFREDO BENAVIDES NRO. 1579 INT. 306 URB. SAN JORGE (ENTRE CALLE BENAVIDES Y JORGE BUCKLEY) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42455', NULL, 'TINKA RESOURCES S.A.C.', '--', '20507480811', '', '', 'AV. ALFREDO BENAVIDES NRO. 1579 INT. 306 URB. SAN JORGE (ENTRE CALLE BENAVIDES Y JORGE BUCKLEY) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42456', NULL, 'TINKA RESOURCES S.A.C.', '--', '20507480811', '', '', 'AV. ALFREDO BENAVIDES NRO. 1579 INT. 306 URB. SAN JORGE (ENTRE CALLE BENAVIDES Y JORGE BUCKLEY) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42458', NULL, 'ASTUCURI YAURI JOSE ANTONIO', '--', '10105985954', '', '', 'ILA COLONIA 117 URB. EL MANZANO RIMAC-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42461', NULL, 'ROXANA MANRIQUE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42464', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42465', NULL, 'OLIVIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42466', NULL, 'ROSALBINA CARBAJAL', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42472', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42473', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42475', NULL, 'ZOILA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42476', NULL, 'SHEYLA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42478', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42479', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42480', NULL, 'ESPINOZA GOMEZ ROSMIHT', '--', '10464268061', '', '', 'JR. SEBASTIAN BARRACA 1651 INT. 13 LA VICTORIA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42484', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42486', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42487', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42488', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42489', NULL, 'percy urteaga', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42490', NULL, 'rosa vilchez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42491', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42493', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42497', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42499', NULL, 'jase santamaria', '48697149', '', '', '', 'lima cercado', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42514', NULL, 'LUCIANA MANCILLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42515', NULL, 'LUCIANA MANCILLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42516', NULL, 'LUCIANA MANCILLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42517', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42518', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42519', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42520', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42521', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42522', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42526', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42531', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42532', NULL, 'INGENIERIA DE CONTROL DIGITAL S.A.', '--', '20468246954', '', '', 'CAL.FEDERICO VILLARREAL NRO. 80 URB. JARDIN LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42533', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42534', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42535', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42536', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42538', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42540', NULL, 'ABAN M Y N S.A.C.', '--', '20542093049', '', '', '----BOLIVAR NRO. 202 (FTE A LA MUNICIPALIDAD) LIMA - BARRANCA - PATIVILCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42541', NULL, 'ABAN M Y N S.A.C.', '--', '20542093049', '', '', '----BOLIVAR NRO. 202 (FTE A LA MUNICIPALIDAD) LIMA - BARRANCA - PATIVILCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42542', NULL, 'ABAN M Y N S.A.C.', '--', '20542093049', '', '', '----BOLIVAR NRO. 202 (FTE A LA MUNICIPALIDAD) LIMA - BARRANCA - PATIVILCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42543', NULL, 'ABAN M Y N S.A.C.', '--', '20542093049', '', '', '----BOLIVAR NRO. 202 (FTE A LA MUNICIPALIDAD) LIMA - BARRANCA - PATIVILCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42551', NULL, 'mary', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42556', NULL, 'jose villafuerte', '45406225', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42558', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42560', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42561', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42565', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42566', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42567', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42569', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42570', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42571', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42572', NULL, 'MECATRONICA PERUANA E.I.R.L.', '--', '20513997656', '', '', 'CAL.MANUEL BEINGOLEA NRO. 338 LA VIñA (CRUCE CON LA CALLE SANTIAGO CRESPO) LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42580', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42584', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42592', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42593', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42594', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42595', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42596', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42597', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42598', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42599', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42600', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42601', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42602', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42603', NULL, 'edith solis', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42604', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42606', NULL, 'JMEGA E.I.R.L.', '--', '20565361911', '', '', 'CAL.2DA ETAPA MZA. H LOTE. 10 URB. JORGE CHAVEZ 2DA (JORGE CHAVEZ SEGUNDA ETAPA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42607', NULL, 'JMEGA E.I.R.L.', '--', '20565361911', '', '', 'CAL.2DA ETAPA MZA. H LOTE. 10 URB. JORGE CHAVEZ 2DA (JORGE CHAVEZ SEGUNDA ETAPA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42608', NULL, 'JMEGA E.I.R.L.', '--', '20565361911', '', '', 'CAL.2DA ETAPA MZA. H LOTE. 10 URB. JORGE CHAVEZ 2DA (JORGE CHAVEZ SEGUNDA ETAPA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42609', NULL, 'JMEGA E.I.R.L.', '--', '20565361911', '', '', 'CAL.2DA ETAPA MZA. H LOTE. 10 URB. JORGE CHAVEZ 2DA (JORGE CHAVEZ SEGUNDA ETAPA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42610', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42611', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42613', NULL, 'IMPORT & EXPORT STEVALU S.A.C.', '--', '20608209566', '', '', 'JR. HIPOLITO UNANUE NRO. 1222 DPTO. 21 (JR. UNANUE 122 DPTO. 21 4TO PISO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42614', NULL, 'IMPORT & EXPORT STEVALU S.A.C.', '--', '20608209566', '', '', 'JR. HIPOLITO UNANUE NRO. 1222 DPTO. 21 (JR. UNANUE 122 DPTO. 21 4TO PISO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42615', NULL, 'IMPORT & EXPORT STEVALU S.A.C.', '--', '20608209566', '', '', 'JR. HIPOLITO UNANUE NRO. 1222 DPTO. 21 (JR. UNANUE 122 DPTO. 21 4TO PISO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42616', NULL, 'IMPORT & EXPORT STEVALU S.A.C.', '--', '20608209566', '', '', 'JR. HIPOLITO UNANUE NRO. 1222 DPTO. 21 (JR. UNANUE 122 DPTO. 21 4TO PISO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42618', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42619', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42620', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42629', NULL, 'NELIDA VIVAS VASQUEZ', '46515114', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42630', NULL, 'NELIDA VIVAS VASQUEZ', '46515114', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42631', NULL, 'NELIDA VIVAS VASQUEZ', '46515114', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42634', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42637', NULL, 'mario salinas abendaño', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42639', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42640', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42643', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42644', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42645', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42646', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42647', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42648', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42649', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42650', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42651', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42652', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42653', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42654', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42655', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42656', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42657', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42658', NULL, 'CESER ELECTRIC S.A.C.', '--', '20511520429', '', '', 'AV. LOS PINOS NRO. 792 URB. POP.EL ERMITAÑO LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42660', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42664', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42665', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42666', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42667', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42674', NULL, 'CORPORACION JH TAIPE E.I.R.L.', '--', '20606777800', '', '', 'JR. FRANCISCO JAVIER DE LUNA PIZARRO NRO. 201 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42675', NULL, 'CORPORACION JH TAIPE E.I.R.L.', '--', '20606777800', '', '', 'JR. FRANCISCO JAVIER DE LUNA PIZARRO NRO. 201 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42679', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42682', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42683', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42684', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42685', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42688', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42690', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42693', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42694', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42695', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42696', NULL, 'guida sotomayor olivera', '09055101', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42701', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42702', NULL, 'EMMA ONCE ASTO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42703', NULL, 'EMMA ONCE ASTO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42704', NULL, 'EMMA ONCE ASTO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42705', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42706', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42707', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42708', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42715', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42716', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42717', NULL, 'FERNANDEZ PEREZ VANESSA SORAIDA', '--', '10454984701', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42718', NULL, 'FERNANDEZ PEREZ VANESSA SORAIDA', '--', '10454984701', '', '', 'psje panama mz h lt10 naciones unidas -el agustino -lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42722', NULL, 'INVERSIONES WONG SOCIEDAD ANONIMA CERRADA', '--', '20557747142', '', '', 'CAL.LOS LICOPODIOS NRO. 125 URB. SAN HILARION ETAPA 2 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42726', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42727', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42728', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42729', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42730', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42731', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42732', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42738', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42739', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42740', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42741', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42742', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42747', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42748', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42749', NULL, 'SERVICIO SOCIAL DEL DIRECTOR Y SUPERVISOR', '--', '20100859778', '', '', 'JR. LEON VELARDE NRO. 132 (ALTURA CDRA 17 DE AV.ARENALES) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42750', NULL, 'SERVICIO SOCIAL DEL DIRECTOR Y SUPERVISOR', '--', '20100859778', '', '', 'JR. LEON VELARDE NRO. 132 (ALTURA CDRA 17 DE AV.ARENALES) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42751', NULL, 'SERVICIO SOCIAL DEL DIRECTOR Y SUPERVISOR', '--', '20100859778', '', '', 'JR. LEON VELARDE NRO. 132 (ALTURA CDRA 17 DE AV.ARENALES) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42752', NULL, 'SERVICIO SOCIAL DEL DIRECTOR Y SUPERVISOR', '--', '20100859778', '', '', 'JR. LEON VELARDE NRO. 132 (ALTURA CDRA 17 DE AV.ARENALES) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42757', NULL, 'REPRESENTACIONES MEDICAS MASA E.I.R.L.', '--', '20444459566', '', '', 'PJ. INMACULADA NRO. 148 (PJE Q STA FRENTE PTA PRINC CE STA ISABEL) JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42758', NULL, 'REPRESENTACIONES MEDICAS MASA E.I.R.L.', '--', '20444459566', '', '', 'PJ. INMACULADA NRO. 148 (PJE Q STA FRENTE PTA PRINC CE STA ISABEL) JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42759', NULL, 'REPRESENTACIONES MEDICAS MASA E.I.R.L.', '--', '20444459566', '', '', 'PJ. INMACULADA NRO. 148 (PJE Q STA FRENTE PTA PRINC CE STA ISABEL) JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42760', NULL, 'REPRESENTACIONES MEDICAS MASA E.I.R.L.', '--', '20444459566', '', '', 'PJ. INMACULADA NRO. 148 (PJE Q STA FRENTE PTA PRINC CE STA ISABEL) JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42761', NULL, 'REPRESENTACIONES MEDICAS MASA E.I.R.L.', '--', '20444459566', '', '', 'PJ. INMACULADA NRO. 148 (PJE Q STA FRENTE PTA PRINC CE STA ISABEL) JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42762', NULL, 'REPRESENTACIONES MEDICAS MASA E.I.R.L.', '--', '20444459566', '', '', 'PJ. INMACULADA NRO. 148 (PJE Q STA FRENTE PTA PRINC CE STA ISABEL) JUNIN - HUANCAYO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42763', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42764', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42765', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42766', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42772', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42773', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42774', NULL, 'carlos ramos', '25612066', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42775', NULL, 'carlos ramos', '25612066', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42776', NULL, 'carlos ramos', '25612066', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42777', NULL, 'EXPRESO CARGOSUR E.I.R.L.', '--', '20456042920', '', '', 'CAL.GARCI CARBAJAL NRO. 509 URB. IV CENTENARIO AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42778', NULL, 'EXPRESO CARGOSUR E.I.R.L.', '--', '20456042920', '', '', 'CAL.GARCI CARBAJAL NRO. 509 URB. IV CENTENARIO AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42779', NULL, 'EXPRESO CARGOSUR E.I.R.L.', '--', '20456042920', '', '', 'CAL.GARCI CARBAJAL NRO. 509 URB. IV CENTENARIO AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42780', NULL, 'EXPRESO CARGOSUR E.I.R.L.', '--', '20456042920', '', '', 'CAL.GARCI CARBAJAL NRO. 509 URB. IV CENTENARIO AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42787', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42788', NULL, 'GARROTE AMAYA DURBIN JUAN', '--', '10100069232', '', '', 'CALLE PUENTE MZA LOTE 10B -CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42789', NULL, 'GARROTE AMAYA DURBIN JUAN', '--', '10100069232', '', '', 'CALLE PUENTE MZA LOTE 10B -CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42790', NULL, 'GARROTE AMAYA DURBIN JUAN', '--', '10100069232', '', '', 'CALLE PUENTE MZA LOTE 10B -CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42791', NULL, 'GARROTE AMAYA DURBIN JUAN', '--', '10100069232', '', '', 'CALLE PUENTE MZA LOTE 10B -CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42792', NULL, 'GARROTE AMAYA DURBIN JUAN', '--', '10100069232', '', '', 'CALLE PUENTE MZA LOTE 10B -CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42793', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42794', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42795', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42797', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42798', NULL, 'HUMBERTO COZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42799', NULL, 'HUMBERTO COZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42800', NULL, 'HUMBERTO COZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42801', NULL, 'HUMBERTO COZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42802', NULL, 'HUMBERTO COZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42803', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42804', NULL, 'karina martinez sanchez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42805', NULL, 'karina martinez sanchez', '40584135', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42806', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42807', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42811', NULL, 'CESPEDES CARRASCO GIOVANNI OMAR', '--', '10405366113', '', '', 'MZ E LOTE 27 LOS ROSALES DE PRO -LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42812', NULL, 'CESPEDES CARRASCO GIOVANNI OMAR', '--', '10405366113', '', '', 'MZ E LOTE 27 LOS ROSALES DE PRO -LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42816', NULL, 'KATERINE GUZMAN NATEROS', '46055256', '', '', '', 'CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42819', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42821', NULL, 'KCF CORPORACION EMPRESA INDIVIDUAL DE RESPONSABILIDAD L', '--', '20602095704', '', '', 'CAL.EL AMAUTA NRO. 147 URB. CARLOS CUETO FERNANDINI ET. CUATRO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42822', NULL, 'KCF CORPORACION EMPRESA INDIVIDUAL DE RESPONSABILIDAD L', '--', '20602095704', '', '', 'CAL.EL AMAUTA NRO. 147 URB. CARLOS CUETO FERNANDINI ET. CUATRO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42823', NULL, 'KCF CORPORACION EMPRESA INDIVIDUAL DE RESPONSABILIDAD L', '--', '20602095704', '', '', 'CAL.EL AMAUTA NRO. 147 URB. CARLOS CUETO FERNANDINI ET. CUATRO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42824', NULL, 'EMPRESA DE TURISMO AJC EXPRESS SOCIEDAD ANONIMA CERRADA', '--', '20606975512', '', '', 'AV. LAS AMERICAS NRO. 305 URB. CERCADO DE HUNTER AREQUIPA - AREQUIPA - JACOBO HUNTER', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42825', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42826', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42827', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42831', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42833', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42834', NULL, 'HILADOS ACRILICOS SAN JUAN SOCIEDAD ANONIMA CERRADA', '--', '20101298770', '', '', 'AV. LURIGANCHO NRO. 901 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42835', NULL, 'HILADOS ACRILICOS SAN JUAN SOCIEDAD ANONIMA CERRADA', '--', '20101298770', '', '', 'AV. LURIGANCHO NRO. 901 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42836', NULL, 'HILADOS ACRILICOS SAN JUAN SOCIEDAD ANONIMA CERRADA', '--', '20101298770', '', '', 'AV. LURIGANCHO NRO. 901 URB. ZARATE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42841', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42842', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42843', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42844', NULL, 'LIGIA  ANGELA YCHILLUMPA MAJO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42845', NULL, 'LIGIA ANGELA YCHILLUMPA MAJO', '09083805', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42846', NULL, 'LIGIA ANGELA YCHILLUMPA MAJO', '09083805', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42847', NULL, 'LIGIA ANGELA YCHILLUMPA MAJO', '09083805', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42849', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42856', NULL, 'INVERSIONES NORAMAR S.A.C.', '--', '20609305577', '', '', 'AV. MARISCAL RAMON CASTILLA NRO. 807 URB. GENERAL ERNESTO MONTAGNE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42857', NULL, 'INVERSIONES NORAMAR S.A.C.', '--', '20609305577', '', '', 'AV. MARISCAL RAMON CASTILLA NRO. 807 URB. GENERAL ERNESTO MONTAGNE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42858', NULL, 'INVERSIONES NORAMAR S.A.C.', '--', '20609305577', '', '', 'AV. MARISCAL RAMON CASTILLA NRO. 807 URB. GENERAL ERNESTO MONTAGNE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42859', NULL, 'INVERSIONES NORAMAR S.A.C.', '--', '20609305577', '', '', 'AV. MARISCAL RAMON CASTILLA NRO. 807 URB. GENERAL ERNESTO MONTAGNE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42860', NULL, 'INVERSIONES NORAMAR S.A.C.', '--', '20609305577', '', '', 'AV. MARISCAL RAMON CASTILLA NRO. 807 URB. GENERAL ERNESTO MONTAGNE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42861', NULL, 'INVERSIONES NORAMAR S.A.C.', '--', '20609305577', '', '', 'AV. MARISCAL RAMON CASTILLA NRO. 807 URB. GENERAL ERNESTO MONTAGNE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42862', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42863', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42864', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42866', NULL, 'RUTH ALEXANDRA  ABARCA CARRILLO', '42864607', '', '', '', 'URB. LAS FLORES 78 JR CAOLIN 385 S.J.L- LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42870', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42871', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42872', NULL, 'CONSORCIO MONTE CARMELO S.A.C.', '--', '20608936034', '', '', 'CAL.LOS LAURELES NRO. 770 URB. LOS JAZMINES CANTO GRANDE UNIDAD SEIS (ALT PARADERO 9 AV CTO GRANDE) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42873', NULL, 'CONSORCIO MONTE CARMELO S.A.C.', '--', '20608936034', '', '', 'CAL.LOS LAURELES NRO. 770 URB. LOS JAZMINES CANTO GRANDE UNIDAD SEIS (ALT PARADERO 9 AV CTO GRANDE) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42874', NULL, 'CONSORCIO MONTE CARMELO S.A.C.', '--', '20608936034', '', '', 'CAL.LOS LAURELES NRO. 770 URB. LOS JAZMINES CANTO GRANDE UNIDAD SEIS (ALT PARADERO 9 AV CTO GRANDE) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42875', NULL, 'NEGOCIACIONES REYMAR S.A.C.', '--', '20601788901', '', '', 'CAL.A MZA. F LOTE. 25 URB. NUESTRA SEÑORA DE GUADALUPE (CUADRA 5 Y 6 AVENIDA MIGUEL IGLESIAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42876', NULL, 'NEGOCIACIONES REYMAR S.A.C.', '--', '20601788901', '', '', 'CAL.A MZA. F LOTE. 25 URB. NUESTRA SEÑORA DE GUADALUPE (CUADRA 5 Y 6 AVENIDA MIGUEL IGLESIAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42877', NULL, 'NEGOCIACIONES REYMAR S.A.C.', '--', '20601788901', '', '', 'CAL.A MZA. F LOTE. 25 URB. NUESTRA SEÑORA DE GUADALUPE (CUADRA 5 Y 6 AVENIDA MIGUEL IGLESIAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42878', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42879', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42880', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42883', NULL, 'JCF INVERSIONES Y SERVICIOS GENERALES S.A.C.', '--', '20605287175', '', '', 'AV. EDUARDO DE HABICH NRO. 492 INT. 4 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42884', NULL, 'JCF INVERSIONES Y SERVICIOS GENERALES S.A.C.', '--', '20605287175', '', '', 'AV. EDUARDO DE HABICH NRO. 492 INT. 4 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42885', NULL, 'JCF INVERSIONES Y SERVICIOS GENERALES S.A.C.', '--', '20605287175', '', '', 'AV. EDUARDO DE HABICH NRO. 492 INT. 4 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42886', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42887', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42888', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42890', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42891', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42892', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42893', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42894', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42895', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42896', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42897', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42898', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42901', NULL, 'IGLESIA VILLA EL PEDREGAL', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42905', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42906', NULL, 'COLEGIO MANUEL BONILLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42907', NULL, 'COLEGIO MANUEL BONILLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42908', NULL, 'COLEGIO MANUEL BONILLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42909', NULL, 'COLEGIO MANUEL BONILLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42910', NULL, 'COLEGIO MANUEL BONILLA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42911', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42912', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42919', NULL, 'FERNANDEZ FALCON OSCAR ORLANDO', '--', '10806604939', '', '', 'AV. ORION # 536 HUANCAYO-JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42924', NULL, 'JAVIER MOGOLLON', '46266572', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42925', NULL, 'CORPORACION HOTELERA LIMA S.A.C.', '--', '20601291283', '', '', 'CAL.CORONEL ANDRES REYES NRO. 492 URB. JARDIN LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42930', NULL, 'C & S ASESORES EMPRESARIALES S.A.C.', '--', '20547819978', '', '', 'CAL.TAMBO HUASCAR NRO. 167 DPTO. 101 URB. MARANGA ET. DOS LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42931', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42935', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42937', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42940', NULL, 'RAUL ALVAREZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42941', NULL, 'MERCEDES ISIDRO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42942', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42943', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42945', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42946', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42947', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42948', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42949', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42950', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42951', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42952', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42953', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42954', NULL, 'david cosavalente', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42955', NULL, 'david cosavalente', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42956', NULL, 'david cosavalente', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42958', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42960', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42961', NULL, 'eva cordero', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42962', NULL, 'eva cordero', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42963', NULL, 'eva cordero', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42969', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42973', NULL, 'diego montoya', '46246749', '', '', '', 'cuzco', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42974', NULL, 'diego montoya', '46246749', '', '', '', 'cuzco', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42975', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42976', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42978', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42979', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42980', NULL, 'JR. HEALTHY NUTRITION S.A.C.', '--', '20600341848', '', '', 'AV. ALMRTE MIGUE GRAU NRO. 170 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42983', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42985', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42988', NULL, 'DARA TECHS E.I.R.L.', '--', '20600524128', '', '', 'AV. PROLONGAC. GUARDIA CIVIL MZA. A LOTE. 1 URB. SAN ANTONIO DE SURCO (MEDIA CUADRA DE TIENDA PROMAR Y PLAZA VE) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42989', NULL, 'DARA TECHS E.I.R.L.', '--', '20600524128', '', '', 'AV. PROLONGAC. GUARDIA CIVIL MZA. A LOTE. 1 URB. SAN ANTONIO DE SURCO (MEDIA CUADRA DE TIENDA PROMAR Y PLAZA VE) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42990', NULL, 'MARILU MEZA', '09313352', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42992', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42993', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42994', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42995', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42996', NULL, 'HOTEL EL PUEBLO HUALLANCA E.I.R.L.', '--', '20533626727', '', '', 'JR. HUANUCO NRO. 300 ANCASH - BOLOGNESI - HUALLANCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('42999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43000', NULL, 'MACALUPU MENDOZA MARCOS ANTONIO', '--', '10413836285', '', '', 'AV. IQUITOS 169 LA VICTORIA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43002', NULL, 'CONSORCIO SAN MIGUEL ARCANGEL ACOBAMBA SOCIEDAD ANÓNIMA', '--', '20600328132', '', '', 'JR. AYACUCHO NRO. 241 (MEDIA CDRA OVALO PAULA DE OTERO) JUNIN - TARMA - TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43003', NULL, 'CONSORCIO SAN MIGUEL ARCANGEL ACOBAMBA SOCIEDAD ANÓNIMA', '--', '20600328132', '', '', 'JR. AYACUCHO NRO. 241 (MEDIA CDRA OVALO PAULA DE OTERO) JUNIN - TARMA - TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43004', NULL, 'CONSORCIO SAN MIGUEL ARCANGEL ACOBAMBA SOCIEDAD ANÓNIMA', '--', '20600328132', '', '', 'JR. AYACUCHO NRO. 241 (MEDIA CDRA OVALO PAULA DE OTERO) JUNIN - TARMA - TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43005', NULL, 'CONSORCIO SAN MIGUEL ARCANGEL ACOBAMBA SOCIEDAD ANÓNIMA', '--', '20600328132', '', '', 'JR. AYACUCHO NRO. 241 (MEDIA CDRA OVALO PAULA DE OTERO) JUNIN - TARMA - TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43007', NULL, 'HUACHACA GARRAFA CANDY', '--', '10454198137', '', '', 'comite 8c mzh lt3 villa maria del triunfo-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43010', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43011', NULL, 'DELGADO PISFIL MILAGROS DEL ROSARIO', '--', '10255561109', '', '', 'jose santos chocano 1141 los olivos-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43012', NULL, 'HG MULTISERVICIOS Y REPRESENTACIONES EI.R.L.', '--', '20601873002', '', '', 'MZA. F LOTE. 1 SEC. 2 GRUPO 14 (ALTURA DE LA MUNICIPALIDAD DE VES) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43013', NULL, 'HG MULTISERVICIOS Y REPRESENTACIONES EI.R.L.', '--', '20601873002', '', '', 'MZA. F LOTE. 1 SEC. 2 GRUPO 14 (ALTURA DE LA MUNICIPALIDAD DE VES) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43014', NULL, 'HG MULTISERVICIOS Y REPRESENTACIONES EI.R.L.', '--', '20601873002', '', '', 'MZA. F LOTE. 1 SEC. 2 GRUPO 14 (ALTURA DE LA MUNICIPALIDAD DE VES) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43015', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43016', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43017', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43018', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43019', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43021', NULL, 'magnolia concha', '31037175', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43022', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43023', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43026', NULL, 'sara alejos', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43030', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43031', NULL, 'nancy suni', '46338085', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43034', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43035', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43036', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43037', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43042', NULL, 'ELECTRICOS INDUSTRIAL ATLANTIC SAC', '--', '20512734198', '', '', 'AV. UNIVERSITARIA NRO. 741 URB. ROMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43043', NULL, 'ELECTRICOS INDUSTRIAL ATLANTIC SAC', '--', '20512734198', '', '', 'AV. UNIVERSITARIA NRO. 741 URB. ROMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43044', NULL, 'ELECTRICOS INDUSTRIAL ATLANTIC SAC', '--', '20512734198', '', '', 'AV. UNIVERSITARIA NRO. 741 URB. ROMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43051', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43055', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43056', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43058', NULL, 'NAYELI RENATA SANCHEZ MEJIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43061', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43065', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43067', NULL, 'ROSA VILLANUEVA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43069', NULL, 'CORPORACION PAREDES ROJAS S.A.C', '--', '20553709319', '', '', 'CAL.CALLE LAS LILAS MZA. P LOTE. 21 ASC. SOL DE SANTA ANITA LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43070', NULL, 'RNC INVERSIONES S.R.L.', '--', '20607434221', '', '', 'PRO.HUAMANGA NRO. 376 URB. HUAMANGA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43073', NULL, 'ciro', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43074', NULL, 'ciro', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43075', NULL, 'ciro', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43076', NULL, 'CARDENAS BECERRA FERMIN JESUS', '--', '17178343394', '', '', 'SAN JOSE DE LURIN MZ G 1 LOTE 22 -LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43077', NULL, 'CARDENAS BECERRA FERMIN JESUS', '--', '17178343394', '', '', 'SAN JOSE DE LURIN MZ G 1 LOTE 22 -LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43078', NULL, 'CARDENAS BECERRA FERMIN JESUS', '--', '17178343394', '', '', 'SAN JOSE DE LURIN MZ G 1 LOTE 22 -LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43079', NULL, 'CARDENAS BECERRA FERMIN JESUS', '--', '17178343394', '', '', 'SAN JOSE DE LURIN MZ G 1 LOTE 22 -LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43082', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43083', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43088', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43089', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43090', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43091', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43092', NULL, 'YAZMIN', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43093', NULL, 'ROSALI VEGA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43094', NULL, 'VEGA ARANDA ROSALY HAMBAR', '--', '10408892011', '', '', 'PSJE MIGUEL ZAMORA 107 LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43097', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43098', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43099', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43102', NULL, 'INVERSIONES CORPORATIVAS J & L SAC', '--', '20556944513', '', '', 'JR. PROLONGACION GAMARRA NRO. 653 INT. 809 URB. SAN PABLO (GALERIA PLAZA PISO 8) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43103', NULL, 'INVERSIONES CORPORATIVAS J & L SAC', '--', '20556944513', '', '', 'JR. PROLONGACION GAMARRA NRO. 653 INT. 809 URB. SAN PABLO (GALERIA PLAZA PISO 8) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43104', NULL, 'INVERSIONES CORPORATIVAS J & L SAC', '--', '20556944513', '', '', 'JR. PROLONGACION GAMARRA NRO. 653 INT. 809 URB. SAN PABLO (GALERIA PLAZA PISO 8) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43105', NULL, 'INVERSIONES CORPORATIVAS J & L SAC', '--', '20556944513', '', '', 'JR. PROLONGACION GAMARRA NRO. 653 INT. 809 URB. SAN PABLO (GALERIA PLAZA PISO 8) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43106', NULL, 'INVERSIONES CORPORATIVAS J & L SAC', '--', '20556944513', '', '', 'JR. PROLONGACION GAMARRA NRO. 653 INT. 809 URB. SAN PABLO (GALERIA PLAZA PISO 8) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43107', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43108', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43109', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43110', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43111', NULL, 'SU YONG CESAR', '--', '10105573699', '', '', 'av. republica de panama 6545 surco-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43113', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43114', NULL, 'TRINIDAD MARCELO HERLY SOLEDAD', '--', '10403329466', '', '', 'JR HUAMACHUCO 262 A - CHOPIMARCA - CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43115', NULL, 'TRINIDAD MARCELO HERLY SOLEDAD', '--', '10403329466', '', '', 'JR HUAMACHUCO 262 A - CHOPIMARCA - CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43116', NULL, 'TRINIDAD MARCELO HERLY SOLEDAD', '--', '10403329466', '', '', 'JR HUAMACHUCO 262 A - CHOPIMARCA - CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43117', NULL, 'TRINIDAD MARCELO HERLY SOLEDAD', '--', '10403329466', '', '', 'JR HUAMACHUCO 262 A - CHOPIMARCA - CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43119', NULL, 'SALCEDO FLORES EMPERATRIZ MILAGROS', '70221580', '', '', '', 'CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43120', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43125', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43126', NULL, 'LA CLETA PERU S.A.C.', '--', '20609238276', '', '', 'CAL.ALFA Y OMEGA NRO. 202 DPTO. 602 URB. LA CALERA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43127', NULL, 'LA CLETA PERU S.A.C.', '--', '20609238276', '', '', 'CAL.ALFA Y OMEGA NRO. 202 DPTO. 602 URB. LA CALERA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43128', NULL, 'LA CLETA PERU S.A.C.', '--', '20609238276', '', '', 'CAL.ALFA Y OMEGA NRO. 202 DPTO. 602 URB. LA CALERA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43129', NULL, 'LA CLETA PERU S.A.C.', '--', '20609238276', '', '', 'CAL.ALFA Y OMEGA NRO. 202 DPTO. 602 URB. LA CALERA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43134', NULL, 'MULTITIENDAS MOLINA S.A.C.', '--', '20608881370', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL (PISO 2 - FRENTE MCDO UNIVERSAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43135', NULL, 'MULTITIENDAS MOLINA S.A.C.', '--', '20608881370', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL (PISO 2 - FRENTE MCDO UNIVERSAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43136', NULL, 'MULTITIENDAS MOLINA S.A.C.', '--', '20608881370', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL (PISO 2 - FRENTE MCDO UNIVERSAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43137', NULL, 'MULTITIENDAS MOLINA S.A.C.', '--', '20608881370', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL (PISO 2 - FRENTE MCDO UNIVERSAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43138', NULL, 'FRANQUICIAS ALIMENTARIAS S.A.', '--', '20298674611', '', '', 'AV. CIRCUNVALACION DEL GOLF LOS INCAS NRO. 134 INT. 402 URB. CLUB GOLF LOS INCAS (EDIFICIO PANORAMA TORRE 2) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43139', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43143', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43144', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 2AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA20 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43145', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43147', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43148', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43149', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43150', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43151', NULL, 'MI & MA MODAS E.I.R.L.', '--', '20602181350', '', '', 'JR. LOS ALAMOS NRO. 378 DPTO. 401 INT. A URB. EL CORTIJO (CRUCE DE LAS AV EL DERBY CON OLGUIN) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43152', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43154', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43157', NULL, 'RAMOS LLASCCANOA ELVIS ANTONIO', '--', '10452767355', '', '', 'jr. amazonas 241tarma-tarma-junin', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43159', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43164', NULL, 'MUNDO HOGAR HECOMUEBLES E.I.R.L.', '--', '20608850598', '', '', 'AV. 28 DE JULIO NRO. 2398 INT. M18 URB. EL PORVENIR (CAMPO FERIAL 28 DE JULIO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43168', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43172', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43173', NULL, 'SALCEDO FLORES EMPERATRIZ MILAGROS', '70221580', '', '', '', 'CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43174', NULL, 'SALCEDO FLORES EMPERATRIZ MILAGROS', '70221580', '', '', '', 'CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43175', NULL, 'SALCEDO FLORES EMPERATRIZ MILAGROS', '70221580', '', '', '', 'CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43177', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43183', NULL, 'ALEJANDRA DAVILA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43184', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43193', NULL, 'RUASUN RESTAURANTES S.A.C.', '--', '20553513929', '', '', 'MZA. E LOTE. 8 ASC. LOS ALAMOS DE CANTO GRANDE ET. UNO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43194', NULL, 'RUASUN RESTAURANTES S.A.C.', '--', '20553513929', '', '', 'MZA. E LOTE. 8 ASC. LOS ALAMOS DE CANTO GRANDE ET. UNO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43195', NULL, 'RAMIREZ ZEVALLOS FELIPE GREGORIO', '--', '10090057451', '', '', 'MZ D LOTE 36 URB PACHACAMAC 4TA ETAPA -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43196', NULL, 'RAMIREZ ZEVALLOS FELIPE GREGORIO', '--', '10090057451', '', '', 'MZ D LOTE 36 URB PACHACAMAC 4TA ETAPA -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43197', NULL, 'RAMIREZ ZEVALLOS FELIPE GREGORIO', '--', '10090057451', '', '', 'MZ D LOTE 36 URB PACHACAMAC 4TA ETAPA -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43203', NULL, 'ROJAS ZAVALA EVER', '--', '10406252006', '', '', 'JR. JOSE UGARTE 211 S.J.L-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43204', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43205', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43206', NULL, 'BAZAN SEVILLANO LUZ ALBINA', '--', '10269242278', '', '', 'LA TORRE 863 CAJABAMBA-CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43207', NULL, 'RUIZ BENITES VICTORIA ESTHER', '--', '10742807091', '', '', 'PLAZA MARQUINA 248 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43208', NULL, 'RUIZ BENITES VICTORIA ESTHER', '--', '10742807091', '', '', 'PLAZA MARQUINA 248 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43209', NULL, 'RUIZ BENITES VICTORIA ESTHER', '--', '10742807091', '', '', 'PLAZA MARQUINA 248 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43210', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43211', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43212', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43214', NULL, 'RUIZ BENITES VICTORIA ESTHER', '--', '10742807091', '', '', 'PLAZA MARQUINA 248 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43218', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43221', NULL, 'CALLUPE HUAYTA VIOLETA', '--', '10257785144', '', '', 'JR. PUNO #652 CERCADO DE LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43222', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43223', NULL, 'TETRA S & S SERVICIOS Y SOLUCIONES S.A.C.', '--', '20535823627', '', '', 'MZA. Ñ LOTE. 2 P.J. LAS ANIMAS (ALT. PARADERO SHANGRILA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43224', NULL, 'TETRA S & S SERVICIOS Y SOLUCIONES S.A.C.', '--', '20535823627', '', '', 'MZA. Ñ LOTE. 2 P.J. LAS ANIMAS (ALT. PARADERO SHANGRILA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43228', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43229', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43230', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43231', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43232', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43237', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43241', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43242', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43247', NULL, 'PAZOS PEREZ AMBAR VERONICA', '--', '10743097420', '', '', 'URB. MANUEL PRADO AV. MACHU PICCHU N1 CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43255', NULL, 'RUIZ BENITES VICTORIA ESTHER', '--', '10742807091', '', '', 'PLAZA MARQUINA 248-SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43256', NULL, 'RUIZ BENITES VICTORIA ESTHER', '--', '10742807091', '', '', 'PLAZA MARQUINA 248-SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43257', NULL, 'RUIZ BENITES VICTORIA ESTHER', '--', '10742807091', '', '', 'PLAZA MARQUINA 248-SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43259', NULL, 'PEDRO CAMPOS', '07893961', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43260', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43261', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43265', NULL, 'INVERSIONES COPACABANA CHICKEN E.I.R.L.', '--', '20524564107', '', '', 'JR. MONTEVIDEO NRO. 893 (C.C. MOVICENTRO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43266', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43270', NULL, 'margorie chasquibol  gonzales', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43273', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43275', NULL, 'SEVILLANO ESPINOZA JUAN MANUEL', '--', '10410268880', '', '', 'AV LA MAR 230 PUEBLO LIBRE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43277', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43279', NULL, 'SERVICIOS LOGISTICOS RODRIGO S.A.C.', '--', '20602391133', '', '', 'CAL.7 MZA. F LOTE. 08 ASC. SAN REMO II LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43283', NULL, 'WILLIANS VELASQUEZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43287', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43288', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43289', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43293', NULL, 'mariela', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43295', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43297', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43300', NULL, 'CARMEN PACHAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43301', NULL, 'CARMEN PACHAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43302', NULL, 'CARMEN PACHAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43303', NULL, 'CARMEN PACHAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43304', NULL, 'CLAUDIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43305', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43306', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43308', NULL, 'NILUPU GRANADOS PEDRO PRAXIDES', '--', '10450497199', '', '', 'CALLE E1 MZ E LOTE 9 PRIMERA ETAPA CHILLON PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43309', NULL, 'NILUPU GRANADOS PEDRO PRAXIDES', '--', '10450497199', '', '', 'CALLE E1 MZ E LOTE 9 PRIMERA ETAPA CHILLON PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43310', NULL, 'NILUPU GRANADOS PEDRO PRAXIDES', '--', '10450497199', '', '', 'CALLE E1 MZ E LOTE 9 PRIMERA ETAPA CHILLON PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43311', NULL, 'NILUPU GRANADOS PEDRO PRAXIDES', '--', '10450497199', '', '', 'CALLE E1 MZ E LOTE 9 PRIMERA ETAPA CHILLON PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43312', NULL, 'NILUPU GRANADOS PEDRO PRAXIDES', '--', '10450497199', '', '', 'CALLE E1 MZ E LOTE 9 PRIMERA ETAPA CHILLON PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43314', NULL, 'POMAYAY YARANGA NIELS JOSLIN', '--', '10408154681', '', '', 'URB SAN TA ELVIRA MZ A LOTE 18 -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43315', NULL, 'POMAYAY YARANGA NIELS JOSLIN', '--', '10408154681', '', '', 'URB SAN TA ELVIRA MZ A LOTE 18 -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43316', NULL, 'POMAYAY YARANGA NIELS JOSLIN', '--', '10408154681', '', '', 'URB SAN TA ELVIRA MZ A LOTE 18 -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43317', NULL, 'HAISA INVERSIONES GENERALES E.I.R.L.', '--', '20609101114', '', '', 'JR. ASUNCION NRO. 555 DPTO. 201 URB. EL PARRAL ET. UNO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43318', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43320', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43321', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43322', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43323', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43326', NULL, 'CCASANI AUCCATOMA RONAL', '--', '10435782391', '', '', 'ASOCIACION SARITA COLONIA MZ L LOTE 3 JESUS NAZARENO -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43327', NULL, 'CCASANI AUCCATOMA RONAL', '--', '10435782391', '', '', 'ASOCIACION SARITA COLONIA MZ L LOTE 3 JESUS NAZARENO -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43328', NULL, 'CCASANI AUCCATOMA RONAL', '--', '10435782391', '', '', 'ASOCIACION SARITA COLONIA MZ L LOTE 3 JESUS NAZARENO -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43329', NULL, 'CCASANI AUCCATOMA RONAL', '--', '10435782391', '', '', 'ASOCIACION SARITA COLONIA MZ L LOTE 3 JESUS NAZARENO -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43330', NULL, 'CEP SAN JOSE DE CLUNY S.A.C.', '--', '20474399657', '', '', 'MZA. D LOTE. 4 ASOC.VIV.STA ROSA (AV PROCERES Y ANTUNEZ DE MAYOLO) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43334', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43335', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43336', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43337', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43338', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43340', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43341', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43342', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43343', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43345', NULL, 'VELASQUEZ BORDA LUIS ALBERTO', '--', '10024295716', '', '', 'JR HUANCABAMBA 1078 - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43346', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43347', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43355', NULL, 'SILVANA LUCIA ASSERETO TAPIA', '73663418', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43356', NULL, 'SILVANA LUCIA ASSERETO TAPIA', '73663418', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43357', NULL, 'SILVANA LUCIA ASSERETO TAPIA', '73663418', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43358', NULL, 'SILVANA LUCIA ASSERETO TAPIA', '73663418', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43362', NULL, 'CASA COMERCIAL WONG S R LTDA', '--', '20100632218', '', '', 'JR. PUNO NRO. 684 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43365', NULL, 'MENDOZA FLORES FRANKLIN', '--', '10430237859', '', '', 'PROLONGACION LOS EUCALIPTOS 271 - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43368', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43369', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43370', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43371', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43372', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43373', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43376', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43377', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43383', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43384', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43385', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43386', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43387', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43392', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43394', NULL, 'FUMERO BARAJAS CARMEN CECILIA', '--', '15609039113', '', '', 'URB MI TERRUÑO MZ K LOTE 11 CALLE 6 SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43399', NULL, 'JOSE VILLA DIAZ', '32818253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43400', NULL, 'JOSE VILLA DIAZ', '32818253', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43406', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43410', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43414', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43415', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43416', NULL, 'CANALES PEÑA ERICK WALDO', '--', '10435109531', '', '', 'PJ FEDERICO VILLARREAL 163 CH CARLOS CUETO FERNANDINI -LOS OLIVOS -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43417', NULL, 'CANALES PEÑA ERICK WALDO', '--', '10435109531', '', '', 'PJ FEDERICO VILLARREAL 163 CH CARLOS CUETO FERNANDINI -LOS OLIVOS -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43418', NULL, 'CANALES PEÑA ERICK WALDO', '--', '10435109531', '', '', 'PJ FEDERICO VILLARREAL 163 CH CARLOS CUETO FERNANDINI -LOS OLIVOS -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43422', NULL, 'ALBERCA GALVEZ JOSE MARIO', '--', '10009319285', '', '', 'JR UCAYALI S/N TRES UNIDOS -SAN MARTIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43423', NULL, 'ALBERCA GALVEZ JOSE MARIO', '--', '10009319285', '', '', 'JR UCAYALI S/N TRES UNIDOS -SAN MARTIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43424', NULL, 'ALBERCA GALVEZ JOSE MARIO', '--', '10009319285', '', '', 'JR UCAYALI S/N TRES UNIDOS -SAN MARTIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43426', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43428', NULL, 'COESTI S.A.', '--', '20127765279', '', '', 'AV. CIRCUNVALACION DEL CLUB GOLF LOS INCAS NRO. 134 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE A PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43430', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43431', NULL, 'NELLY ESCOBAR', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43432', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43433', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43436', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43437', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43439', NULL, 'DISTRIBUIDORA Y COMERCIALIZADORA EL ENSUEñO SOCIEDAD AN', '--', '20513415037', '', '', 'CAL.RODIN NRO. 110 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43440', NULL, 'DISTRIBUIDORA Y COMERCIALIZADORA EL ENSUEñO SOCIEDAD AN', '--', '20513415037', '', '', 'CAL.RODIN NRO. 110 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43441', NULL, 'DISTRIBUIDORA Y COMERCIALIZADORA EL ENSUEñO SOCIEDAD AN', '--', '20513415037', '', '', 'CAL.RODIN NRO. 110 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43442', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43443', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43444', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43445', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43446', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43447', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43448', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43449', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43452', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43453', NULL, 'TRUJILLO RELUZ RONALD FABIAN', '--', '10094947168', '', '', 'NUEVA GRANADA 210-CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43454', NULL, 'TRUJILLO RELUZ RONALD FABIAN', '--', '10094947168', '', '', 'NUEVA GRANADA 210-CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43455', NULL, 'TRUJILLO RELUZ RONALD FABIAN', '--', '10094947168', '', '', 'NUEVA GRANADA 210-CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43456', NULL, 'TRUJILLO RELUZ RONALD FABIAN', '--', '10094947168', '', '', 'NUEVA GRANADA 210-CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43457', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43458', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43459', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43460', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43461', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43462', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43464', NULL, 'CORPORACION KIAM S.A.C.', '--', '20601497566', '', '', 'AV. AMERICA SUR NRO. 1515 INT. 2 URB. CHICAGO LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43465', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43466', NULL, 'BEST SELLER PERU COMPANY S.A.C.', '--', '20600670825', '', '', 'CAL.CAMILO PISSARRO NRO. 136 URB. SAN BORJA NORTE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43467', NULL, 'BEST SELLER PERU COMPANY S.A.C.', '--', '20600670825', '', '', 'CAL.CAMILO PISSARRO NRO. 136 URB. SAN BORJA NORTE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43468', NULL, 'BEST SELLER PERU COMPANY S.A.C.', '--', '20600670825', '', '', 'CAL.CAMILO PISSARRO NRO. 136 URB. SAN BORJA NORTE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43469', NULL, 'BEST SELLER PERU COMPANY S.A.C.', '--', '20600670825', '', '', 'CAL.CAMILO PISSARRO NRO. 136 URB. SAN BORJA NORTE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43471', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43473', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43474', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43475', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43476', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43477', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43479', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43481', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43483', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43484', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43485', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43486', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43487', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43488', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43489', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43490', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43491', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43492', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43493', NULL, 'SANKA SABOR & GOURMET S.A.C.', '--', '20600504429', '', '', 'AV. MANUEL ECHEANDIA NRO. 285 INT. D URB. SAN PABLO LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43494', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43495', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43496', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43497', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43498', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43499', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43500', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43501', NULL, 'YULISA CABRERA CONTRERAS', '21575927', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43502', NULL, 'YULISA CABRERA CONTRERAS', '21575927', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43503', NULL, 'YULISA CABRERA CONTRERAS', '21575927', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43504', NULL, 'YULISA CABRERA CONTRERAS', '21575927', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43505', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43506', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43510', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43511', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43512', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43513', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43514', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43515', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43516', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43517', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43518', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43519', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43520', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43522', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43526', NULL, 'TORRES PADILLA EDITH GRICELDA', '--', '10070253530', '', '', 'SAN FELIPE 320-CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43527', NULL, 'TORRES PADILLA EDITH GRICELDA', '--', '10070253530', '', '', 'SAN FELIPE 320-CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43528', NULL, 'TORRES PADILLA EDITH GRICELDA', '--', '10070253530', '', '', 'SAN FELIPE 320-CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43529', NULL, 'TORRES PADILLA EDITH GRICELDA', '--', '10070253530', '', '', 'SAN FELIPE 320-CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43530', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43533', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43535', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43536', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43537', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43539', NULL, 'ACOSTA MERCADO SABINO MARKO', '--', '10428637599', '', '', 'AV LOSPARACAS 516 URB RECAUDADORES -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43540', NULL, 'ACOSTA MERCADO SABINO MARKO', '--', '10428637599', '', '', 'AV LOSPARACAS 516 URB RECAUDADORES -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43541', NULL, 'ACOSTA MERCADO SABINO MARKO', '--', '10428637599', '', '', 'AV LOSPARACAS 516 URB RECAUDADORES -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43542', NULL, 'ACOSTA MERCADO SABINO MARKO', '--', '10428637599', '', '', 'AV LOSPARACAS 516 URB RECAUDADORES -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43543', NULL, 'ACOSTA MERCADO SABINO MARKO', '--', '10428637599', '', '', 'AV LOSPARACAS 516 URB RECAUDADORES -ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43544', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43547', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43548', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43549', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43553', NULL, 'SACACA OCHOCHOQUE LIDIA', '--', '10472085765', '', '', 'AV LOS PROCERES MZ B LOTE 23 SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43556', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43557', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43558', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43559', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43560', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43561', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43562', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43563', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43564', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43565', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43566', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43567', NULL, 'PANIFICADORA GLORIA SOCIEDAD ANONIMA - PANIFICADORA GLO', '--', '20600679164', '', '', 'AV. REPUBLICA DE PANAMA NRO. 2461 (AL COSTADO DE VIA EXPRESA) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43572', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43573', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43574', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43578', NULL, 'CITEL GROUP S.A.C.', '--', '20604830533', '', '', 'CAL.LAS HERRAMIENTAS MZA. J LOTE. 09 P.J. 1 DE SETIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43579', NULL, 'CITEL GROUP S.A.C.', '--', '20604830533', '', '', 'CAL.LAS HERRAMIENTAS MZA. J LOTE. 09 P.J. 1 DE SETIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43580', NULL, 'CITEL GROUP S.A.C.', '--', '20604830533', '', '', 'CAL.LAS HERRAMIENTAS MZA. J LOTE. 09 P.J. 1 DE SETIEMBRE LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43582', NULL, 'TAI LOY S.A.', '--', '20100049181', '', '', 'JR. MARIANO ODICIO NRO. 153 URB. MIRAFLORES (MZ L, LOTE 144, SUB LOTE A) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43585', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43594', NULL, 'GEYLIN VASQUEZ', '70106560', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43595', NULL, 'GEYLIN VASQUEZ', '70106560', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43596', NULL, 'GEYLIN VASQUEZ', '70106560', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43597', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43605', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43607', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43608', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43613', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43616', NULL, 'GRUPO ALGER SAC', '--', '20608410971', '', '', 'AV. LOS INGENIEROS MZA. D LOTE. 4 A.H. SAN MARTIN DE PORRES (ESPALDA DE COLEGIO VIRGEN DE GUADALUPE) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43617', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43618', NULL, 'FLORES VARGAS BERNARDO', '--', '10081248899', '', '', 'AV EL SOL 495 URB . CIUDAD Y CAMPO - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43630', NULL, 'ROSO IMPORT S.A.C', '--', '20492778495', '', '', 'JR. PUNO NRO. 709 (IGLESIA SANTA CATALINA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43631', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43634', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43635', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43636', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43637', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43638', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43639', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43640', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43644', NULL, 'yanina chavez', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43645', NULL, 'yanina chavez', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43646', NULL, 'yanina chavez', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43647', NULL, 'yanina chavez', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43649', NULL, 'CARRILLO ANTON CECILIA MERCEDES', '--', '10078953743', '', '', 'MALECON SAN MARTIN 474-PUCUSANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43650', NULL, 'CARRILLO ANTON CECILIA MERCEDES', '--', '10078953743', '', '', 'MALECON SAN MARTIN 474-PUCUSANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43651', NULL, 'CARRILLO ANTON CECILIA MERCEDES', '--', '10078953743', '', '', 'MALECON SAN MARTIN 474-PUCUSANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43653', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43658', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43661', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43662', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43665', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43666', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43668', NULL, 'G & V SERVICIOS GRAFICOS E.I.R.L.', '--', '20607242705', '', '', 'CAL.ZARUMILLA NRO. 189 PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43669', NULL, 'G & V SERVICIOS GRAFICOS E.I.R.L.', '--', '20607242705', '', '', 'CAL.ZARUMILLA NRO. 189 PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43670', NULL, 'G & V SERVICIOS GRAFICOS E.I.R.L.', '--', '20607242705', '', '', 'CAL.ZARUMILLA NRO. 189 PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43671', NULL, 'G & V SERVICIOS GRAFICOS E.I.R.L.', '--', '20607242705', '', '', 'CAL.ZARUMILLA NRO. 189 PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43672', NULL, 'G & V SERVICIOS GRAFICOS E.I.R.L.', '--', '20607242705', '', '', 'CAL.ZARUMILLA NRO. 189 PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43674', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43676', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43677', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43678', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43679', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43680', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43682', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43683', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43684', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43685', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43686', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43688', NULL, 'CORTEZ VILCHERREZ FRANCISCO', '--', '10104991764', '', '', 'AV MANUEL VALLE  MZ A LOTE 5- PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43689', NULL, 'CORTEZ VILCHERREZ FRANCISCO', '--', '10104991764', '', '', 'AV MANUEL VALLE  MZ A LOTE 5- PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43690', NULL, 'CORTEZ VILCHERREZ FRANCISCO', '--', '10104991764', '', '', 'AV MANUEL VALLE  MZ A LOTE 5- PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43691', NULL, 'CORTEZ VILCHERREZ FRANCISCO', '--', '10104991764', '', '', 'AV MANUEL VALLE  MZ A LOTE 5- PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43692', NULL, 'CORTEZ VILCHERREZ FRANCISCO', '--', '10104991764', '', '', 'AV MANUEL VALLE  MZ A LOTE 5- PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43693', NULL, 'CORTEZ VILCHERREZ FRANCISCO', '--', '10104991764', '', '', 'AV MANUEL VALLE  MZ A LOTE 5- PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43694', NULL, 'CORTEZ VILCHERREZ FRANCISCO', '--', '10104991764', '', '', 'AV MANUEL VALLE  MZ A LOTE 5- PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43698', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43701', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43702', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43713', NULL, 'INVERSIONES SEY S.A.C.', '--', '20515160877', '', '', 'AV. LA MARINA NRO. 3499 URB. MARANGA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43714', NULL, 'INVERSIONES SEY S.A.C.', '--', '20515160877', '', '', 'AV. LA MARINA NRO. 3499 URB. MARANGA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43715', NULL, 'INVERSIONES SEY S.A.C.', '--', '20515160877', '', '', 'AV. LA MARINA NRO. 3499 URB. MARANGA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43716', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43717', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43718', NULL, 'VILLACORTA HNOS S.A.C.', '--', '20606579552', '', '', 'MZA. T2 LOTE. 7 URB. CIUDAD DEL PESCADOR PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43720', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43723', NULL, 'ESCALANTE FARFAN JAIME PEDRO', '09041523', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43726', NULL, 'DON MAKI SUSHI BAR E.I.R.L.', '--', '20607405060', '', '', 'MZA. P LOTE. 3 URB. TILDA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43727', NULL, 'PORTABLE GLOBAL TECHNOLOGY SOCIEDAD ANONIMA CERRADA', '--', '20554546634', '', '', 'AV. GARCILAZO DE LA VEGA NRO. 1251 INT. 143 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43728', NULL, 'PORTABLE GLOBAL TECHNOLOGY SOCIEDAD ANONIMA CERRADA', '--', '20554546634', '', '', 'AV. GARCILAZO DE LA VEGA NRO. 1251 INT. 143 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43729', NULL, 'PORTABLE GLOBAL TECHNOLOGY SOCIEDAD ANONIMA CERRADA', '--', '20554546634', '', '', 'AV. GARCILAZO DE LA VEGA NRO. 1251 INT. 143 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43730', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43731', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43732', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43737', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43739', NULL, 'NEW INVESTING E.I.R.L', '--', '20551286771', '', '', 'AV. GEMINIS NRO. 157 DPTO. 202 URB. BETELGEUSE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43740', NULL, 'NEW INVESTING E.I.R.L', '--', '20551286771', '', '', 'AV. GEMINIS NRO. 157 DPTO. 202 URB. BETELGEUSE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43741', NULL, 'NEW INVESTING E.I.R.L', '--', '20551286771', '', '', 'AV. GEMINIS NRO. 157 DPTO. 202 URB. BETELGEUSE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43742', NULL, 'NEW INVESTING E.I.R.L', '--', '20551286771', '', '', 'AV. GEMINIS NRO. 157 DPTO. 202 URB. BETELGEUSE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43743', NULL, 'LOPEZ PEÑALOZA EDSON MAX', '--', '10407058165', '', '', 'JR COLUMNA PASCO YANACANCHO -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43744', NULL, 'LOPEZ PEÑALOZA EDSON MAX', '--', '10407058165', '', '', 'JR COLUMNA PASCO YANACANCHO -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43745', NULL, 'LOPEZ PEÑALOZA EDSON MAX', '--', '10407058165', '', '', 'JR COLUMNA PASCO YANACANCHO -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43746', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43748', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43751', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43752', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43757', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43758', NULL, 'SANCHEZ MENDOZA ALDO GIANCARLO', '--', '10413745956', '', '', 'JR  PABLO  BERMUDES 283 -  OF 402 - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43762', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43765', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43766', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43768', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43769', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43771', NULL, 'REATEGUI BECERRA LIZZIE JEANNETTE', '72973749', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43772', NULL, 'REATEGUI BECERRA LIZZIE JEANNETTE', '72973749', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43773', NULL, 'REATEGUI BECERRA LIZZIE JEANNETTE', '72973749', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43775', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43777', NULL, 'IVAN YABAL', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43778', NULL, 'IVAN YABAL', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43779', NULL, 'IVAN YABAL', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43780', NULL, 'IVAN YABAL', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43785', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43786', NULL, 'CHAVEZ RIVAS ISMAEL', '--', '10035058929', '', '', 'CALLE  MZ Q LT 21 SECTOR B 2 PACHACUTEC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43787', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43788', NULL, 'ESCALANTE FARFAN JAIME PEDRO', '09041523', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43789', NULL, 'ESCALANTE FARFAN JAIME PEDRO', '09041523', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43790', NULL, 'ESCALANTE FARFAN JAIME PEDRO', '09041523', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43795', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43796', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43797', NULL, 'MUNDO OPTICO G&S E.I.R.L', '--', '20607504751', '', '', 'CAL.MANCO II NRO. 450 URB. MARANGA ET. DOS LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43798', NULL, 'MUNDO OPTICO G&S E.I.R.L', '--', '20607504751', '', '', 'CAL.MANCO II NRO. 450 URB. MARANGA ET. DOS LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43799', NULL, 'MUNDO OPTICO G&S E.I.R.L', '--', '20607504751', '', '', 'CAL.MANCO II NRO. 450 URB. MARANGA ET. DOS LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43802', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43803', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43804', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43805', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43806', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43811', NULL, 'NEGOCIACIONES E INVERSIONES EL TAMBO S.A.C.', '--', '20556626813', '', '', 'CAR.REF NRO. SN PUEBLO DE HUARAUCACA (ACCESO PLANTA CONCENTRADORA EL BROCAL) PASCO - PASCO - TINYAHUARCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43812', NULL, 'ISAGAS E.I.R.L.', '--', '20606407719', '', '', 'OTR.AMPLIACION SECTOR 1 MZA. T LOTE. 9 GRU. 14-A LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43818', NULL, 'INVERSIONES ROJAS SOCIEDAD ANONIMA CERRADA', '--', '20510866275', '', '', 'JR. ABTAO NRO. 649 BAR. MENDOZA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43819', NULL, 'INVERSIONES ROJAS SOCIEDAD ANONIMA CERRADA', '--', '20510866275', '', '', 'JR. ABTAO NRO. 649 BAR. MENDOZA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43824', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43825', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43826', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43827', NULL, 'CORPORATION ETAN PERU S.A.C.', '--', '20552915608', '', '', 'AV. ABANCAY NRO. 162 INT. 211 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43832', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43833', NULL, 'FERNANDO YEP', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43835', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43836', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43837', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43846', NULL, 'ALFIL CONSULTORIA & COMUNICACIONES S.A.C', '--', '20427797920', '', '', 'CAL.RIO MOQUEGUA NRO. 275 URB. LA MARINERA (PISO 1) LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43854', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43858', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43859', NULL, 'IMPORTACIONES LEON LP E.I.R.L.', '--', '20607963372', '', '', 'JR. CAPITAN PABLO BERMUDEZ NRO. 177 DPTO. 201 URB. SANTA BEATRIZ (CONSULADO ARGENTINO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43861', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43862', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43865', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43866', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43867', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43869', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43871', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43873', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43875', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43879', NULL, 'ARTE COMP SYSTEM SOCIEDAD ANONIMA CERRADA-ARCOSY S.A.C.', '--', '20260390962', '', '', 'MZA. L LOTE. 19 INT. 06 URB. LOS CHASQUIS (ALT PARADERO 6 AV DANIEL ALCIDES CARRION) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43880', NULL, 'ARTE COMP SYSTEM SOCIEDAD ANONIMA CERRADA-ARCOSY S.A.C.', '--', '20260390962', '', '', 'MZA. L LOTE. 19 INT. 06 URB. LOS CHASQUIS (ALT PARADERO 6 AV DANIEL ALCIDES CARRION) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43881', NULL, 'ARTE COMP SYSTEM SOCIEDAD ANONIMA CERRADA-ARCOSY S.A.C.', '--', '20260390962', '', '', 'MZA. L LOTE. 19 INT. 06 URB. LOS CHASQUIS (ALT PARADERO 6 AV DANIEL ALCIDES CARRION) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43882', NULL, 'ARTE COMP SYSTEM SOCIEDAD ANONIMA CERRADA-ARCOSY S.A.C.', '--', '20260390962', '', '', 'MZA. L LOTE. 19 INT. 06 URB. LOS CHASQUIS (ALT PARADERO 6 AV DANIEL ALCIDES CARRION) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43883', NULL, 'ARTE COMP SYSTEM SOCIEDAD ANONIMA CERRADA-ARCOSY S.A.C.', '--', '20260390962', '', '', 'MZA. L LOTE. 19 INT. 06 URB. LOS CHASQUIS (ALT PARADERO 6 AV DANIEL ALCIDES CARRION) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43884', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43885', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43887', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43888', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43892', NULL, 'SANTILLAN OJEDA GONZALO SEGUNDO', '--', '10092757396', '', '', 'LOS FILOSOFOS MZ E LOTE 1 JAIME ZUBIETA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43894', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43895', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43904', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43905', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43908', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43909', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43911', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43912', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43913', NULL, 'CORPORACION HAROJI SOCIEDAD ANONIMA CERRADA.', '--', '20609170159', '', '', 'AV. NARANJAL NRO. 1532 OTR. PQ NARANJAL F3 LOTE 33 LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43914', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43915', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43916', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43917', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43919', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43923', NULL, 'INVERSIONES MUSICALES S A', '--', '20262137385', '', '', 'AV. AVIACION NRO. 2488 INT. B LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43924', NULL, 'INVERSIONES MUSICALES S A', '--', '20262137385', '', '', 'AV. AVIACION NRO. 2488 INT. B LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43930', NULL, 'CASUSOL PEÑA LUZ ARASELLI', '--', '10066764678', '', '', 'JR PAZOS 226 - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43932', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43933', NULL, 'HERRAMIENTAS L Y F S.A.C.', '--', '20517439976', '', '', 'AV. COLONIAL NRO. 768 (FRENTE A MAESTRO HOME CENTER) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43935', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43936', NULL, 'LABORATORIOS BIOSANA S.A.C.', '--', '20516493039', '', '', 'JR. LOS ESMERILES NRO. 228 URB. SAN CARLOS (ALT OVALO SAN CARLOS) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43938', NULL, 'CARRILLO LOZA MARCIA CRISTINA', '--', '10741699350', '', '', 'AV PANAMERICANA NORTE 1340 SANTA MARIA HUAURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43939', NULL, 'CARRILLO LOZA MARCIA CRISTINA', '--', '10741699350', '', '', 'AV PANAMERICANA NORTE 1340 SANTA MARIA HUAURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43940', NULL, 'CARRILLO LOZA MARCIA CRISTINA', '--', '10741699350', '', '', 'AV PANAMERICANA NORTE 1340 SANTA MARIA HUAURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43941', NULL, 'CARRILLO LOZA MARCIA CRISTINA', '--', '10741699350', '', '', 'AV PANAMERICANA NORTE 1340 SANTA MARIA HUAURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43942', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43943', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43944', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43949', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43955', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43956', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43958', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43960', NULL, 'JUAN JOSE VEGA SONGO', '41688267', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43961', NULL, 'JUAN JOSE VEGA SONGO', '41688267', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43962', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43972', NULL, 'MUEBLES DECORATIVOS E.I.R.L.', '--', '20605262644', '', '', '---LISBOA NRO. 252 PORT. JAVIER PRADO (FRENTE AL MALL DE PURUCHUCO) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43973', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43974', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43982', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43983', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43985', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43988', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43989', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43990', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43991', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43992', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43993', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('43999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44002', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44003', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44004', NULL, 'MARQUI REMISE E.I.R.L.', '--', '20552422679', '', '', 'JR. PROGRESO NRO. 401 P.J. CERCADO (ALT PISTA NUEVA Y MCDO MIGUEL GRAU) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44007', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44008', NULL, 'NEGOCIACIONES ABARNOL E.I.R.L.', '--', '20602723411', '', '', 'AV. GRAN CHIMU NRO. 578 URB. ZARATE (2 CDRAS COMISARIA) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44010', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44013', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44014', NULL, 'WILFREDO ALEXANDER NOE VILLALTA', '45623326', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44021', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44022', NULL, 'SILVA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44023', NULL, 'SILVA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44026', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44030', NULL, 'eva', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44038', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44039', NULL, 'luisa carbajal', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44042', NULL, 'HUASACCA RUIZ MARLENE JUDITH', '--', '10449750867', '', '', 'MZ 21 LOTE 27 SAN JUAN DE AMANCAES -RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44043', NULL, 'HUASACCA RUIZ MARLENE JUDITH', '--', '10449750867', '', '', 'MZ 21 LOTE 27 SAN JUAN DE AMANCAES -RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44044', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44047', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44048', NULL, 'ELEFANTE PUBLICIDAD S.A.C', '--', '20550278031', '', '', 'CAL.MANUEL FUENTES NRO. 470 (ALTURA CDRA. 33 DE AV. AREQUIPA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44050', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44051', NULL, 'DIANA AREVALO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44055', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44056', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44058', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44061', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44062', NULL, 'SALAZAR VARGAS ALICIA', '--', '10412229113', '', '', 'av. andres avelino caceres 148-s.j.m-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44065', NULL, 'VELASQUEZ BORDA LUIS ALBERTO', '--', '10024295716', '', '', 'HUANCABAMBA 1078 BREÑA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44067', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44077', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44078', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44079', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44083', NULL, 'erika huaman yocra', '41866625', '', '', '', 'CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44084', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44085', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44086', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44087', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44088', NULL, 'monica bravo', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44089', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44090', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44091', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44092', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44093', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44094', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44095', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44097', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44098', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44100', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44102', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44104', NULL, 'victor recuay', '--', '', '', '', 'cerro de pasco', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44105', NULL, 'SERVICIOS GENERALES MACAVA S.A.C.', '--', '20556361500', '', '', 'AV. EL SOL NRO. 1238 URB. LA CAMPIÑA LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44106', NULL, 'SERVICIOS GENERALES MACAVA S.A.C.', '--', '20556361500', '', '', 'AV. EL SOL NRO. 1238 URB. LA CAMPIÑA LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44107', NULL, 'SERVICIOS GENERALES MACAVA S.A.C.', '--', '20556361500', '', '', 'AV. EL SOL NRO. 1238 URB. LA CAMPIÑA LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44108', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44110', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44111', NULL, 'HOSTAL LOS ANDES LUNAHUANA E.I.R.L.', '--', '20602444679', '', '', 'JR. LOS ANDES NRO. S/N (A 2 CDRAS. DE LA PLAZA DE ARMAS) LIMA - CAÑETE - LUNAHUANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44113', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44114', NULL, 'COMUNIK2 PERU S.A.C.', '--', '20602874606', '', '', 'AV. GLOBO TERRAQUEO MZA. N LOTE. 13 DPTO. 901 URB. SOL DE ORO (CRUCE CON JIRON SATURNO N 106) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44115', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44116', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44117', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44120', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44121', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44122', NULL, 'NAVARRO LAGUNA LUIS ENRIQUE', '--', '10074497549', '', '', 'ANTIGUO PANAMERICANA SUR KM 64 CHILCA CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44123', NULL, 'NAVARRO LAGUNA LUIS ENRIQUE', '--', '10074497549', '', '', 'ANTIGUO PANAMERICANA SUR KM 64 CHILCA CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44124', NULL, 'NAVARRO LAGUNA LUIS ENRIQUE', '--', '10074497549', '', '', 'ANTIGUO PANAMERICANA SUR KM 64 CHILCA CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44127', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44128', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44129', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44130', NULL, 'CATALINA BOCANEGRA DIESTRA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44131', NULL, 'CATALINA BOCANEGRA DIESTRA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44132', NULL, 'CATALINA BOCANEGRA DIESTRA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44133', NULL, 'CATALINA BOCANEGRA DIESTRA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44151', NULL, 'ERIKA DE RODRIGUEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44152', NULL, 'ERIKA DE RODRIGUEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44153', NULL, 'ERIKA DE RODRIGUEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44154', NULL, 'ERIKA DE RODRIGUEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44155', NULL, 'M & 3A CORPORACION ELECTRO INDUSTRIAL EIRL', '--', '20518001176', '', '', 'MZA. 119 LOTE. 04 A.H. ENRIQUE MILLA OCHOA (ALT. CDRA 2 DE AV. CENTRAL) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44156', NULL, 'M & 3A CORPORACION ELECTRO INDUSTRIAL EIRL', '--', '20518001176', '', '', 'MZA. 119 LOTE. 04 A.H. ENRIQUE MILLA OCHOA (ALT. CDRA 2 DE AV. CENTRAL) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44157', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44159', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44160', NULL, 'RUASUN RESTAURANTES S.A.C.', '--', '20553513929', '', '', 'MZA. E LOTE. 8 ASC. LOS ALAMOS DE CANTO GRANDE ET. UNO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44162', NULL, 'AGROPECUARIA SELVA CENTRAL CODO DEL POZUZO S.A.C.', '--', '20528938109', '', '', 'AV. LOS FUNDADORES MZA. N LOTE. 9 (A 2 CDRAS DEL PARQUE PRINCIPAL) HUANUCO - PUERTO INCA - CODO DEL POZUZO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44168', NULL, 'AVELLANAS SALON S.A.C.', '--', '20606296453', '', '', 'AV. CAMINOS DEL INCA KM. 1528 LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44172', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44174', NULL, 'SH INVERSIONES Y NEGOCIOS S.A.C.', '--', '20605641262', '', '', 'JR. ALICIA ALARCON NRO. 352 INT. 1-PI (ALT. CDRA 7 AV ZARUMILLA) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44175', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44177', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44178', NULL, 'julio ordoñez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44179', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44180', NULL, 'SEMINARIO NOREÑA GIAN MARCO', '--', '10706735599', '', '', 'PROVEEDORES UNIDOS 399 - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44182', NULL, 'E Y G CONTRATISTAS Y CONSULTORES E.I.R.L.', '--', '20545463432', '', '', 'CAL.AMSTERDAM MZA. K LOTE. 10 DPTO. 101 URB. LOS PORTALES DE JAVIER PRADO (A ESPALDA DE LA POLLERIA ROKYS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44183', NULL, 'E Y G CONTRATISTAS Y CONSULTORES E.I.R.L.', '--', '20545463432', '', '', 'CAL.AMSTERDAM MZA. K LOTE. 10 DPTO. 101 URB. LOS PORTALES DE JAVIER PRADO (A ESPALDA DE LA POLLERIA ROKYS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44184', NULL, 'E Y G CONTRATISTAS Y CONSULTORES E.I.R.L.', '--', '20545463432', '', '', 'CAL.AMSTERDAM MZA. K LOTE. 10 DPTO. 101 URB. LOS PORTALES DE JAVIER PRADO (A ESPALDA DE LA POLLERIA ROKYS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44185', NULL, 'ESPINOZA NEYRA ALICIA DAMARIS', '--', '10072100021', '', '', 'GARCILASO DE LA VEGA 347 ATICO-CARAVELI-AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44186', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44187', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44188', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44189', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44190', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44194', NULL, 'CORPORACION TECNOLOGICA E INGENIERIA ALIMENTARIA SOCIED', '--', '20503452970', '', '', 'CAL.ARCHIPIELAGO LOTE. C-1 URB. LA CAPITANA PARCELA BAJA (PARCELA Nº 11 Y 10 FUNDO HUACHIPA) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44195', NULL, 'CORPORACION TECNOLOGICA E INGENIERIA ALIMENTARIA SOCIED', '--', '20503452970', '', '', 'CAL.ARCHIPIELAGO LOTE. C-1 URB. LA CAPITANA PARCELA BAJA (PARCELA Nº 11 Y 10 FUNDO HUACHIPA) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44199', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44200', NULL, 'CESAR VERGARA PEREZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44201', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44202', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44203', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44204', NULL, 'G & S PRODUCCIONES E.I.R.L.', '--', '20517115305', '', '', 'MZA. D LOTE. 8 A.H. CARLOS MANUEL COX ROOSE LIMA - LIMA - ANCON', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44205', NULL, 'G & S PRODUCCIONES E.I.R.L.', '--', '20517115305', '', '', 'MZA. D LOTE. 8 A.H. CARLOS MANUEL COX ROOSE LIMA - LIMA - ANCON', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44206', NULL, 'G & S PRODUCCIONES E.I.R.L.', '--', '20517115305', '', '', 'MZA. D LOTE. 8 A.H. CARLOS MANUEL COX ROOSE LIMA - LIMA - ANCON', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44207', NULL, 'G & S PRODUCCIONES E.I.R.L.', '--', '20517115305', '', '', 'MZA. D LOTE. 8 A.H. CARLOS MANUEL COX ROOSE LIMA - LIMA - ANCON', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44208', NULL, 'G & S PRODUCCIONES E.I.R.L.', '--', '20517115305', '', '', 'MZA. D LOTE. 8 A.H. CARLOS MANUEL COX ROOSE LIMA - LIMA - ANCON', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44209', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44212', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44213', NULL, 'G & S PRODUCCIONES E.I.R.L.', '--', '20517115305', '', '', 'MZA. D LOTE. 8 A.H. CARLOS MANUEL COX ROOSE LIMA - LIMA - ANCON', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44214', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44215', NULL, 'FERNANDEZ CARDENAS JUAN', '--', '15298317262', '', '', 'av. precursores 310 block b dpto 103 san miguel-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44222', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44223', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44224', NULL, 'SISTEMAS DE SEGURIDAD TOTAL E.I.R.L.', '--', '20298858933', '', '', 'MZA. R LOTE. 7 COO. ALBINO HERRERA (ALT.CRUCE DE AV.BOCANEGRA Y PACASMAYO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44229', NULL, 'TRES BARRAS S.A.C.', '--', '20609271753', '', '', 'AV. ENRIQUE CANAVAL Y MOREYRA NRO. 593 INT. A URB. EL PALOMAR LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44230', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44234', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44235', NULL, 'CARDENAS PINTO PATRICIA', '--', '10701144118', '', '', 'AV PRECURSORES 178 - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44236', NULL, 'ROCA ROCA JUAN NAEFFER', '--', '10714029873', '', '', 'PSJE. SEÑOR DE LOS MILAGROS MZG1 LT20 COMAS-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44237', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44239', NULL, 'VARIOS', '70014258', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44240', NULL, 'VARIOS', '70014258', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44241', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44242', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44248', NULL, 'INSTITUCION EDUCATIVA PUBLICA DE GESTION PRIVADA \"GRAL ', '--', '20518261917', '', '', 'AV. ESCUELA MILITAR NRO. 1151 URB. HUACRACHUCO (ESQUINA) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44249', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44250', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44251', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44252', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44255', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44257', NULL, 'TRANSPORTES E INVERSIONES BENIDORM SOCIEDAD ANONIMA CER', '--', '20529068574', '', '', 'AV. NICOLAS AYLLON KM. 9.5 DPTO. 703 URB. FUNDO LA ESTRELLA TORRE 4 (PARTE LOTE 113 Y 114 A1 CDRA PTE HUACHIP) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44259', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44260', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44263', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44264', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44265', NULL, 'FRIGORIFICOS LA GRANJITA E.I.R.L.', '--', '20525945961', '', '', 'MZA. A LOTE. 10 A.H. IGNACIO MERINO PIURA - PIURA - VEINTISEIS DE OCTUBRE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44268', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44269', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44272', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44273', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44274', NULL, 'BIOHEALTHY S.A.C.', '--', '20601672015', '', '', 'AV. SIMON BOLIVAR TORRE C NRO. 1095 DPTO. 802 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44275', NULL, 'BIOHEALTHY S.A.C.', '--', '20601672015', '', '', 'AV. SIMON BOLIVAR TORRE C NRO. 1095 DPTO. 802 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44277', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44279', NULL, 'SOLUCIONES TECNOLOGICAS SISTEMICAS S.A.C.', '--', '20601327954', '', '', 'AV. GENERAL EUGENIO GARZON NRO. 1283 INT. 614 FND. OYAGUE LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44280', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44281', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44287', NULL, 'G & S SEASONS S.A.', '--', '20297648323', '', '', 'CAL.GRIMALDO DEL SOLAR NRO. 135 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44288', NULL, 'G & S SEASONS S.A.', '--', '20297648323', '', '', 'CAL.GRIMALDO DEL SOLAR NRO. 135 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44289', NULL, 'G & S SEASONS S.A.', '--', '20297648323', '', '', 'CAL.GRIMALDO DEL SOLAR NRO. 135 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44294', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44297', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44298', NULL, 'MAISA PERU S.A.C.', '--', '20492478009', '', '', 'AV. JORGE BASADRE NRO. 895 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44299', NULL, 'MAISA PERU S.A.C.', '--', '20492478009', '', '', 'AV. JORGE BASADRE NRO. 895 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44300', NULL, 'MAISA PERU S.A.C.', '--', '20492478009', '', '', 'AV. JORGE BASADRE NRO. 895 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44301', NULL, 'susana bautista', '40632040', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44304', NULL, 'JERI VALLE SILVIA', '--', '10093343994', '', '', 'URB SEBASTIAN BARRANCA 1556-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44305', NULL, 'JERI VALLE SILVIA', '--', '10093343994', '', '', 'URB SEBASTIAN BARRANCA 1556-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44306', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44308', NULL, 'IMAGEN Y ESTILO S.A.C.', '--', '20521340992', '', '', '----CALLAO NRO. 172 URB. CHOSICA (ALT COMPAÑIA DE BOMBEROS DE CHOSICA) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44309', NULL, 'IMAGEN Y ESTILO S.A.C.', '--', '20521340992', '', '', '----CALLAO NRO. 172 URB. CHOSICA (ALT COMPAÑIA DE BOMBEROS DE CHOSICA) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44310', NULL, 'IMAGEN Y ESTILO S.A.C.', '--', '20521340992', '', '', '----CALLAO NRO. 172 URB. CHOSICA (ALT COMPAÑIA DE BOMBEROS DE CHOSICA) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44313', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44314', NULL, 'VALVERDE LOPEZ MARCIAL NICANOR', '--', '10079749121', '', '', 'JR HUAMACHUCO S/N POMABAMBA -ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44315', NULL, 'VALVERDE LOPEZ MARCIAL NICANOR', '--', '10079749121', '', '', 'JR HUAMACHUCO S/N POMABAMBA -ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44316', NULL, 'VALVERDE LOPEZ MARCIAL NICANOR', '--', '10079749121', '', '', 'JR HUAMACHUCO S/N POMABAMBA -ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44317', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44318', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44325', NULL, 'KARINA  GLADYS MARTINEZ SANCHES', '40584135', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44328', NULL, 'JANILSON LLACUA PEREZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44329', NULL, 'JANILSON LLACUA PEREZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44330', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44332', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44341', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44345', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44346', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44347', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44348', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44349', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44350', NULL, 'GOLDEN APPLE BUSINESS S.A.C.', '--', '20604969124', '', '', 'CAL.HONORIO DELGADO NRO. 208 COO. DEMSA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44351', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44352', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44353', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44356', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44357', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44358', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44359', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44360', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44361', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44362', NULL, 'HERNANDEZ LUJAN RENAN ORLANDO', '--', '10400372867', '', '', 'PROLONGACION ALBA MAURTUA PASAJE SAN CRISTOBAL 101 -  CHINCHA ALTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44364', NULL, 'PAZOS PEREZ AMBAR VERONICA', '--', '10743097420', '', '', 'URB MANUEL PRADO AV MACHHU PICCHU N 1 - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44367', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44368', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44374', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44375', NULL, 'UCHIDA VEGA GUSTAVO ARMANDO', '--', '10332602123', '', '', 'LOS CIPRECES MZ O LOTE 25 NUEVO CHIMBOTE - ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44376', NULL, 'UCHIDA VEGA GUSTAVO ARMANDO', '--', '10332602123', '', '', 'LOS CIPRECES MZ O LOTE 25 NUEVO CHIMBOTE - ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44377', NULL, 'UCHIDA VEGA GUSTAVO ARMANDO', '--', '10332602123', '', '', 'LOS CIPRECES MZ O LOTE 25 NUEVO CHIMBOTE - ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44378', NULL, 'UCHIDA VEGA GUSTAVO ARMANDO', '--', '10332602123', '', '', 'LOS CIPRECES MZ O LOTE 25 NUEVO CHIMBOTE - ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44379', NULL, 'UCHIDA VEGA GUSTAVO ARMANDO', '--', '10332602123', '', '', 'LOS CIPRECES MZ O LOTE 25 NUEVO CHIMBOTE - ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44380', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44381', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44382', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44383', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44392', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44394', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44397', NULL, 'INVERSIONES PROEPSA S.A.C.', '--', '20603182791', '', '', 'JR. MONTE CEDRO NRO. 427 URB. MONTERRICO SUR LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44398', NULL, 'INVERSIONES PROEPSA S.A.C.', '--', '20603182791', '', '', 'JR. MONTE CEDRO NRO. 427 URB. MONTERRICO SUR LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44401', NULL, 'CAFE EXPRESS PERU E.I.R.L.', '--', '20549934120', '', '', 'AV. SANTA CRUZ NRO. 315 URB. GL.LA COQUETA (ALT. DE LA CDRA 10 AV. ARNALDO MARQUEZ) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44402', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44403', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44404', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44405', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44406', NULL, 'LUZ MEDRANO', '45938080', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44411', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44412', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44413', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44414', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44415', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44416', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44417', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44422', NULL, 'INVERSIONES ORS RESTAURANTES S.A.C.', '--', '20608270303', '', '', 'JR. CUSCO NRO. 270 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44424', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44426', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44429', NULL, 'SANCHEZ VICUÑA RUBEN GUILLERMO', '--', '10076007948', '', '', 'av 13 de enero 1156 horizonte de zarate', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44430', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44432', NULL, 'LIVAN SERVICIOS PERU S.A.C.', '--', '20607291455', '', '', 'CAL.LOS CANARIOS NRO. 166 URB. SAN CESAR II (FRENTE A LA COMISERIA SANTA FELICIA) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44433', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44434', NULL, 'IMPORTACIONES PROGMAC S.A.C.', '--', '20602324771', '', '', 'AV. MZ 108A LOTE 17 GRUPO2 TERCER PISO MZA. 108A LOTE. 17 DPTO. 3 INT. 1 A.H. HUASCAR LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44436', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44438', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44439', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44440', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44441', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44442', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44443', NULL, 'INVERSIONES V REY S.A.C.', '--', '20534179147', '', '', 'AV. CAHUAS NRO. 483 LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44444', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44445', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44446', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44447', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44448', NULL, 'JJEM & ROSITA S.A.C.', '--', '20547357079', '', '', 'JR. MONTEVIDEO NRO. 936 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44449', NULL, 'JJEM & ROSITA S.A.C.', '--', '20547357079', '', '', 'JR. MONTEVIDEO NRO. 936 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44452', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44453', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44454', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44455', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44456', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44458', NULL, 'QUISPE BUENDIA HILARIO', '--', '10209822577', '', '', 'JR ANDAHUAYLAS 655 INT 169 - GALERIA EL DORADO - LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44459', NULL, 'QUISPE BUENDIA HILARIO', '--', '10209822577', '', '', 'CALLE MANTARO 238 - SAN MARTIN DE PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44460', NULL, 'QUISPE BUENDIA HILARIO', '--', '10209822577', '', '', 'AV MANTARO 238 - SAN MARTIN DE PANGOA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44461', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44462', NULL, 'MILAGROS CLARO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44464', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44465', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44466', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44467', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44472', NULL, 'INTEGRAL CORPORATION S.C.R.L.', '--', '20258637128', '', '', 'CAL.LAS VIOLETAS NRO. 153 DPTO. LIMA COO. VALLE SHARON (ALT. CUADRA 6 DE LA AV. CASTRO IGLESIAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44473', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44475', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44476', NULL, 'erick blas', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44477', NULL, 'erick blas', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44478', NULL, 'erick blas', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44479', NULL, 'erick blas', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44481', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44484', NULL, 'INVERSIONES DE TELECOMUNICACIONES J & A S.A.C.', '--', '20606310472', '', '', 'PJ. TUPAC AMARU MZA. 6HD LOTE. 7 U.V. AMPLIACION COMITE 29 1ER LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44486', NULL, 'LARA SARANGO MARIA DEL CARMEN', '--', '10450881371', '', '', 'AV TINGO MARIA 1040-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44487', NULL, 'LARA SARANGO MARIA DEL CARMEN', '--', '10450881371', '', '', 'AV TINGO MARIA 1040-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44488', NULL, 'LARA SARANGO MARIA DEL CARMEN', '--', '10450881371', '', '', 'AV TINGO MARIA 1040-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44489', NULL, 'LARA SARANGO MARIA DEL CARMEN', '--', '10450881371', '', '', 'AV TINGO MARIA 1040-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44490', NULL, 'LARA SARANGO MARIA DEL CARMEN', '--', '10450881371', '', '', 'AV TINGO MARIA 1040-CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44491', NULL, 'JANCACHAGUA MOSQUERA MAYKOOL DAHARVIN', '--', '10471384084', '', '', 'URB. CULTURA PERUANA MODERNA MZ34 LT25 SANTA ANITA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44493', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44497', NULL, 'diana chupion', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44499', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44504', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44505', NULL, 'UMSO PERU S.A.C.', '--', '20564209831', '', '', 'AV. FORTUNATO HERRERA NRO. 205 URB. MAGISTERIO ET. UNO CUSCO - CUSCO - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44506', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44511', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44512', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44515', NULL, 'INVERSIONES ALFINZA SOCIEDAD ANONIMA CERRADA - INVERSIO', '--', '20537712032', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 403 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44516', NULL, 'INVERSIONES ALFINZA SOCIEDAD ANONIMA CERRADA - INVERSIO', '--', '20537712032', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 403 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44517', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44518', NULL, 'AGROPECUARIA LAMPA S.A.C.', '--', '20553210519', '', '', 'CAL.CRONOS NRO. 164 URB. SAGITARIO (EX MANZANA A20 LOTE 29) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44520', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44522', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44523', NULL, 'CORDOVA VALERIO ENMA', '--', '10040234042', '', '', 'ASOC LAS ALONDRAS MZ A LOTE 20SAN GREGORIO -ATE -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44524', NULL, 'CORDOVA VALERIO ENMA', '--', '10040234042', '', '', 'ASOC LAS ALONDRAS MZ A LOTE 20SAN GREGORIO -ATE -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44525', NULL, 'CORDOVA VALERIO ENMA', '--', '10040234042', '', '', 'ASOC LAS ALONDRAS MZ A LOTE 20SAN GREGORIO -ATE -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44526', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44527', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44528', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44533', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44534', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44535', NULL, 'IPANAQUE HIDALGO OMAR JHON', '--', '10161244592', '', '', 'AV CONFRATERNIDAD INTERNACIONAL OESTE 731-INDEPENDENCIA -HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44536', NULL, 'IPANAQUE HIDALGO OMAR JHON', '--', '10161244592', '', '', 'AV CONFRATERNIDAD INTERNACIONAL OESTE 731-INDEPENDENCIA -HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44537', NULL, 'IPANAQUE HIDALGO OMAR JHON', '--', '10161244592', '', '', 'AV CONFRATERNIDAD INTERNACIONAL OESTE 731-INDEPENDENCIA -HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44538', NULL, 'IPANAQUE HIDALGO OMAR JHON', '--', '10161244592', '', '', 'AV CONFRATERNIDAD INTERNACIONAL OESTE 731-INDEPENDENCIA -HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44539', NULL, 'IPANAQUE HIDALGO OMAR JHON', '--', '10161244592', '', '', 'AV CONFRATERNIDAD INTERNACIONAL OESTE 731-INDEPENDENCIA -HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44540', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44541', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44542', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44543', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44546', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44547', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44551', NULL, 'CALLAÑAUPA CKUIRO CIRIACO', '--', '10089271890', '', '', 'GRUPÓ 3 MZ O LOTE 1 AAHH OASIS -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44552', NULL, 'CALLAÑAUPA CKUIRO CIRIACO', '--', '10089271890', '', '', 'GRUPÓ 3 MZ O LOTE 1 AAHH OASIS -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44553', NULL, 'CALLAÑAUPA CKUIRO CIRIACO', '--', '10089271890', '', '', 'GRUPÓ 3 MZ O LOTE 1 AAHH OASIS -VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44556', NULL, 'ELEGANT TAURUS S.R.L.', '--', '20608649761', '', '', 'CAL.FORTIN CAYCHO MZA. E LOTE. 1 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44557', NULL, 'ELEGANT TAURUS S.R.L.', '--', '20608649761', '', '', 'CAL.FORTIN CAYCHO MZA. E LOTE. 1 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44558', NULL, 'ELEGANT TAURUS S.R.L.', '--', '20608649761', '', '', 'CAL.FORTIN CAYCHO MZA. E LOTE. 1 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44559', NULL, 'ELEGANT TAURUS S.R.L.', '--', '20608649761', '', '', 'CAL.FORTIN CAYCHO MZA. E LOTE. 1 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44565', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44566', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44567', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44568', NULL, 'IMPORT TRADING LUNA E.I.R.L.', '--', '20603539479', '', '', 'JR. AYACUCHO NRO. 1005 INT. H (COSTADO DE GALERIA EL ZAPATON) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44569', NULL, 'IMPORT TRADING LUNA E.I.R.L.', '--', '20603539479', '', '', 'JR. AYACUCHO NRO. 1005 INT. H (COSTADO DE GALERIA EL ZAPATON) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44570', NULL, 'IMPORT TRADING LUNA E.I.R.L.', '--', '20603539479', '', '', 'JR. AYACUCHO NRO. 1005 INT. H (COSTADO DE GALERIA EL ZAPATON) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44571', NULL, 'IMPORT TRADING LUNA E.I.R.L.', '--', '20603539479', '', '', 'JR. AYACUCHO NRO. 1005 INT. H (COSTADO DE GALERIA EL ZAPATON) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44572', NULL, 'IMPORT TRADING LUNA E.I.R.L.', '--', '20603539479', '', '', 'JR. AYACUCHO NRO. 1005 INT. H (COSTADO DE GALERIA EL ZAPATON) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44573', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44574', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44575', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44576', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44577', NULL, 'MORALES RIQUEZ ARTURO GENIX', '--', '10478667782', '', '', 'CALLE 8 DE OCTUBRE S/N CARAMPOMA -HUAROCHIRI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44578', NULL, 'MORALES RIQUEZ ARTURO GENIX', '--', '10478667782', '', '', 'CALLE 8 DE OCTUBRE S/N CARAMPOMA -HUAROCHIRI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44579', NULL, 'MORALES RIQUEZ ARTURO GENIX', '--', '10478667782', '', '', 'CALLE 8 DE OCTUBRE S/N CARAMPOMA -HUAROCHIRI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44580', NULL, 'MORALES RIQUEZ ARTURO GENIX', '--', '10478667782', '', '', 'CALLE 8 DE OCTUBRE S/N CARAMPOMA -HUAROCHIRI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44582', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44583', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44584', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44585', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44587', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44592', NULL, 'GLOBAL MERCH SOLUTION E.I.R.L.', '--', '20601811856', '', '', 'CAL.PASCUAL SACO OLIVEROS NRO. 695 DPTO. 401 URB. SANTA CATALINA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44595', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44596', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44597', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44598', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44599', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44600', NULL, 'OVALLE PAULINO DENIS CHRISTIAN', '--', '10402343210', '', '', 'JR MARTE 2489 SAN JAUN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44601', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44602', NULL, 'BOLO DELGADO RAUL MICHAEL', '--', '10421480821', '', '', 'AV TACNA 613 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44603', NULL, 'BOLO DELGADO RAUL MICHAEL', '--', '10421480821', '', '', 'AV TACNA 613 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44604', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44606', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44607', NULL, 'GRUPO EMPRESARIAL MILENIUM SOCIEDAD ANONIMA CERRADA', '--', '20506595852', '', '', 'AV. SAN JUAN NRO. 787 ZONA A (FRENTE COLEGIO MARISTAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44608', NULL, 'GRUPO EMPRESARIAL MILENIUM SOCIEDAD ANONIMA CERRADA', '--', '20506595852', '', '', 'AV. SAN JUAN NRO. 787 ZONA A (FRENTE COLEGIO MARISTAS) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44613', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44614', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44615', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44618', NULL, 'INVERSIONES FRANCESCO S.R.L.', '--', '20511351996', '', '', 'AV. GUZMAN BLANCO NRO. 537 (FRENTE CAMPO DE MARTE/ESPALDA TELEFONICA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44619', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44621', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44624', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44625', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44626', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44630', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44631', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44632', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44633', NULL, 'R & T ROCCKCAT E.I.R.L.', '--', '20524684854', '', '', 'AV. NICOLAS ARRIOLA NRO. 1385 URB. APOLO LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44634', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44636', NULL, 'JUAN CARLOS', '40854641', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44637', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44639', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44640', NULL, 'BUSTILLOS MEDRANO PAUL IVAN', '--', '10444187170', '', '', 'AV LOS POSTES OESTE 114 -SJL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44641', NULL, 'BUSTILLOS MEDRANO PAUL IVAN', '--', '10444187170', '', '', 'AV LOS POSTES OESTE 114 -SJL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44642', NULL, 'BUSTILLOS MEDRANO PAUL IVAN', '--', '10444187170', '', '', 'AV LOS POSTES OESTE 114 -SJL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44643', NULL, 'BUSTILLOS MEDRANO PAUL IVAN', '--', '10444187170', '', '', 'AV LOS POSTES OESTE 114 -SJL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44649', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44650', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44651', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44653', NULL, 'gladys torres', '10247863', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44654', NULL, 'COMERCIAL DIEGO EIRL', '--', '20527210080', '', '', 'AV. NUÑEZ NRO. 104 OTR. CERCADO (FRENTE CAJA TRUJILLO) APURIMAC - ABANCAY - ABANCAY', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44658', NULL, 'JOHNNY VALLEJOS FLORES', '06799741', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44661', NULL, 'VARIOS', '41147459', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44662', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44665', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44666', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44667', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44672', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44673', NULL, 'CONDORI UNUCUECA LOURDES MARISOL', '--', '', '', '', 'AV  LA  ENCALADA 837 - SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44674', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44680', NULL, 'PRAXISNET CONSULTING S.A.C.- PRAXISNET S.A.C.', '--', '20566580251', '', '', 'AV. ROSATORO NRO. 1134 DPTO. 201 URB. JACARANDA LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44681', NULL, 'PRAXISNET CONSULTING S.A.C.- PRAXISNET S.A.C.', '--', '20566580251', '', '', 'AV. ROSATORO NRO. 1134 DPTO. 201 URB. JACARANDA LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44682', NULL, 'PRAXISNET CONSULTING S.A.C.- PRAXISNET S.A.C.', '--', '20566580251', '', '', 'AV. ROSATORO NRO. 1134 DPTO. 201 URB. JACARANDA LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44683', NULL, 'PRAXISNET CONSULTING S.A.C.- PRAXISNET S.A.C.', '--', '20566580251', '', '', 'AV. ROSATORO NRO. 1134 DPTO. 201 URB. JACARANDA LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44684', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44685', NULL, 'COHAILA CALATAYUD SANDRA KATHERINE', '--', '10423920063', '', '', 'MANUEL CIPRIANO DULANTO 1668 PUEBLO LIBRE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44688', NULL, 'VELA RAMOS BEATRIZ BETTY', '--', '10069505029', '', '', 'PLAZA RAMON CASTILLA 87 INTERIOR 185 - CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44693', NULL, 'LAS BARRAS CEVICHERAS PERÚ SOCIEDAD ANONIMA CERRADA', '--', '20601193427', '', '', 'AV. SAN LUIS NRO. 1960 LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44694', NULL, 'LAS BARRAS CEVICHERAS PERÚ SOCIEDAD ANONIMA CERRADA', '--', '20601193427', '', '', 'AV. SAN LUIS NRO. 1960 LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44695', NULL, 'LAS BARRAS CEVICHERAS PERÚ SOCIEDAD ANONIMA CERRADA', '--', '20601193427', '', '', 'AV. SAN LUIS NRO. 1960 LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44696', NULL, 'LAS BARRAS CEVICHERAS PERÚ SOCIEDAD ANONIMA CERRADA', '--', '20601193427', '', '', 'AV. SAN LUIS NRO. 1960 LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44697', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44700', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44701', NULL, 'HOGAR SAN CAMILO', '--', '20336470189', '', '', 'JR. HUANTA NRO. 300 (ESPALDA CLINICA SAN CAMILO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44702', NULL, 'DE VETTORI GONZALEZ JESSICA MARIA', '--', '10093774235', '', '', 'AV AVIACION 3342 SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44704', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44705', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44706', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44716', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44717', NULL, 'LUIS BRUCE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44718', NULL, 'MULTIMECANICA HIDRAULICA S.A.C.', '--', '20606966963', '', '', 'MZA. C LOTE. 22 APV. JUAN PABLO SEGUNDO II (2DO PISO) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44726', NULL, 'GIANINA', '20039306', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44727', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44729', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44730', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44732', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44733', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44734', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44735', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44738', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44742', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44745', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44746', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44748', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44751', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44752', NULL, 'BRICEÑO LLAJA JHERSON LUIS', '--', '10334306149', '', '', 'YUTAI 162 RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44753', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44754', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44755', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44756', NULL, 'elsa sandoval', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44757', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44758', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44759', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44760', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44761', NULL, 'DISTRIBUIDORA ALESSIS E.I.R.L.', '--', '20601302641', '', '', 'AV. CANTO GRANDE NRO. 1050 DPTO. 402 COO. LAS FLORES DE PRIMAVERA (FRENTE AAHH LA PROVIDENCIA) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44762', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44765', NULL, 'gladys enriquez acero', '10862706', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44766', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44768', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44770', NULL, 'VELASQUE PALOMINO VIRGINIA', '--', '10310401507', '', '', 'JR AREQUIPA # 519 ABANCAY - APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44771', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44772', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44775', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44777', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44778', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44784', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44785', NULL, 'UMAR´S PRODUCTION S.A.C.', '--', '20608967517', '', '', 'JR. ANTONIO POLO NRO. 756 (ENTRE EL CUARTEL Y EL MUSEO) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44786', NULL, 'BRILLINA & ECCO LIFE E.I.R.L.', '--', '20603040181', '', '', 'MZA. N LOTE. 3A CARAPONGO 1 PARC LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44787', NULL, 'EQUIPOS E INSUMOS INDUSTRIALES C & K S.A.C.', '--', '20538593649', '', '', 'AV. SALAZAR BONDI MZA. N LOTE. 2 URB. AMAUTA (ALTURA KILOMETRO 12.5 PANAMERICANA SUR) LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44788', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44789', NULL, 'CEP ANGELES DE JESUS E.I.R.L.', '--', '20510538189', '', '', 'AV. BUENOS AIRES MZA. 41 LOTE. 15 A.H. BUENOS AIRES DE VILLA (A 3 CDRAS INST.ANTENOR ORREGO) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44794', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44795', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44797', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44799', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44805', NULL, 'BPA CONSULTING S.A.C.', '--', '20601308569', '', '', 'CAL.NEPER NRO. 146 LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44806', NULL, 'BPA CONSULTING S.A.C.', '--', '20601308569', '', '', 'CAL.NEPER NRO. 146 LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44807', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44808', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44809', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44810', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44813', NULL, 'COTRINA AREVALO JULIA ANGELICA', '--', '10193209241', '', '', 'AV JUAN PARDO DE  ZELA 137 - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44814', NULL, 'PERUK INVERSIONES E.I.R.L', '--', '20609208377', '', '', 'CAL.SANTA CATALINA ANCHA NRO. 313 CENTRO HISTORICO CUSCO - CUSCO - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44819', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44821', NULL, 'MARCO SANTIAGO', '25703296', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44823', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44824', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44830', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44831', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44832', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44833', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44835', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44836', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44837', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44838', NULL, 'VALSERTECH E.I.R.L.', '--', '20602962050', '', '', 'AV. ALCIDES VIGO MZA. D LOTE. 39 (ASOC. DE PROP. DE LA URB. COOPIP) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44844', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44845', NULL, 'GRUPO MEDICHECK S.A.C.', '--', '20606610531', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 2768 URB. SAN EUGENIO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44847', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44852', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44857', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44858', NULL, 'REPRESENTACIONES & SERVICIOS EL TUMBAO S.A.C.', '--', '20569293473', '', '', 'AV. BRASIL MZA. B SEC. LOS ALAMOS (PREDIO RUS PAMPAS DE CHIMBOTE NO-152077-) ANCASH - SANTA - NUEVO CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44861', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44862', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44866', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44870', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44871', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44872', NULL, 'VARIOSROJAS RIVERA AIDEE', '00000000', '10089507192', '', '', 'MZ A LOTE 18 BARRIO 3 CUARTA ETAPA SECTOR 2 - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44873', NULL, 'ROJAS RIVERA AIDEE', '--', '10089507192', '', '', 'MZ A LOTE 18 BARRIO 3 CUARTA ETAPA SECTOR 2 - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44875', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44876', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44877', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44878', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44881', NULL, 'MATERIA AGENCIA S.A.C.', '--', '20601548543', '', '', 'CAL.LOMA LOS NARDOS NRO. 215 URB. PROLONGACIÓN BENAVIDES (ALT 28 Y 29 CAMINOS DEL INCA) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44883', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44886', NULL, 'EL COCODRILO VERDE EIRL', '--', '20502386523', '', '', 'CAL.FRANCISCO DE PAULA CAMINO NRO. 226 URB. MIRAFLORES (POR CALLES DE LAS PIZZAS) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44887', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44889', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44890', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44892', NULL, 'EDIZON ESTRADA GAUNA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44894', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44895', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44896', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44902', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44903', NULL, 'YAURIMAN FIGUEROA WILLIAM MARCOS', '--', '10097720211', '', '', 'AV PETIT THOUARS 3685-SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44904', NULL, 'YAURIMAN FIGUEROA WILLIAM MARCOS', '--', '10097720211', '', '', 'AV PETIT THOUARS 3685-SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44905', NULL, 'YAURIMAN FIGUEROA WILLIAM MARCOS', '--', '10097720211', '', '', 'AV PETIT THOUARS 3685-SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44906', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44907', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44908', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44909', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44910', NULL, 'ELMER HERNANDEZ', '42976134', '', '', '', 'CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44911', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44912', NULL, 'M & M MUEBLISTAS S.A.C. - MUEBLISTAS S.A.C.', '--', '20545812542', '', '', 'CAL.2 MZA. C LOTE. 14 ASC. SEÑOR DE MURUHUAY DE GLORIA BAJA (ALT. KM 14.5 DE CARRETERA CENTRAL) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44913', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44914', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44916', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44929', NULL, 'CONSORCIO SAN MIGUEL ARCANGEL ACOBAMBA SOCIEDAD ANÓNIMA', '--', '20600328132', '', '', 'JR. AYACUCHO NRO. 241 (MEDIA CDRA OVALO PAULA DE OTERO) JUNIN - TARMA - TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44932', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44933', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44935', NULL, 'NEGOCIACIONES Y SERVICIOS A Y C E.I.R.L.', '--', '20602496059', '', '', 'MZA. C LOTE. 23 A.H. JUAN PABLO II (TERMINANDO BASE NAVAL ANTES DE RANSA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44937', NULL, 'NAVAJA SEPIA S.A.C', '--', '20545057523', '', '', 'AV. VILLA DEL MAR MZA. I LOTE. 20 RES. SECTOR 2 GRUPO 11 LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44939', NULL, 'COMUNIK2 PERU S.A.C.', '--', '20602874606', '', '', 'AV. GLOBO TERRAQUEO MZA. N LOTE. 13 DPTO. 901 URB. SOL DE ORO (CRUCE CON JIRON SATURNO N 106) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44940', NULL, 'COMUNIK2 PERU S.A.C.', '--', '20602874606', '', '', 'AV. GLOBO TERRAQUEO MZA. N LOTE. 13 DPTO. 901 URB. SOL DE ORO (CRUCE CON JIRON SATURNO N 106) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44941', NULL, 'COMUNIK2 PERU S.A.C.', '--', '20602874606', '', '', 'AV. GLOBO TERRAQUEO MZA. N LOTE. 13 DPTO. 901 URB. SOL DE ORO (CRUCE CON JIRON SATURNO N 106) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44942', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44944', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44947', NULL, 'PRODUCSAN S.A.C.', '--', '20600143680', '', '', 'CAL.RODOLFO BELTRAN NRO. 660 URB. ZONA INDUSTRIAL LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44948', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44949', NULL, 'iacym-tayacaja', '00000000', '', '', '', 'el agustino', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44953', NULL, 'GRUPO BRUDAM S.A.C. - BRUDAM S.A.C.', '--', '20548800065', '', '', 'JR. LA ALMUDENA NRO. 236 URB. VILLA JARDIN LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44955', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44956', NULL, 'maritza espinoza', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44957', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44958', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44960', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44962', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44963', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44964', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44965', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44966', NULL, 'maria espinoza', '31032817', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44967', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44971', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44972', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44974', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44975', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44976', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44983', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44984', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44985', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44991', NULL, 'ZAPATA PASTOR ANTONIO JAVIER', '--', '10088306991', '', '', 'AV MELGAR CASTILLA 188 - HUACHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44993', NULL, 'IMPRESIONES DIVERSAS R&E S.A.C.', '--', '20547959800', '', '', 'JR. EMILIO ALTHAUS NRO. 625 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44994', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44995', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44996', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44997', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44998', NULL, 'DIANA LEVANO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('44999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45000', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45002', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45003', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45006', NULL, 'PASION POR EL MAR S.A.C', '--', '20603616210', '', '', 'AV. LOS CONQUUISTADORES NRO. 489 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45007', NULL, 'INSTITUTO DE EDUCACION SUPERIOR SAN IGNACIO DE MONTERRI', '--', '20512297111', '', '', 'AV. LIMA MZA. 82 LOTE. 4A A.H. VILLA JOSE POETA (PARADERO 9.5 JOSE GALVEZ) LIMA - LIMA - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45010', NULL, 'LILIANA CASTAÑEDA ESTRADA', '00254440', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45013', NULL, 'PEREZ GUZMAN BRUCE KEN YERIKO', '--', '10725299651', '', '', 'CIUDADELA CHALACA  MZ G LOTE 43 - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45019', NULL, 'REPUESTOS COMENA E I R LTDA', '--', '20101647022', '', '', 'AV. VENEZUELA NRO. 1411 URB. CHACRA COLORADA (IGLESIA DESAMPARADOS) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45020', NULL, 'REPUESTOS COMENA E I R LTDA', '--', '20101647022', '', '', 'AV. VENEZUELA NRO. 1411 URB. CHACRA COLORADA (IGLESIA DESAMPARADOS) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45021', NULL, 'REPUESTOS COMENA E I R LTDA', '--', '20101647022', '', '', 'AV. VENEZUELA NRO. 1411 URB. CHACRA COLORADA (IGLESIA DESAMPARADOS) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45022', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45023', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45024', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45026', NULL, 'ORDOÑEZ ALIAGA JULIO FERNANDO', '--', '10074888548', '', '', 'JR LLOQUE YUPANQUI 931 INT 407 - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45030', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45031', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45032', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45033', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45034', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45035', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45037', NULL, 'PABLO CONDE ELSA', '--', '10407087335', '', '', 'JR DELFIN CERNA 374 - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45038', NULL, 'MARKET SUAREZ E.I.R.L.', '--', '20606341548', '', '', 'VIA.ANTIG.PANAMER.SUR-PUERTA NRO.396-398 MZA. N1 LOTE. 1 A.V. LA MERCED ZONA B LIMA - LIMA - PUNTA NEGRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45039', NULL, 'JILL DEL ANGE LOPEZ', '40736130', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45043', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45044', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45051', NULL, 'JOSE SANTOLAYA', '10441659', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45054', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45055', NULL, 'LOPEZ CELESTINO GERSON HELDER', '--', '10424029349', '', '', 'JR ITALIA 1612 INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45056', NULL, 'LOPEZ CELESTINO GERSON HELDER', '--', '10424029349', '', '', 'JR ITALIA 1612 INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45057', NULL, 'LOPEZ CELESTINO GERSON HELDER', '--', '10424029349', '', '', 'JR ITALIA 1612 INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45058', NULL, 'LOPEZ CELESTINO GERSON HELDER', '--', '10424029349', '', '', 'JR ITALIA 1612 INT 203-LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45060', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45061', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45065', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45066', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45067', NULL, 'osorio', '43883126', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45068', NULL, 'VIDAL QUIÑONES URSULA VIVIANA', '--', '10180221366', '', '', 'JR. VICTORIA VASQUEZ 848 MORALES TARAPOTO- SAN MARTIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45076', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45082', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45083', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45087', NULL, 'PEÑA HUAMANI CINTIA', '--', '10472916772', '', '', '11 de junio mz j lt6 ayacucho -huamanga', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45088', NULL, 'PACHAMAMA TRADITIONAL BANQUETS S.A.C.', '--', '20523759087', '', '', 'AV. REPUBLICA DE PANAMA NRO. 6574 URB. SANTA LUCIA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45089', NULL, 'PACHAMAMA TRADITIONAL BANQUETS S.A.C.', '--', '20523759087', '', '', 'AV. REPUBLICA DE PANAMA NRO. 6574 URB. SANTA LUCIA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45090', NULL, 'PACHAMAMA TRADITIONAL BANQUETS S.A.C.', '--', '20523759087', '', '', 'AV. REPUBLICA DE PANAMA NRO. 6574 URB. SANTA LUCIA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45091', NULL, 'PACHAMAMA TRADITIONAL BANQUETS S.A.C.', '--', '20523759087', '', '', 'AV. REPUBLICA DE PANAMA NRO. 6574 URB. SANTA LUCIA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45092', NULL, 'PACHAMAMA TRADITIONAL BANQUETS S.A.C.', '--', '20523759087', '', '', 'AV. REPUBLICA DE PANAMA NRO. 6574 URB. SANTA LUCIA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45093', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45096', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45097', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45098', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45099', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45100', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45101', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45102', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45103', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45104', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45105', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45106', NULL, 'ACRISELL GRAF MULTISERVICIOS S.A.C.', '--', '20552642440', '', '', 'AV. AV. PASEO DE LA REPUBLICA NRO. 259 INT. 1105 (GALER. LA ESTACION - PALACIO JUSTICIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45107', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45108', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45109', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45112', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45113', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45114', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45115', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45118', NULL, 'GLADIS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45119', NULL, 'GLADIS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45120', NULL, 'GLADIS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45121', NULL, 'GLADIS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45122', NULL, 'Y.M.M. SERVICIOS INVERSIONES SOCIEDAD ANONIMA CERRADA', '--', '20601435706', '', '', '----UCV 84 LOTE. 12 A.H. HUAYCAN ZONA E LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45123', NULL, 'Y.M.M. SERVICIOS INVERSIONES SOCIEDAD ANONIMA CERRADA', '--', '20601435706', '', '', '----UCV 84 LOTE. 12 A.H. HUAYCAN ZONA E LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45124', NULL, 'Y.M.M. SERVICIOS INVERSIONES SOCIEDAD ANONIMA CERRADA', '--', '20601435706', '', '', '----UCV 84 LOTE. 12 A.H. HUAYCAN ZONA E LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45125', NULL, 'Y.M.M. SERVICIOS INVERSIONES SOCIEDAD ANONIMA CERRADA', '--', '20601435706', '', '', '----UCV 84 LOTE. 12 A.H. HUAYCAN ZONA E LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45126', NULL, 'Y.M.M. SERVICIOS INVERSIONES SOCIEDAD ANONIMA CERRADA', '--', '20601435706', '', '', '----UCV 84 LOTE. 12 A.H. HUAYCAN ZONA E LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45127', NULL, 'Y.M.M. SERVICIOS INVERSIONES SOCIEDAD ANONIMA CERRADA', '--', '20601435706', '', '', '----UCV 84 LOTE. 12 A.H. HUAYCAN ZONA E LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45128', NULL, 'Y.M.M. SERVICIOS INVERSIONES SOCIEDAD ANONIMA CERRADA', '--', '20601435706', '', '', '----UCV 84 LOTE. 12 A.H. HUAYCAN ZONA E LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45129', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45131', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45132', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45138', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45139', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45148', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45149', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45152', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45153', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45154', NULL, 'any gonzales', '75678648', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45155', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45157', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45158', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45159', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45160', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZ E VILLA EMILIA -MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45161', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZ E VILLA EMILIA -MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45162', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZ E VILLA EMILIA -MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45163', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZ E VILLA EMILIA -MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45164', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZ E VILLA EMILIA -MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45165', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZ E VILLA EMILIA -MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45166', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZ E VILLA EMILIA -MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45167', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZ E VILLA EMILIA -MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45168', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45172', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45174', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45175', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45177', NULL, 'FALCOM SEGURIDAD Y SERVICIOS E.I.R.L.', '--', '20608105817', '', '', 'MZA. 57 LOTE. 8 A.H. FDO BOCANEGRA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45178', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45179', NULL, 'VERGARA MENDOZA LUZ MARINA MARILU', '--', '10258002381', '', '', 'CALLE LOS ALGARROBOS MZE LT 13 MI PERU-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45180', NULL, 'TORREJON CULQUI TALI MARINA', '--', '10409447967', '', '', 'AV. GUILLERMO DE LA FUENTE 321 URB. SANTA LUZMILA -COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45182', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45183', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45184', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45185', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45186', NULL, 'MULTITIENDAS MOLINA S.A.C.', '--', '20608881370', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL (PISO 2 - FRENTE MCDO UNIVERSAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45187', NULL, 'MULTITIENDAS MOLINA S.A.C.', '--', '20608881370', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL (PISO 2 - FRENTE MCDO UNIVERSAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45188', NULL, 'MULTITIENDAS MOLINA S.A.C.', '--', '20608881370', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL (PISO 2 - FRENTE MCDO UNIVERSAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45189', NULL, 'MULTITIENDAS MOLINA S.A.C.', '--', '20608881370', '', '', 'JR. CESAR VALLEJO NRO. 398 COO. UNIVERSAL (PISO 2 - FRENTE MCDO UNIVERSAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45194', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45195', NULL, 'VIENRICH PARRA LUIS GEREMIO', '--', '10074925010', '', '', 'jr. huascaran 755 la victoria -lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45196', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45197', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45198', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45200', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45201', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45202', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE LOS DOGOS 790 - S.J.L- LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45203', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE LOS DOGOS 790 - S.J.L- LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45204', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE LOS DOGOS 790 - S.J.L- LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45205', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE LOS DOGOS 790 - S.J.L- LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45206', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE LOS DOGOS 790 S.J.L - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45207', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE LOS DOGOS 790 S.J.L - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45208', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE LOS DOGOS 790 S.J.L - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45209', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE LOS DOGOS 790 S.J.L - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45210', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45211', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45212', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45214', NULL, 'DIAZ ROJAS ROSMERY', '--', '10434323440', '', '', 'AV JORGE CHAVEZ 1779-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45215', NULL, 'DIAZ ROJAS ROSMERY', '--', '10434323440', '', '', 'AV JORGE CHAVEZ 1779-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45216', NULL, 'DIAZ ROJAS ROSMERY', '--', '10434323440', '', '', 'AV JORGE CHAVEZ 1779-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45217', NULL, 'DIAZ ROJAS ROSMERY', '--', '10434323440', '', '', 'AV JORGE CHAVEZ 1779-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45218', NULL, 'DIAZ ROJAS ROSMERY', '--', '10434323440', '', '', 'AV JORGE CHAVEZ 1779-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45222', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45229', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45230', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45234', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45235', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45236', NULL, 'TORRES SALCEDO JUAN DE LA CRUZ', '--', '10040203139', '', '', 'CALLE 105-DOGOS #790 S.J..L-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45237', NULL, 'VICTOR URRUNAGA', '48241730', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45238', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45239', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45240', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45241', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45242', NULL, 'MONZON HUERTA OSCAR MARTIN', '--', '10406401923', '', '', 'AV. NICOLAS DE PIEROLA 138 BARRANCO-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45245', NULL, 'PETROHIDROS & DERIVADOS E.I.R.L.', '--', '20604353298', '', '', '----GRUPO 5 MZA. H LOTE. 13 SECTOR 1 (ALT. AV. EL SOL 500) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45246', NULL, 'PETROHIDROS & DERIVADOS E.I.R.L.', '--', '20604353298', '', '', '----GRUPO 5 MZA. H LOTE. 13 SECTOR 1 (ALT. AV. EL SOL 500) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45247', NULL, 'PETROHIDROS & DERIVADOS E.I.R.L.', '--', '20604353298', '', '', '----GRUPO 5 MZA. H LOTE. 13 SECTOR 1 (ALT. AV. EL SOL 500) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45248', NULL, 'PETROHIDROS & DERIVADOS E.I.R.L.', '--', '20604353298', '', '', '----GRUPO 5 MZA. H LOTE. 13 SECTOR 1 (ALT. AV. EL SOL 500) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45249', NULL, 'TERREL CRISPIN DANTE TONY', '08428445', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45250', NULL, 'TERREL CRISPIN DANTE TONY', '08428445', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45251', NULL, 'TERREL CRISPIN DANTE TONY', '08428445', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45252', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45253', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45255', NULL, 'INDUSAL INDUSTRIAL E.I.R.L.', '--', '20601245541', '', '', 'AV. LOS FRESNOS MZA. H1 LOTE. 01 DPTO. PS 2 URB. PORTADA DEL SOL DE LA MOLINA LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45257', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45258', NULL, 'BACON PORTAL SEGUNDO ESTEBAN', '--', '10748133505', '', '', 'CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45260', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45261', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45262', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45264', NULL, 'REGINA PEÑA', '70301730', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45265', NULL, 'REGINA PEÑA', '70301730', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45266', NULL, 'REGINA PEÑA', '70301730', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45267', NULL, 'REGINA PEÑA', '70301730', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45268', NULL, 'REGINA PEÑA', '70301730', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45269', NULL, 'VANESA PEREZ', '42939952', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45273', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45276', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45278', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45279', NULL, 'IMPORTACIONES HIRAOKA S.A.C.', '--', '20100016681', '', '', 'AV. ABANCAY NRO. 594 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45280', NULL, 'IMPORTACIONES HIRAOKA S.A.C.', '--', '20100016681', '', '', 'AV. ABANCAY NRO. 594 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45281', NULL, 'IMPORTACIONES HIRAOKA S.A.C.', '--', '20100016681', '', '', 'AV. ABANCAY NRO. 594 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45282', NULL, 'IMPORTACIONES HIRAOKA S.A.C.', '--', '20100016681', '', '', 'AV. ABANCAY NRO. 594 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45286', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45287', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45288', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45289', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45290', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45291', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45292', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45293', NULL, 'CHERO ANCAJIMA PABLO', '--', '10056427533', '', '', 'jr bolognesi 136 magdalena del mar-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45295', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45297', NULL, 'JUAREZ HERRERA GUSTAVO ANTONY', '43373834', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45298', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45299', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45300', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45303', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45304', NULL, 'CIAPLAST GUTIERREZ S.A.C.', '--', '20565355512', '', '', 'JR. AUGUSTO DURAND NRO. 2548 (CDRA 1 DE ROSA TORO) LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45305', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45306', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45308', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45309', NULL, 'ELGUERA CORONADO PABLO ADRIAN', '--', '10104961288', '', '', 'LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45310', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45311', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45312', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45318', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45319', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45322', NULL, 'JOSE RIVERA RUBIO', '09624142', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45323', NULL, 'JOSE RIVERA RUBIO', '09624142', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45324', NULL, 'JOSE RIVERA RUBIO', '09624142', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45325', NULL, 'JOSE RIVERA RUBIO', '09624142', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45326', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45327', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45328', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45331', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45332', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45333', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45334', NULL, 'ALVAREZ BRIONES DE TOCAS MARIA MELBA', '--', '10101640669', '', '', 'AV. JORGE BASADRE 368 URB SAN CARLOS S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45339', NULL, 'SISA MAQUINARIAS E.I.R.L.', '--', '20600860225', '', '', 'MZA. B1 LOTE. 01 A.H. VILLA EL ESCUDERO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - MI PERU', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45341', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45342', NULL, 'JODVER GONZALES', '40558823', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45345', NULL, 'LLANOS PRIETO CARLOS ENRIQUE', '--', '10802033104', '', '', 'JR. JUAN VALERA # 110 SAN MARTIN DE PORRES-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45346', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45347', NULL, 'EL GRAN MUNDO DE LA MODA ARTESANAL Y LA FANTASIA E.I.R.', '--', '20555672633', '', '', '----GRL CORDOVA NRO. 1001 (ALT CDRA 2 CUBA FRENTE UNIV ALAS PERUANA) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45355', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45356', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45357', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45360', NULL, 'ACERO JOYAS & ACCESORIOS S.A.C.', '--', '20600679032', '', '', 'AV. ALFREDO BENAVIDES NRO. 347 INT. 40 URB. PALACIO DEL VIRREY LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45361', NULL, 'BARRENECHEA EULOGIO NANCY VIRGINIA', '--', '10457576809', '', '', 'SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45362', NULL, 'BARRENECHEA EULOGIO NANCY VIRGINIA', '--', '10457576809', '', '', 'SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45364', NULL, 'P & P CARGO S.A.C.', '--', '20518226844', '', '', 'AV. ELMER FAUCETT NRO. S/N INT. 313 (SECTOR B, CC AEREO COMERCIAL, ET 2) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45365', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45366', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45367', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45368', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45374', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45375', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45376', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45377', NULL, 'ASOC NACIONAL DE PERIODISTAS DEL PERU', '--', '20109853748', '', '', 'JR. HUANCAVELICA NRO. 320 INT. 204 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45378', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45379', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45380', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45381', NULL, 'INTEGRADORES DE SISTEMAS & PROYECTOS S.A.C.', '--', '20602980791', '', '', '----BARRIO 3- SECTOR 2 MZA. O LOTE. 39 URB. PACHACAMAC LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45383', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45384', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45385', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45387', NULL, 'CONVENTO CORRALILLO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45388', NULL, 'CONVENTO CORRALILLO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45389', NULL, 'SOLUTIONS OPTIMUS S.A.C. - S. OPTIMUS S.A.C.', '--', '20552138873', '', '', 'AV. UNIVERSITARIA NRO. 7910 URB. SAN AGUSTIN LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45391', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45392', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45393', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45394', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45395', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45396', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45397', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45402', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45403', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45404', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45405', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45406', NULL, 'PIERINA', '46851942', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45407', NULL, 'PIERINA', '46851942', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45408', NULL, 'PIERINA', '46851942', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45409', NULL, 'INVERSIONES EN TRANSPORTE Y TURISMO LIBERTADORES S.A.C.', '--', '20507725270', '', '', 'AV. NICOLAS ARRIOLA NRO. 2328 (CRUCE CON AV.ROSA TORO) LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45410', NULL, 'INVERSIONES EN TRANSPORTE Y TURISMO LIBERTADORES S.A.C.', '--', '20507725270', '', '', 'AV. NICOLAS ARRIOLA NRO. 2328 (CRUCE CON AV.ROSA TORO) LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45411', NULL, 'INVERSIONES EN TRANSPORTE Y TURISMO LIBERTADORES S.A.C.', '--', '20507725270', '', '', 'AV. NICOLAS ARRIOLA NRO. 2328 (CRUCE CON AV.ROSA TORO) LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45412', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45413', NULL, 'PEZ PANZON S.A.C.', '--', '20608851004', '', '', 'AV. TOMAS VALLE NRO. 3228 URB. INRESA (CRUCE AVENIDA TOMAS VALLE CON DOMINICOS) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45414', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45415', NULL, 'DISCOS & TRANSMISIONES E.I.R.L.', '--', '20565471342', '', '', 'AV. NICOLAS ARRIOLA NRO. 1429 URB. APOLO LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45416', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45417', NULL, 'DIOMAT SA', '--', '20543226310', '', '', 'AV. 15 DE JULIO MZA. L1 LOTE. 09 A.H. HUAYCAN ZONA D (FRENTE AL COLEGIO JAVIER HERAUD PRIMARIA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45418', NULL, 'ZULEMA MONTORO VIDARTE', '06770816', '', '', '', 'JR RESTAURACION 217-INT 109-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45419', NULL, 'ZULEMA MONTORO VIDARTE', '06770816', '', '', '', 'JR RESTAURACION 217-INT 109-BREÑA', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45420', NULL, 'ZULEMA MONTORO VIDARTE', '06770816', '', '', '', 'JR RESTAURACION 217-INT 109-BREÑA', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45424', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45425', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45426', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45429', NULL, 'BLITZ COMMUNICATIONS SOCIEDAD ANONIMA CERRADA', '--', '20512460802', '', '', 'CAL.INCA GARCILAZO DE LA VEGA NRO. 767 URB. SALAMANCA DE MONTERRICO (PARALELA AV LOS QUECHUAS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45430', NULL, 'BLITZ COMMUNICATIONS SOCIEDAD ANONIMA CERRADA', '--', '20512460802', '', '', 'CAL.INCA GARCILAZO DE LA VEGA NRO. 767 URB. SALAMANCA DE MONTERRICO (PARALELA AV LOS QUECHUAS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45431', NULL, 'BLITZ COMMUNICATIONS SOCIEDAD ANONIMA CERRADA', '--', '20512460802', '', '', 'CAL.INCA GARCILAZO DE LA VEGA NRO. 767 URB. SALAMANCA DE MONTERRICO (PARALELA AV LOS QUECHUAS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45432', NULL, 'BLITZ COMMUNICATIONS SOCIEDAD ANONIMA CERRADA', '--', '20512460802', '', '', 'CAL.INCA GARCILAZO DE LA VEGA NRO. 767 URB. SALAMANCA DE MONTERRICO (PARALELA AV LOS QUECHUAS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45433', NULL, 'BLITZ COMMUNICATIONS SOCIEDAD ANONIMA CERRADA', '--', '20512460802', '', '', 'CAL.INCA GARCILAZO DE LA VEGA NRO. 767 URB. SALAMANCA DE MONTERRICO (PARALELA AV LOS QUECHUAS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45434', NULL, 'BLITZ COMMUNICATIONS SOCIEDAD ANONIMA CERRADA', '--', '20512460802', '', '', 'CAL.INCA GARCILAZO DE LA VEGA NRO. 767 URB. SALAMANCA DE MONTERRICO (PARALELA AV LOS QUECHUAS) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45435', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45436', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45437', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45438', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45439', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45443', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45448', NULL, 'CITIKOLD DEL PERU S.A.C.', '--', '20601767423', '', '', 'AV. JAVIER PRADO OESTE NRO. 757 INT. 1303 URB. SAN FELIPE (EDIFICIO SKYTOWER) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45449', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45451', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45452', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45453', NULL, 'APU´S DREAM EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMIT', '--', '20527555575', '', '', 'CAL.COLLACALLE NRO. 310 URB. CENTRO HISTORICO (A UN COSTADO DE LA CERVECERIA) CUSCO - CUSCO - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45454', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45455', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45456', NULL, 'APU´S DREAM EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMIT', '--', '20527555575', '', '', 'CAL.COLLACALLE NRO. 310 URB. CENTRO HISTORICO (A UN COSTADO DE LA CERVECERIA) CUSCO - CUSCO - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45458', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45459', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45461', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45462', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45463', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45464', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45465', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45466', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45470', NULL, 'OTAYZA GRADOS LUZ ADELAIDA', '--', '10102651117', '', '', 'av. angamos 1551 surquillo-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45472', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45473', NULL, 'rosaluz baca huancachoque', '75658681', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45475', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45478', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45479', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45480', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45481', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45482', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45483', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45484', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45486', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45487', NULL, 'ENRIQUE AMADO & COMPAÑIA S.A.C.', '--', '20133875914', '', '', 'AV. NICOLAS DE PIEROLA NRO. 672 DPTO. 507 (PISO 5-AL COSTADO BANCO CONTINENTAL) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45488', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45489', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45490', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45491', NULL, 'INTUICION INVERSIONES S.A.C.', '--', '20545161932', '', '', 'CAL.LAS PALOMAS NRO. 296 URB. LIMATAMBO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45493', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45496', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45497', NULL, 'MEGASUIND S.A.C.', '--', '20555008946', '', '', 'JR. TEJADA NRO. 271 DPTO. B (ALT. DE OVALO BALTA) LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45498', NULL, 'MEGASUIND S.A.C.', '--', '20555008946', '', '', 'JR. TEJADA NRO. 271 DPTO. B (ALT. DE OVALO BALTA) LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45499', NULL, 'MEGASUIND S.A.C.', '--', '20555008946', '', '', 'JR. TEJADA NRO. 271 DPTO. B (ALT. DE OVALO BALTA) LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45501', NULL, 'CAJACURI QUISPE GERALDINE MILUSKA', '--', '10706184169', '', '', 'PARIACHI 3ERA ETAPA MZ T LOTE 17 ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45502', NULL, 'ORDOÑEZ ALIAGA JULIO FERNANDO', '--', '10074888548', '', '', 'LLOQUE YUPANQUI  931 INT 407 JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45504', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45510', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45511', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45512', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45513', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45514', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45515', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45516', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45517', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45518', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45519', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45520', NULL, 'MEGASUIND S.A.C.', '--', '20555008946', '', '', 'JR. TEJADA NRO. 271 DPTO. B (ALT. DE OVALO BALTA) LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45521', NULL, 'MEGASUIND S.A.C.', '--', '20555008946', '', '', 'JR. TEJADA NRO. 271 DPTO. B (ALT. DE OVALO BALTA) LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45522', NULL, 'MEGASUIND S.A.C.', '--', '20555008946', '', '', 'JR. TEJADA NRO. 271 DPTO. B (ALT. DE OVALO BALTA) LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45525', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45528', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45529', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45530', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45531', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45532', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45533', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45534', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45535', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45536', NULL, 'INVERSIONES HORTA EMPRESA INDIVIDUAL DE RESPONSABILIDAD', '--', '20601560331', '', '', '----ALBERTO ALEXANDER NRO. 2275 DPTO. 1404 URB. MATALECHUZA LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45538', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45539', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45540', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45541', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45542', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45543', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45544', NULL, 'TUNING CAR & FACTORY S.A.C.', '--', '20606527692', '', '', 'AV. AMPLIACION LOTE. OUV3 URB. JOSE CARLOS MARIATEGUI (PARQUE CONCHA ACUSTICA DE JCM) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45545', NULL, 'TUNING CAR & FACTORY S.A.C.', '--', '20606527692', '', '', 'AV. AMPLIACION LOTE. OUV3 URB. JOSE CARLOS MARIATEGUI (PARQUE CONCHA ACUSTICA DE JCM) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45546', NULL, 'TUNING CAR & FACTORY S.A.C.', '--', '20606527692', '', '', 'AV. AMPLIACION LOTE. OUV3 URB. JOSE CARLOS MARIATEGUI (PARQUE CONCHA ACUSTICA DE JCM) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45547', NULL, 'TUNING CAR & FACTORY S.A.C.', '--', '20606527692', '', '', 'AV. AMPLIACION LOTE. OUV3 URB. JOSE CARLOS MARIATEGUI (PARQUE CONCHA ACUSTICA DE JCM) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45550', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45552', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45553', NULL, 'SOLUTIONS J & O SERVICIOS GENERALES E.I.R.L.', '--', '20566005582', '', '', 'AV. ZORRITOS BLOCK 38 NRO. 1399 INT. 402 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45556', NULL, 'yackeline choqueneyra espinoza', '40176087', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45558', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45565', NULL, '- COMPAÑIA PERUANA DE RADIODIFUSION S.A.', '--', '20100049008', '', '', 'JR. MONTERO ROSAS NRO. 1099 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45567', NULL, 'APONTE ESPEJO VICTOR MANUEL', '--', '10293081234', '', '', 'AV PERU 4080 SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45569', NULL, 'VICENTE OROSCO GUTIERREZ', '10157240', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45573', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45579', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45580', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45581', NULL, 'TUNING CAR & FACTORY S.A.C.', '--', '20606527692', '', '', 'AV. AMPLIACION LOTE. OUV3 URB. JOSE CARLOS MARIATEGUI (PARQUE CONCHA ACUSTICA DE JCM) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45582', NULL, 'TUNING CAR & FACTORY S.A.C.', '--', '20606527692', '', '', 'AV. AMPLIACION LOTE. OUV3 URB. JOSE CARLOS MARIATEGUI (PARQUE CONCHA ACUSTICA DE JCM) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45583', NULL, 'TUNING CAR & FACTORY S.A.C.', '--', '20606527692', '', '', 'AV. AMPLIACION LOTE. OUV3 URB. JOSE CARLOS MARIATEGUI (PARQUE CONCHA ACUSTICA DE JCM) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45584', NULL, 'TUNING CAR & FACTORY S.A.C.', '--', '20606527692', '', '', 'AV. AMPLIACION LOTE. OUV3 URB. JOSE CARLOS MARIATEGUI (PARQUE CONCHA ACUSTICA DE JCM) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45585', NULL, 'ISIS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45586', NULL, 'ISIS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45587', NULL, 'ISIS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45595', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45596', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45597', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45598', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45599', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45600', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45601', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45602', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45603', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45604', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45606', NULL, 'JORGE VARGAS', '15434108', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45607', NULL, 'JORGE VARGAS', '15434108', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45608', NULL, 'JORGE VARGAS', '15434108', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45609', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45610', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45613', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45614', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45615', NULL, 'vicente barreto', '15630301', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45616', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45617', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45619', NULL, 'PIERMATH IMPORT S.A.C.', '--', '20545208831', '', '', 'JR. SALAVERRY NRO. 359 LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45620', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45621', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45622', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45623', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45624', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45626', NULL, 'RIVERA INGENIEROS SERVICES E.I.R.L.', '--', '20608556673', '', '', 'CAL.JULIO DELGADO NRO. 253 URB. SAN GERMAN (ALT.CDRA.7 AV, SAN GERMAN) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45627', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45628', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45629', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45630', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45632', NULL, 'DARI JESUS CANAL MARINEZ', '75438132', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45633', NULL, 'DARI JESUS CANAL MARINEZ', '75438132', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45634', NULL, 'DARI JESUS CANAL MARINEZ', '75438132', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45635', NULL, 'DARI JESUS CANAL MARINEZ', '75438132', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45636', NULL, 'DARI JESUS CANAL MARINEZ', '75438132', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45637', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45638', NULL, 'RECREATIVOS FARGO SAC', '--', '20526938535', '', '', 'JR. GMO.CACERES NRO. 284 CERCADO (ESQ.CON RAMON CATILLA 2DO PISO) APURIMAC - ANDAHUAYLAS - ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45639', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45640', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45641', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45642', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45646', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45648', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45649', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45650', NULL, 'SANDRA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45651', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45653', NULL, 'CUETO', '42895656', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45656', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45658', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45659', NULL, 'NESSUS HOTELES PERU S.A.', '--', '20505670443', '', '', 'AV. LA PAZ NRO. 463 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45661', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45662', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45663', NULL, 'LA CASA DE LAS OLLAS EG S.A.C.', '--', '20608748033', '', '', 'JR. MARISCAL LUIS JOSE DE ORBEGOSO NRO. 224 DPTO. 228 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45664', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45665', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45666', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45667', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45670', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45673', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45674', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45682', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45684', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45685', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45688', NULL, 'BARDALES CARDENAS IRMA', '--', '10453667036', '', '', 'alzamora 1355 iquitos', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45690', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45693', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45694', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45695', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45696', NULL, 'LIGA CONTRA EL CÁNCER-PERÚ', '--', '20101258476', '', '', 'AV. BRASIL NRO. 2746 (FRENTE AL HOSPITAL MILITAR) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45697', NULL, 'LIGA CONTRA EL CÁNCER-PERÚ', '--', '20101258476', '', '', 'AV. BRASIL NRO. 2746 (FRENTE AL HOSPITAL MILITAR) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45698', NULL, 'LIGA CONTRA EL CÁNCER-PERÚ', '--', '20101258476', '', '', 'AV. BRASIL NRO. 2746 (FRENTE AL HOSPITAL MILITAR) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45699', NULL, 'LIGA CONTRA EL CÁNCER-PERÚ', '--', '20101258476', '', '', 'AV. BRASIL NRO. 2746 (FRENTE AL HOSPITAL MILITAR) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45700', NULL, 'LIGA CONTRA EL CÁNCER-PERÚ', '--', '20101258476', '', '', 'AV. BRASIL NRO. 2746 (FRENTE AL HOSPITAL MILITAR) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45701', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45702', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45703', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45707', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45710', NULL, 'AMORZONIA E.I.R.L.', '--', '20604098867', '', '', 'AV. DEL EJERCITO NRO. 1528 (FRENTE DEL MINISTERIO PUBLICO) LORETO - MAYNAS - IQUITOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45714', NULL, 'ALESSANDRA SULLON ZIRENA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45715', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45716', NULL, 'VICTOR CAÑETE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45717', NULL, 'MIRTA ARTEAGA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45719', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45724', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45726', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45727', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45729', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45730', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45731', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45732', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45733', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45734', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45735', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45736', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45738', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45740', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45741', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45742', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45744', NULL, 'anderson quispe', '44315220', '', '', '', 'huancavelica', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45745', NULL, 'anderson quispe', '44315220', '', '', '', 'huancavelica', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45746', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45748', NULL, 'JURADO SOLANO RICARDO MARTIN', '--', '10400953932', '', '', 'LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45751', NULL, 'IDENTIFICAD S.A.C', '--', '20545380499', '', '', 'PJ. LAS GOLONDRINAS NRO. 220 FND. CAMPOY (URB.DANIEL A.CARRIÓN,FRENTE AL Nº 375) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45752', NULL, 'IDENTIFICAD S.A.C', '--', '20545380499', '', '', 'PJ. LAS GOLONDRINAS NRO. 220 FND. CAMPOY (URB.DANIEL A.CARRIÓN,FRENTE AL Nº 375) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45753', NULL, 'IDENTIFICAD S.A.C', '--', '20545380499', '', '', 'PJ. LAS GOLONDRINAS NRO. 220 FND. CAMPOY (URB.DANIEL A.CARRIÓN,FRENTE AL Nº 375) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45754', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45755', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45756', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45757', NULL, 'PABLO CONDE ELSA', '--', '10407087335', '', '', 'JR DELFIN CERNA 374 - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45758', NULL, 'PABLO CONDE ELSA', '--', '10407087335', '', '', 'JR DELFIN CERNA 374 - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45759', NULL, 'PABLO CONDE ELSA', '--', '10407087335', '', '', 'JR DELFIN CERNA 374 - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45761', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45762', NULL, 'LEYNA VALLES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45765', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45766', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45767', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45768', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45769', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45770', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45771', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45772', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45773', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45774', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45775', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45776', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45777', NULL, 'YARLEQUE PAZ JUAN CARLOS', '--', '10088913791', '', '', 'AV EDUARDO DE HABITCH 258-S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45778', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45780', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45781', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45783', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45784', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45785', NULL, 'HUARCAYA CONISLLA LUIS', '--', '10218587114', '', '', 'JR ITALIA 273-CHINCHA ALTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45786', NULL, 'HUARCAYA CONISLLA LUIS', '--', '10218587114', '', '', 'JR ITALIA 273-CHINCHA ALTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45787', NULL, 'HUARCAYA CONISLLA LUIS', '--', '10218587114', '', '', 'JR ITALIA 273-CHINCHA ALTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45788', NULL, 'HUARCAYA CONISLLA LUIS', '--', '10218587114', '', '', 'JR ITALIA 273-CHINCHA ALTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45789', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45790', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45791', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45792', NULL, 'RECREATIVOS FARGO SAC', '--', '20526938535', '', '', 'JR. GMO.CACERES NRO. 284 CERCADO (ESQ.CON RAMON CATILLA 2DO PISO) APURIMAC - ANDAHUAYLAS - ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45793', NULL, 'CARDENAS NUÑEZ EVELYN FLOR', '--', '10436727254', '', '', 'JR VICTOR NAVARRO 209 CONDE VILLA SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45794', NULL, 'CARDENAS NUÑEZ EVELYN FLOR', '--', '10436727254', '', '', 'JR VICTOR NAVARRO 209 CONDE VILLA SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45795', NULL, 'CARDENAS NUÑEZ EVELYN FLOR', '--', '10436727254', '', '', 'JR VICTOR NAVARRO 209 CONDE VILLA SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45796', NULL, 'CARDENAS NUÑEZ EVELYN FLOR', '--', '10436727254', '', '', 'JR VICTOR NAVARRO 209 CONDE VILLA SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45797', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45798', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45800', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45806', NULL, 'NEGOCIACIONES GENERALES MDG S.R.L.', '--', '20600375408', '', '', 'CAL.NUEVA YORK NRO. 356 (A MEDIA CUADRA DEL PARQUE FATIMA) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45807', NULL, 'NEGOCIACIONES GENERALES MDG S.R.L.', '--', '20600375408', '', '', 'CAL.NUEVA YORK NRO. 356 (A MEDIA CUADRA DEL PARQUE FATIMA) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45808', NULL, 'NEGOCIACIONES GENERALES MDG S.R.L.', '--', '20600375408', '', '', 'CAL.NUEVA YORK NRO. 356 (A MEDIA CUADRA DEL PARQUE FATIMA) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45809', NULL, 'RICHARD VILLEGAS LIZANAS', '73698560', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45812', NULL, 'RIVER UNIVERSE ENGINEERING E.I.R.L.', '--', '20607588792', '', '', 'JR. DIEGO FERRE NRO. 613 BAR. SANTA ELENA ALTA CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45813', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45816', NULL, 'DIAZ GARCIA ROSANA EMPERATRIZ', '--', '10156159552', '', '', 'ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45817', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45818', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45819', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45820', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45823', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45824', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45830', NULL, 'CAMPOS MAGUIÑA CRISTIAN KEN', '--', '10708111592', '', '', 'LOS ROSALES  205 - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45831', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45832', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45833', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45835', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45836', NULL, 'ESTRADOS PERU E.I.R.L.', '--', '20553804818', '', '', 'CAL.CHIMU MZA. J LOTE. 10 C.P. LA ENSENADA (LA ENSENADA CIENEGUILLA) LIMA - LIMA - CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45837', NULL, 'ESTRADOS PERU E.I.R.L.', '--', '20553804818', '', '', 'CAL.CHIMU MZA. J LOTE. 10 C.P. LA ENSENADA (LA ENSENADA CIENEGUILLA) LIMA - LIMA - CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45838', NULL, 'ESTRADOS PERU E.I.R.L.', '--', '20553804818', '', '', 'CAL.CHIMU MZA. J LOTE. 10 C.P. LA ENSENADA (LA ENSENADA CIENEGUILLA) LIMA - LIMA - CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45839', NULL, 'CASTILLO ARTE CREATIVO PUBLICITARIO E.I.R.L.', '--', '20608491873', '', '', 'AV. REPUBLICA DE PANAMA NRO. 5098 URB. CERCADO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45840', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45841', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45842', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45843', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45845', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45846', NULL, 'SANCHEZ FRANCO ABRAHAM ULISES', '--', '10424616741', '', '', 'AV TINGO MARIA 765-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45847', NULL, 'SANCHEZ FRANCO ABRAHAM ULISES', '--', '10424616741', '', '', 'AV TINGO MARIA 765-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45848', NULL, 'SANCHEZ FRANCO ABRAHAM ULISES', '--', '10424616741', '', '', 'AV TINGO MARIA 765-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45849', NULL, 'SANCHEZ FRANCO ABRAHAM ULISES', '--', '10424616741', '', '', 'AV TINGO MARIA 765-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45850', NULL, 'SANCHEZ FRANCO ABRAHAM ULISES', '--', '10424616741', '', '', 'AV TINGO MARIA 765-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45851', NULL, 'SANCHEZ FRANCO ABRAHAM ULISES', '--', '10424616741', '', '', 'AV TINGO MARIA 765-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45852', NULL, 'SANCHEZ FRANCO ABRAHAM ULISES', '--', '10424616741', '', '', 'AV TINGO MARIA 765-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45856', NULL, 'GRUPO LOGISTICO ROSMAR S.A.C', '--', '20605875654', '', '', 'MZA. L LOTE. 01 COO. LAS FRAGATAS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45857', NULL, 'GRUPO LOGISTICO ROSMAR S.A.C', '--', '20605875654', '', '', 'MZA. L LOTE. 01 COO. LAS FRAGATAS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45858', NULL, 'GRUPO LOGISTICO ROSMAR S.A.C', '--', '20605875654', '', '', 'MZA. L LOTE. 01 COO. LAS FRAGATAS LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45861', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45862', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45864', NULL, 'DLE S.A.C.', '--', '20563346028', '', '', 'CAL.EL INGENIO NRO. 109 INT. 101 URB. PORTADA DEL SOL ET. UNO LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45866', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45869', NULL, 'JUAN SAMUEL CUESTAS NAPAN', '73197533', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45870', NULL, 'JUAN SAMUEL CUESTAS NAPAN', '73197533', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45871', NULL, 'JUAN SAMUEL CUESTAS NAPAN', '73197533', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45872', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45873', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45875', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45880', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45882', NULL, 'VILLACREZ CORDOVA JULISSA', '--', '10420146821', '', '', 'LAS CLICINAS MZ C LOTE 34 S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45883', NULL, 'VILLACREZ CORDOVA JULISSA', '--', '10420146821', '', '', 'LAS CLICINAS MZ C LOTE 34 S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45884', NULL, 'VILLACREZ CORDOVA JULISSA', '--', '10420146821', '', '', 'LAS CLICINAS MZ C LOTE 34 S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45885', NULL, 'VILLACREZ CORDOVA JULISSA', '--', '10420146821', '', '', 'LAS CLICINAS MZ C LOTE 34 S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45886', NULL, 'INVERSIONES ALEXI\'OS E.I.R.L.', '--', '20566416370', '', '', 'JR. CAMANA NRO. 1186 INT. 91B CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45887', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45888', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45889', NULL, 'rafael', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45890', NULL, 'susan calderon', '47644338', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45892', NULL, 'INVERSIONES GLADYS & GIANELLA EIRL - INVERSIONES', '--', '20524493838', '', '', 'LA MAR NRO. 251 COO. 27 DE ABRIL LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45893', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45894', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45895', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45896', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45901', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45902', NULL, 'INVERSIONES JAMKAR S.A.C.', '--', '20553008957', '', '', 'JR. JUPITER NRO. 298 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45903', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45905', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45906', NULL, 'CHICKEN FAMILY S.A.C.', '--', '20609338866', '', '', 'PJ. LIRIOS MZA. E LOTE. 8 URB. LAS PRADERAS DE NARANJAL ET. TRES (ALTURA DE MERCADO SAN JOSE) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45907', NULL, 'CHICKEN FAMILY S.A.C.', '--', '20609338866', '', '', 'PJ. LIRIOS MZA. E LOTE. 8 URB. LAS PRADERAS DE NARANJAL ET. TRES (ALTURA DE MERCADO SAN JOSE) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45908', NULL, 'CHICKEN FAMILY S.A.C.', '--', '20609338866', '', '', 'PJ. LIRIOS MZA. E LOTE. 8 URB. LAS PRADERAS DE NARANJAL ET. TRES (ALTURA DE MERCADO SAN JOSE) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45909', NULL, 'julia ortiz', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45911', NULL, 'INVERSIONES JAMKAR S.A.C.', '--', '20553008957', '', '', 'JR. JUPITER NRO. 298 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45912', NULL, 'INVERSIONES JAMKAR S.A.C.', '--', '20553008957', '', '', 'JR. JUPITER NRO. 298 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45913', NULL, 'INVERSIONES JAMKAR S.A.C.', '--', '20553008957', '', '', 'JR. JUPITER NRO. 298 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45914', NULL, 'INVERSIONES JAMKAR S.A.C.', '--', '20553008957', '', '', 'JR. JUPITER NRO. 298 URB. SOL DE ORO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45916', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45917', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45918', NULL, 'RUIZ CARDENAS JULIO JORGE', '--', '10161216190', '', '', 'PSJE TUPAC AMARU 101 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45921', NULL, 'VARIOS', '09642204', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45925', NULL, 'RODRIGO HERNANDEZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45928', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45929', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45930', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45932', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45933', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45934', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45936', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45939', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45940', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45941', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45942', NULL, 'ROSA SUAREZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45945', NULL, 'pablo corahua', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45946', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45948', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45949', NULL, 'gina casquero', '04079194', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45952', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45953', NULL, 'ANGELA SOLANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45954', NULL, 'ANGELA SOLANO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45955', NULL, 'PAOLA NANCY QUISPE MENDOZA', '43261898', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45956', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45958', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45960', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45961', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45962', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45963', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45966', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45967', NULL, 'FACTORIA BRUCE S.A.', '--', '20354243777', '', '', 'AV. 4 MZA. H3 LOTE. 01 URB. PARQUE INDUSTRIAL (FRENTE A METALBUS, A ESPALDAS DE TRUTEX) LA LIBERTAD - TRUJILLO - LA ESPERANZA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45970', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45971', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45972', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45973', NULL, 'MANTENIMIENTO DE PLANTA Y SERVICIOS SOCIEDAD ANONIMA CE', '--', '20602331921', '', '', 'AV. AVIACION NRO. 3040 DPTO. 2A URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45974', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45978', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45979', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45980', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45981', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45982', NULL, 'ERIKA VILLAVICENCIO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45983', NULL, 'ERIKA VILLAVICENCIO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45984', NULL, 'ERIKA VILLAVICENCIO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45985', NULL, 'ERIKA VILLAVICENCIO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45986', NULL, 'ERIKA VILLAVICENCIO', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45987', NULL, 'ALERTA MEDICA SERVICIOS INTEGRALES DE SALUD SOCIEDAD AN', '--', '20486811316', '', '', 'AV. SANTA ROSA NRO. 511 (FRENTE AL MERCADO Nº 2 DE PICHANAQUI) JUNIN - CHANCHAMAYO - PICHANAQUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45989', NULL, 'PALOMINO LOZA LUZ LIDES', '--', '10063621078', '', '', 'AV LAS AMERICAS 10404 PISCO - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45991', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45992', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45993', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45994', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45995', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('45999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46002', NULL, 'LAVADO  YACOLCA CELINA MABELA', '41324730', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46003', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46007', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46010', NULL, 'cesar', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46013', NULL, 'jose luis', '71104302', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46016', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46019', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46021', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46022', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46023', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46024', NULL, 'ESTUDIO CHAVEZ & ABOGADOS E.I.R.L.', '--', '20609198568', '', '', '----CASN MZA. Ñ LOTE. 11 INT. 403 (OFICINA 403) LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46025', NULL, 'DOALL S.A.C.', '--', '20600781350', '', '', 'AV. SERGIO BERNALES NRO. 189 DPTO. 803 BAR. DEL MEDICO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46026', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46027', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46030', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46033', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46036', NULL, 'luciana neyra', '43595022', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46037', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46042', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46043', NULL, 'GIRALDO CABRERA DE SANABRIA GLORIA DORIS', '--', '10092125021', '', '', 'JR LOS LINOS 273-S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46044', NULL, 'GIRALDO CABRERA DE SANABRIA GLORIA DORIS', '--', '10092125021', '', '', 'JR LOS LINOS 273-S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46045', NULL, 'GIRALDO CABRERA DE SANABRIA GLORIA DORIS', '--', '10092125021', '', '', 'JR LOS LINOS 273-S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46046', NULL, 'GIRALDO CABRERA DE SANABRIA GLORIA DORIS', '--', '10092125021', '', '', 'JR LOS LINOS 273-S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46047', NULL, 'LOS CAPOS GRILL S.A.C.', '--', '20608928830', '', '', 'JR. LAS MARGARITAS NRO. 131 URB. PAPA DEL CARMEN JUNIN - CHANCHAMAYO - CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46048', NULL, 'LOS CAPOS GRILL S.A.C.', '--', '20608928830', '', '', 'JR. LAS MARGARITAS NRO. 131 URB. PAPA DEL CARMEN JUNIN - CHANCHAMAYO - CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46049', NULL, 'LOS CAPOS GRILL S.A.C.', '--', '20608928830', '', '', 'JR. LAS MARGARITAS NRO. 131 URB. PAPA DEL CARMEN JUNIN - CHANCHAMAYO - CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46050', NULL, 'LOS CAPOS GRILL S.A.C.', '--', '20608928830', '', '', 'JR. LAS MARGARITAS NRO. 131 URB. PAPA DEL CARMEN JUNIN - CHANCHAMAYO - CHANCHAMAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46051', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46053', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46054', NULL, 'ANDREA', '45631345', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46055', NULL, 'ORDOÑEZ ALIAGA JULIO FERNANDO', '--', '10074888548', '', '', 'JR LLOOQUE YUPANQUI 931 INT 407-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46056', NULL, 'ORDOÑEZ ALIAGA JULIO FERNANDO', '--', '10074888548', '', '', 'JR LLOOQUE YUPANQUI 931 INT 407-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46057', NULL, 'ORDOÑEZ ALIAGA JULIO FERNANDO', '--', '10074888548', '', '', 'JR LLOOQUE YUPANQUI 931 INT 407-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46058', NULL, 'ORDOÑEZ ALIAGA JULIO FERNANDO', '--', '10074888548', '', '', 'JR LLOOQUE YUPANQUI 931 INT 407-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46059', NULL, 'ORDOÑEZ ALIAGA JULIO FERNANDO', '--', '10074888548', '', '', 'JR LLOOQUE YUPANQUI 931 INT 407-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46060', NULL, 'ORDOÑEZ ALIAGA JULIO FERNANDO', '--', '10074888548', '', '', 'JR LLOOQUE YUPANQUI 931 INT 407-JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46061', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46062', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46063', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46064', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46068', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46070', NULL, 'BAZAN BELLO MIRTHA MARITZA', '--', '10100770127', '', '', 'jr. la merced 107 villa maria del triunfo-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46071', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46074', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46075', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46076', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46077', NULL, 'TAPIA ARTEAGA VERY GLADYS', '--', '10166626892', '', '', 'TARAPACA 766 - CHICLAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46078', NULL, 'DX FOOTWEAR TRENDS S.A.C.', '--', '20609149516', '', '', 'BLV.BOULEVARD DE LA LITERATURA NRO. 117 RES. LAS TORRES DE SAN BORJA (CALLE TRANSVERSAL A GUARDIA CIVIL) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46079', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46081', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46082', NULL, 'EDMERSI SOCIEDAD ANONIMA CERRADA - EDMERSI S.A.C.', '--', '20603789246', '', '', 'MZA. H LOTE. 14 SEC. 2 GRUPO 1 (PISO 2) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46083', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46084', NULL, 'ELECTRONIC COMPANY SOCIEDAD ANONIMA CERRADA - ELECTRONI', '--', '20509115941', '', '', 'AV. HUANCARAY MZA. E LOTE. 12 URB. LOS PRODUCTORES (LOTES 12 Y 13) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46085', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', '20538225763', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46086', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46087', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46088', NULL, 'MAMIS PAN E.I.R.L.', '--', '20516223911', '', '', 'AV. MRCAL OSCAR R BENAVIDES NRO. 2658 URB. ROMA (1ER PISO/CRUCE CON UNIVERSITARIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46089', NULL, 'MAMIS PAN E.I.R.L.', '--', '20516223911', '', '', 'AV. MRCAL OSCAR R BENAVIDES NRO. 2658 URB. ROMA (1ER PISO/CRUCE CON UNIVERSITARIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46090', NULL, 'MAMIS PAN E.I.R.L.', '--', '20516223911', '', '', 'AV. MRCAL OSCAR R BENAVIDES NRO. 2658 URB. ROMA (1ER PISO/CRUCE CON UNIVERSITARIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46091', NULL, 'MAMIS PAN E.I.R.L.', '--', '20516223911', '', '', 'AV. MRCAL OSCAR R BENAVIDES NRO. 2658 URB. ROMA (1ER PISO/CRUCE CON UNIVERSITARIA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46092', NULL, 'MARILYN DIAZ', '45499425', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46093', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46096', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46097', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46098', NULL, 'ARANDA RUESTA CRISTIL TALIA MERCEDES', '--', '10482748703', '', '', 'AAHH LOS ALGARROBOS MZ C LT 40 1 ERA ETAPA  PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46100', NULL, 'ROSA MUNCIBAY', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46102', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46103', NULL, 'VICTOR PALOMINO', '41909718', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46104', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46106', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46107', NULL, 'HERMEREJILDO QUISPE', '10244265', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46108', NULL, 'GONZALES BERMUDEZ MAGNOLIA', '--', '10061856965', '', '', 'JR ICA  721 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46109', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46110', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46111', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46112', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46113', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46114', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46115', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46116', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46117', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46118', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46119', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46120', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46123', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46124', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46125', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46126', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46127', NULL, 'UTIL S A', '--', '20102297661', '', '', 'CAL.C MZA. C LOTE. 21 URB. PANAM. NORTE LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46128', NULL, 'erica villavicencio martinez', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46129', NULL, 'MINISTERIO DE JUSTICIA Y DERECHOS HUMANOS', '--', '20131371617', '', '', 'JR. SCIPION LLONA NRO. 350 (ALTURA CUADRA 42 DE AREQUIPA) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46131', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46132', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46133', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46134', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46135', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46136', NULL, 'NEVADA ENTRETENIMIENTOS S.A.C.', '--', '20530811001', '', '', 'JR. PARRA DEL RIEGO NRO. 367 DPTO. 603 JUNIN - HUANCAYO - EL TAMBO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46137', NULL, 'NEVADA ENTRETENIMIENTOS S.A.C.', '--', '20530811001', '', '', 'JR. PARRA DEL RIEGO NRO. 367 DPTO. 603 JUNIN - HUANCAYO - EL TAMBO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46138', NULL, 'NEVADA ENTRETENIMIENTOS S.A.C.', '--', '20530811001', '', '', 'JR. PARRA DEL RIEGO NRO. 367 DPTO. 603 JUNIN - HUANCAYO - EL TAMBO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46139', NULL, 'NEVADA ENTRETENIMIENTOS S.A.C.', '--', '20530811001', '', '', 'JR. PARRA DEL RIEGO NRO. 367 DPTO. 603 JUNIN - HUANCAYO - EL TAMBO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46141', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46142', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46144', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46145', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46146', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46147', NULL, 'EMPRESA DE TRANSPORTES Y SERVICIOS MULTIPLES SIGNOS DE ', '--', '20606246227', '', '', 'MZA. B LOTE. 6 A.F. LOS PORTALES 18 DE ENERO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46148', NULL, 'EMPRESA DE TRANSPORTES Y SERVICIOS MULTIPLES SIGNOS DE ', '--', '20606246227', '', '', 'MZA. B LOTE. 6 A.F. LOS PORTALES 18 DE ENERO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46149', NULL, 'EMPRESA DE TRANSPORTES Y SERVICIOS MULTIPLES SIGNOS DE ', '--', '20606246227', '', '', 'MZA. B LOTE. 6 A.F. LOS PORTALES 18 DE ENERO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46150', NULL, 'EMPRESA DE TRANSPORTES Y SERVICIOS MULTIPLES SIGNOS DE ', '--', '20606246227', '', '', 'MZA. B LOTE. 6 A.F. LOS PORTALES 18 DE ENERO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46151', NULL, 'EMPRESA DE TRANSPORTES Y SERVICIOS MULTIPLES SIGNOS DE ', '--', '20606246227', '', '', 'MZA. B LOTE. 6 A.F. LOS PORTALES 18 DE ENERO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46152', NULL, 'EMPRESA DE TRANSPORTES Y SERVICIOS MULTIPLES SIGNOS DE ', '--', '20606246227', '', '', 'MZA. B LOTE. 6 A.F. LOS PORTALES 18 DE ENERO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46156', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46157', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46158', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46159', NULL, 'NL SERVICIOS Y EVENTOS E.I.R.L.', '--', '20603871678', '', '', 'JR. CORONEL LEON VELARDE NRO. 879 URB. RISSO (PISO 3) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46160', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46161', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46164', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46165', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46168', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46169', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46172', NULL, 'MONT TIENDAS S.A.C.', '--', '20608054481', '', '', 'JR. JR. LIMA NRO. 540 OTR. PJ. LA LIBERTAD (POR LA MUNICIPALIDAD DE COMAS) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46173', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46174', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46175', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46176', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46178', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46179', NULL, 'MUNAYTA S.A.C.', '--', '20610087826', '', '', 'JR. JOSE MARIA PLAZA NRO. 384 FND. OYAGUE LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46183', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46184', NULL, 'JOSE LUJAN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46185', NULL, 'JOSE LUJAN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46186', NULL, 'JOSE LUJAN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46190', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46191', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46194', NULL, 'PS.SOPHIE-SIAN E.I.R.L', '--', '20609559137', '', '', 'AV. PERU NRO. 572 C.P. LA TINGUIÑA ZN. D ICA - ICA - LA TINGUIÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46195', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46197', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46199', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46200', NULL, 'JENNY ALVAREZ ESPINOZA', '42401892', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46201', NULL, 'JENNY ALVAREZ ESPINOZA', '42401892', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46202', NULL, 'JENNY ALVAREZ ESPINOZA', '42401892', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46203', NULL, 'JENNY ALVAREZ ESPINOZA', '42401892', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46204', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46205', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46206', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46207', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46208', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46209', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46212', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46213', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46214', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46217', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46218', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46219', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46220', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46221', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46222', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46223', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46229', NULL, 'RECREATIVOS FARGO SAC', '--', '20526938535', '', '', 'JR. GMO.CACERES NRO. 284 CERCADO (ESQ.CON RAMON CATILLA 2DO PISO) APURIMAC - ANDAHUAYLAS - ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46230', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46231', NULL, 'VARIOS', '45903920', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46234', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46235', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46236', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46237', NULL, 'VARIOS', '40857068', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46240', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46241', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46242', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46243', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46244', NULL, 'MARTINEZ VENTO AMERICO WILDER', '--', '10211377700', '', '', 'JR DOS DE MAYO 565 - TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46245', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46246', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46247', NULL, 'JULIA LIRA ESPINOZA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46249', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46251', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46253', NULL, 'JERIDEAS E.I.R.L.', '--', '20608680021', '', '', 'JR. JAZPAMPA NRO. 308 URB. TARAPACA (CRUCE AV FAUCETT Y AV ARGENTINA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46254', NULL, 'JERIDEAS E.I.R.L.', '--', '20608680021', '', '', 'JR. JAZPAMPA NRO. 308 URB. TARAPACA (CRUCE AV FAUCETT Y AV ARGENTINA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46255', NULL, 'JERIDEAS E.I.R.L.', '--', '20608680021', '', '', 'JR. JAZPAMPA NRO. 308 URB. TARAPACA (CRUCE AV FAUCETT Y AV ARGENTINA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46256', NULL, 'JERIDEAS E.I.R.L.', '--', '20608680021', '', '', 'JR. JAZPAMPA NRO. 308 URB. TARAPACA (CRUCE AV FAUCETT Y AV ARGENTINA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46257', NULL, 'JERIDEAS E.I.R.L.', '--', '20608680021', '', '', 'JR. JAZPAMPA NRO. 308 URB. TARAPACA (CRUCE AV FAUCETT Y AV ARGENTINA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46258', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46260', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46261', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46263', NULL, 'VC DISERGRAF S.A.C.', '--', '20604342971', '', '', 'JR. LAMPA NRO. 1147 INT. 27 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46264', NULL, 'VC DISERGRAF S.A.C.', '--', '20604342971', '', '', 'JR. LAMPA NRO. 1147 INT. 27 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46265', NULL, 'VC DISERGRAF S.A.C.', '--', '20604342971', '', '', 'JR. LAMPA NRO. 1147 INT. 27 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46268', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46269', NULL, 'AB CONSULTORIA ASESORIA & CAPACITACION E.I.R.L.', '--', '20606605723', '', '', 'JR. MARISCAL MILLER NRO. 2576 INT. A (A DOS CUADRAS ANTES DEL TOURING) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46270', NULL, 'AB CONSULTORIA ASESORIA & CAPACITACION E.I.R.L.', '--', '20606605723', '', '', 'JR. MARISCAL MILLER NRO. 2576 INT. A (A DOS CUADRAS ANTES DEL TOURING) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46273', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46275', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46277', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46278', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46282', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46283', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46284', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46285', NULL, 'rosa reyes', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46287', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46288', NULL, 'SOTO FLORES DE PACHECO DALILA', '--', '10068095072', '', '', 'av. malecon s/n california - chosica', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46289', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46290', NULL, 'JARA MOGOLLON JHON PERCY', '72719400', '10803930398', '', '', 'MZD LT1 ASC. VILLA GLORIA CARABAYLLO-LIMA', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46291', NULL, 'MILAGROS LEVY SURICAQUI MONTALVO', '72719400', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46292', NULL, 'MILAGROS LEVY SURICAQUI MONTALVO', '72719400', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46293', NULL, 'MILAGROS LEVY SURICAQUI MONTALVO', '72719400', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46294', NULL, 'MILAGROS LEVY SURICAQUI MONTALVO', '72719400', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46295', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46296', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46297', NULL, 'JARA MOGOLLON JHON PERCY', '--', '10803930398', '', '', 'MAD LT1 ASOC. VILLA  GLORIA CARABAYLLO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46300', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46302', NULL, 'rocio espinoza', '40494017', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46303', NULL, 'CETPRO PROMAE - ESCUELA NACIONAL DE ARTES GRÁFICAS', '--', '20565412923', '', '', 'JR. GARCIA NARANJO NRO. 647 (ALTURA CUADRA 6 DE AV. GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46304', NULL, 'CETPRO PROMAE - ESCUELA NACIONAL DE ARTES GRÁFICAS', '--', '20565412923', '', '', 'JR. GARCIA NARANJO NRO. 647 (ALTURA CUADRA 6 DE AV. GRAU) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46305', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46306', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46307', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46312', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46314', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46315', NULL, 'roque', '46753015', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46318', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46319', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46321', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46325', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46330', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46333', NULL, 'GRUPO JHIRE S.R.L.', '--', '20603816316', '', '', 'AV. PETIT THOUARS NRO. 1189 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46334', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46335', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46336', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46337', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46339', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46341', NULL, 'MELANY FERNANDEZ', '76219740', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46344', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46345', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46348', NULL, 'GALLARDO MAZA ELIANA ROSMERY', '--', '10466345046', '', '', 'CALLE 6 DE ENERO URB NAVIDAD DE VILLA-MZ K LOTE 13- LIMA -LIMA CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46349', NULL, 'GALLARDO MAZA ELIANA ROSMERY', '--', '10466345046', '', '', 'CALLE 6 DE ENERO URB NAVIDAD DE VILLA-MZ K LOTE 13- LIMA -LIMA CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46350', NULL, 'GALLARDO MAZA ELIANA ROSMERY', '--', '10466345046', '', '', 'CALLE 6 DE ENERO URB NAVIDAD DE VILLA-MZ K LOTE 13- LIMA -LIMA CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46353', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46355', NULL, 'CORPORACION METALICA DEL ACERO S.A.C.', '--', '20513855941', '', '', 'AV. ALFREDO PALACIOS NRO. 776 URB. CENTENARIO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46356', NULL, 'CORPORACION METALICA DEL ACERO S.A.C.', '--', '20513855941', '', '', 'AV. ALFREDO PALACIOS NRO. 776 URB. CENTENARIO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46357', NULL, 'CORPORACION METALICA DEL ACERO S.A.C.', '--', '20513855941', '', '', 'AV. ALFREDO PALACIOS NRO. 776 URB. CENTENARIO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46360', NULL, 'laura paredes', '16753074', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46365', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46366', NULL, 'MONTALVAN MENESES MARGORIE MILAGROS', '--', '10730255590', '', '', 'jr. rio mantaro 559 los olivos- lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46367', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46368', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46371', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46372', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46374', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46375', NULL, 'RDCINVERSIONES S.A.C.', '--', '20609263246', '', '', 'AV. SAN BORJA NORTE NRO. 307 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46376', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46377', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46380', NULL, 'juan carlos bayona', '08402562', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46381', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46382', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46383', NULL, 'AMELIE SALUD Y PRODUCTOS NATURALES PERU S.A.C.', '--', '20609748622', '', '', 'AV. PARADO DE BELLIDO NRO. 336 URB. EL CARMEN LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46384', NULL, 'AMELIE SALUD Y PRODUCTOS NATURALES PERU S.A.C.', '--', '20609748622', '', '', 'AV. PARADO DE BELLIDO NRO. 336 URB. EL CARMEN LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46385', NULL, 'AMELIE SALUD Y PRODUCTOS NATURALES PERU S.A.C.', '--', '20609748622', '', '', 'AV. PARADO DE BELLIDO NRO. 336 URB. EL CARMEN LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46386', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46387', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46389', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46392', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46393', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46394', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46400', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46401', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46402', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46403', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46404', NULL, 'Q´ UMA SOLUCIONES GASTRONOMICAS S.A.C.', '--', '20604070407', '', '', 'CAL.MANUEL VILDOSO NRO. 852 INT. 1 URB. SANTA CATALINA (COSTADO DE LA PARROQUIA NORBERTO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46405', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46406', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46409', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46410', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46411', NULL, 'ROAL PUBLICIDAD S.A.C.', '--', '20546516432', '', '', 'JR. HUARAZ NRO. 1717 INT. 506 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46412', NULL, 'ROAL PUBLICIDAD S.A.C.', '--', '20546516432', '', '', 'JR. HUARAZ NRO. 1717 INT. 506 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46413', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46414', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46415', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46416', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46417', NULL, 'ROAL PUBLICIDAD S.A.C.', '--', '20546516432', '', '', 'JR. HUARAZ NRO. 1717 INT. 506 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46419', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46420', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46423', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46425', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46426', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46429', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46430', NULL, 'DUCTOR S.A.C.', '--', '20536328077', '', '', 'CAL.JAVIER PRADO ESTE NRO. 8471 URB. PORTALES DE JAVIER PRADO ET. UNO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46431', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46433', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46434', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46436', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46437', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46440', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46441', NULL, 'CASTILLA CUENCA JOSE MANUEL', '--', '10404321540', '', '', 'JR ALDEBARAN 114-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46442', NULL, 'CASTILLA CUENCA JOSE MANUEL', '--', '10404321540', '', '', 'JR ALDEBARAN 114-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46443', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46444', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46445', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46446', NULL, 'ESTILOS Y DOMINIOS GRAFICOS S.A.C.', '--', '20514831891', '', '', '20514831891', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46447', NULL, 'ESTILOS Y DOMINIOS GRAFICOS S.A.C.', '--', '20514831891', '', '', 'AV. ARGENTINA NRO. 144 INT. D-A5 OTR. LIMA CERCADO (CENTRO COMERCIAL UNICENTRO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46448', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46449', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46450', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46452', NULL, 'DANIEL ALEXANDER SOTELO PACHAS', '77076038', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46453', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46454', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46455', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46456', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46457', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46458', NULL, 'POLINPLAST S.A.C.', '--', '20505520638', '', '', 'CAL.VENANCIO AVILA NRO. 1920 URB. CHACRA RIOS SUR LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46459', NULL, 'LEI JUI KAN HENG', '--', '10098768985', '', '', 'AV. CAMINOS DEL INCA 941 SURCO-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46461', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46464', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46465', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46466', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46468', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46469', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46471', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46473', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46474', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46475', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46477', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46478', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46481', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46482', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46483', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46484', NULL, 'DIANA NICOLE GAMBOA QUISPE', '48878468', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46485', NULL, 'DIANA NICOLE GAMBOA QUISPE', '48878468', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46486', NULL, 'DIANA NICOLE GAMBOA QUISPE', '48878468', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46487', NULL, 'DIANA NICOLE GAMBOA QUISPE', '48878468', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46488', NULL, 'DIANA NICOLE GAMBOA QUISPE', '48878468', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46489', NULL, 'DIANA NICOLE GAMBOA QUISPE', '48878468', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46490', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46491', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46492', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46493', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46495', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46496', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46497', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46498', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46499', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46500', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46503', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46504', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46506', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46508', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46511', NULL, 'VARIOS', '46383618', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46512', NULL, 'SPACIO DESIGN ARQUITECTURA & DISEÑO E.I.R.L.', '--', '20608680625', '', '', 'CAL.CUERO MZA. P LOTE. 17B (PARQUE INDUSTRIAL) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46513', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46514', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46515', NULL, 'BUENMAS SAC', '--', '20609035227', '', '', 'MZA. H LOTE. 22 A.H. LUIS ALBERTO SANCHEZ LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46516', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46517', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46518', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46519', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46520', NULL, 'GLICERIO Y ARMANDO ROBLES S.A.C.', '--', '20571467454', '', '', 'AV. LOS NATURALES NRO. 639 (A 1 CDRA. DE I.E LOS NATURALES) LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46521', NULL, 'GLICERIO Y ARMANDO ROBLES S.A.C.', '--', '20571467454', '', '', 'AV. LOS NATURALES NRO. 639 (A 1 CDRA. DE I.E LOS NATURALES) LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46522', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46523', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46524', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46525', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46526', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46528', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46530', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46531', NULL, 'NEGOCIACIONES LEOPAT S.A.C.', '--', '20603036221', '', '', 'JR. 9 DE DICIEMBRE NRO. 283 CERCADO AYACUCHO - HUAMANGA - AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46532', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46533', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46534', NULL, 'JUAN ARIAS', '10230281', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46535', NULL, 'JUAN ARIAS', '10230281', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46537', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46538', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46541', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46542', NULL, 'CORPORACION DIESTRA HERMANOS S.A.C.', '--', '20609642816', '', '', 'CAL.1 MZA. C LOTE. 6 URB. VILLA LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46543', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46544', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46545', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46546', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46547', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46548', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46550', NULL, 'PALACIOS INKA COFFE EMPRESA INDIVIDUAL DE RESPONSABILID', '--', '20605733612', '', '', 'OTR.POR EL PARQUE BICENTENARIO MZA. B LOTE. 11 A.H. LOS JARDINES PIURA - SECHURA - SECHURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46551', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46552', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46553', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46554', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46555', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46556', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46557', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46558', NULL, 'ATAPOMA BALLADARES ERNESTO JESUS', '--', '10406269871', '', '', 'JR  DOMINGO CUETO 379 INT 109 LINCE - LIMA  - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46559', NULL, 'MORAN SEDANO RUBEN DARIO', '--', '10200268569', '', '', 'AV GUILLERMO  DANSE 828 CALLE 14 STAND E  223 - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46560', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46561', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46562', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46563', NULL, 'ANTARTID GLOBAL S.A.C.', '--', '20604614351', '', '', '----GR UCV 33 LOTE. 30 P.J. PROYECTO ESPECIAL HUAYCAN ZONA B LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46565', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46566', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46567', NULL, 'VARIOS', '75253241', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46568', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46569', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46570', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46571', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46573', NULL, 'VARIOS', '00000000', '20572203094', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46574', NULL, 'AMAZONIC SOLUTIONS SOCIEDAD ANONIMA CERRADA', '--', '20572203094', '', '', 'JR. AREQUIPA NRO. 322 (A 1 CDRA DEL HOSPITAL DE LLUYLLUCUCHA) SAN MARTIN - MOYOBAMBA - MOYOBAMBA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46576', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46577', NULL, 'YARA KIYAN VICTOR RAUL', '--', '10257116901', '', '', 'AV CANADA 3336 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46578', NULL, 'YARA KIYAN VICTOR RAUL', '--', '10257116901', '', '', 'AV CANADA 3336 -SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46579', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46580', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46581', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46582', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46583', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46584', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46586', NULL, 'ROSARIO AZCARATE & MARIN DELIGTHS SERVICIOS GENERALES Y', '--', '20607401986', '', '', 'AV. CIRCUNVALACIÒN NRO. 3231 DPTO. 201 URB. URBANIZACIÒN (AL COSTADO DE AGUA LA GRIETA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46587', NULL, 'ROSARIO AZCARATE & MARIN DELIGTHS SERVICIOS GENERALES Y', '--', '20607401986', '', '', 'AV. CIRCUNVALACIÒN NRO. 3231 DPTO. 201 URB. URBANIZACIÒN (AL COSTADO DE AGUA LA GRIETA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46588', NULL, 'INVERSIONES P & D SOCIEDAD ANONIMA CERRADA', '--', '20510933053', '', '', 'AV. NICOLAS DE PIEROLA NRO. 148 URB. SAN IGNACIO (ALTURA DEL OVALO BALTA) LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46589', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46591', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46592', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46593', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46595', NULL, 'DUFFO SALAZAR JOHANNA FRANCESCA', '--', '10438072450', '', '', 'AV BRASIL 1971 DPTO 702 JESUS MARIA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46596', NULL, 'DUFFO SALAZAR JOHANNA FRANCESCA', '--', '10438072450', '', '', 'AV BRASIL 1971 DPTO 702 JESUS MARIA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46597', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46598', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46599', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46600', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46601', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46602', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46603', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46604', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46605', NULL, 'NANCY CENTENO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46607', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46608', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46609', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46610', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46611', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46612', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46613', NULL, 'FANCY NAILS SALON S.R.L.', '--', '20604902909', '', '', 'JR. DANIEL HERNANDEZ NRO. 240 URB. COVIDA 1RA ETAPA LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46614', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46615', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46616', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46617', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46618', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46619', NULL, 'LICORERIA MINIMARKET RIVAS S.R.L.', '--', '20514469092', '', '', 'MZA. G1 LOTE. 14 URB. EL CARMEN (ALT. KM 42.5 ANTIGUA PANAM. SUR) LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46620', NULL, 'LICORERIA MINIMARKET RIVAS S.R.L.', '--', '20514469092', '', '', 'MZA. G1 LOTE. 14 URB. EL CARMEN (ALT. KM 42.5 ANTIGUA PANAM. SUR) LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46621', NULL, 'LICORERIA MINIMARKET RIVAS S.R.L.', '--', '20514469092', '', '', 'MZA. G1 LOTE. 14 URB. EL CARMEN (ALT. KM 42.5 ANTIGUA PANAM. SUR) LIMA - LIMA - PUNTA HERMOSA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46622', NULL, 'ZEMTEL S.A.C.', '--', '20482312684', '', '', 'MZA. F LOTE. 04 DPTO. 702 URB. LAS HORTENCIAS DE CALIFORNIA LA LIBERTAD - TRUJILLO - VICTOR LARCO HERRERA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46623', NULL, 'ZEMTEL S.A.C.', '--', '20482312684', '', '', 'MZA. F LOTE. 04 DPTO. 702 URB. LAS HORTENCIAS DE CALIFORNIA LA LIBERTAD - TRUJILLO - VICTOR LARCO HERRERA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46624', NULL, 'ZEMTEL S.A.C.', '--', '20482312684', '', '', 'MZA. F LOTE. 04 DPTO. 702 URB. LAS HORTENCIAS DE CALIFORNIA LA LIBERTAD - TRUJILLO - VICTOR LARCO HERRERA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46625', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46626', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46627', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46628', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46629', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46630', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46632', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46633', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46634', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46635', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46636', NULL, 'RAMIREZ MORAN VIRGINIA', '--', '10205446082', '', '', 'MZ D LOTE 15 LAS MERCEDES DE GLORIA -ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46637', NULL, 'RAMIREZ MORAN VIRGINIA', '--', '10205446082', '', '', 'MZ D LOTE 15 LAS MERCEDES DE GLORIA -ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46638', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46639', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46640', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46642', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46643', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46645', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46648', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46649', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46650', NULL, 'MARKET CIRCOLO SOCIEDAD ANONIMA CERRADA - MARKET CIRCOL', '--', '20492519040', '', '', '----LOS MANZANOS NRO. 259 (ALT CDRA 4 AV NICOLAS AYLLON) LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46651', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46652', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46653', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46656', NULL, 'ESPARQ CIESA CONTRATISTAS GENERALES S.A.C.', '--', '20132373524', '', '', 'AV. REPUBLICA DE COLOMBIA NRO. 185 INT. 601 (CRUCE PETIT THOUARS CON REPU DE COLOMBIA) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46658', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46660', NULL, 'AROMAS & TRADICION S.A.C.', '--', '20608367161', '', '', 'AV. CAMINOS DEL INCA NRO. 697 URB. TAMBO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46661', NULL, 'AROMAS & TRADICION S.A.C.', '--', '20608367161', '', '', 'AV. CAMINOS DEL INCA NRO. 697 URB. TAMBO DE MONTERRICO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46662', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46663', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46665', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46666', NULL, 'LCV DEL PERU S.A.C', '--', '20415410167', '', '', '----UNIDAD INMOBILIARIA 6-7 MZA. C LOTE. 3 URB. LA CONCORDIA LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46667', NULL, 'LCV DEL PERU S.A.C', '--', '20415410167', '', '', '----UNIDAD INMOBILIARIA 6-7 MZA. C LOTE. 3 URB. LA CONCORDIA LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46669', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46670', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46671', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46672', NULL, 'SEMINARIO NOREÑA GIAN MARCO', '--', '10706735599', '', '', 'PROVEEDORES UNIDOS 399 - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46673', NULL, 'SEMINARIO NOREÑA GIAN MARCO', '--', '10706735599', '', '', 'PROVEEDORES UNIDOS 399 - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46674', NULL, 'SEMINARIO NOREÑA GIAN MARCO', '--', '10706735599', '', '', 'PROVEEDORES UNIDOS 399 - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46675', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46676', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46677', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C.', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46678', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C.', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46679', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46681', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46683', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46684', NULL, 'FERNANDEZ REQUEJO ELSA', '--', '10479453298', '', '', 'AV INDEPENDENCIA 135 STA CLARA - ATE - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46685', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46687', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46688', NULL, 'HOSPEDAJE SAMAY WASI E.I.R.L.', '--', '20608930184', '', '', 'JR. JR ZAVALA NRO 310- URUBAMBA NRO. 310 JR ZAVALA NRO 310-URUBAMBA CUSCO - URUBAMBA - URUBAMBA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46689', NULL, 'HOSPEDAJE SAMAY WASI E.I.R.L.', '--', '20608930184', '', '', 'JR. JR ZAVALA NRO 310- URUBAMBA NRO. 310 JR ZAVALA NRO 310-URUBAMBA CUSCO - URUBAMBA - URUBAMBA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46690', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46693', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46694', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46695', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46697', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46698', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46699', NULL, 'VIRHUEZ ROBLES LOURDES DEL PILAR', '--', '10085626715', '', '', 'AV GRAN PAJATEN 314 URB ZARATE - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46701', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46702', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46703', NULL, 'VIRHUEZ ROBLES LOURDES DEL PILAR', '--', '10085626715', '', '', 'AV GRAMPA PAJATEN 314-URB ZARATE SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46704', NULL, 'VIRHUEZ ROBLES LOURDES DEL PILAR', '--', '10085626715', '', '', 'AV GRAMPA PAJATEN 314-URB ZARATE SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46705', NULL, 'VIRHUEZ ROBLES LOURDES DEL PILAR', '--', '10085626715', '', '', 'AV GRAN PAJATEN 314 URB ZARATE S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46706', NULL, 'VIRHUEZ ROBLES LOURDES DEL PILAR', '--', '10085626715', '', '', 'AV GRAN PAJATEN 314 URB ZARATE S.J.L', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46707', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46708', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46709', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46710', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46711', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46712', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46713', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46715', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46716', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46717', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46718', NULL, 'DUALO S.A.C.', '--', '20603059591', '', '', 'CAL.GRAL PEDRO DELGADO NRO. 490 U.POP.CONDEVILLA DEL SEÑOR LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46719', NULL, 'DUALO S.A.C.', '--', '20603059591', '', '', 'CAL.GRAL PEDRO DELGADO NRO. 490 U.POP.CONDEVILLA DEL SEÑOR LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46721', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46722', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46724', NULL, 'AR BOLO ARCE S.A.C.', '--', '20605586814', '', '', 'AV. TOMAS MARSANO NRO. 1623 URB. PROLONGACION AURORA LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46725', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46726', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46727', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46729', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46730', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46731', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46732', NULL, 'PEÑA HUAMANI CINTIA', '--', '10472916772', '', '', 'ONCE DE JUNIO MZ J LOTE 6  ASIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46733', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46734', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46735', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46737', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46738', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46739', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46740', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46741', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46742', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46743', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46745', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46746', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46748', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46749', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46751', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46752', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46753', NULL, 'NORTINPLAST E.I.R.L.', '--', '20608060490', '', '', '----VALLE HERMOSO MZA. Q LOTE. 5B VALLE HERMOSO LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46754', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46755', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46756', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46757', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46758', NULL, 'pedro enrrique moya llerena', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46759', NULL, 'FERNANDO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46760', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46761', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46762', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46765', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46766', NULL, '0083 SAN JUAN MASIAS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46767', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46768', NULL, 'SAMANEZ S.A.C.', '--', '20609959054', '', '', 'MZA. K LOTE. 1 C.P. CENTENARIO LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46769', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46770', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46771', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46772', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46775', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46777', NULL, 'GRUPO CONSSYGEST E.I.R.L.', '--', '20600189361', '', '', 'AV. GENERAL ANDRES DE SANTA CRUZ NRO. 459 DPTO. 703 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46778', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46780', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46781', NULL, 'FUENTES FRANCISCO GLOBAL SOLUTION S.A.C. - FF GLOBAL SO', '--', '20605958240', '', '', 'CAL.MANUEL RAYGADA NRO. 827 (ALT. CDRA 6 DE LA AV GUARDIA CHALACA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46782', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46783', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46784', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46785', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46786', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46791', NULL, 'QUIPUCAMAYOC CONSULTORIA ESPECIALIZADA S.A.C', '--', '20601782864', '', '', 'PQ. SAN MARTIN NRO. 270 DPTO. 504 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46792', NULL, 'QUIPUCAMAYOC CONSULTORIA ESPECIALIZADA S.A.C', '--', '20601782864', '', '', 'PQ. SAN MARTIN NRO. 270 DPTO. 504 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46795', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46797', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46799', NULL, 'INVERSIONES ESPARPER SOCIEDAD COMERCIAL DE RESPONSABILI', '--', '20537378205', '', '', 'AV. ALFREDO MENDIOLA NRO. 1400 INT. R105 LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46800', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46801', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46802', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46803', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46804', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46805', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46806', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46807', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46809', NULL, 'CEVICHERIA PIURANA \"EL PAISA\" E & E S.A.C.', '--', '20603243103', '', '', 'AV. INDEPENDENCIA NRO. 259A OTR. SANTA CLARA (PUERTA:JR RICARDO PALMA 201) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46810', NULL, 'MARIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46813', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46814', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46815', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46816', NULL, 'VII DIRECCION TERRITORIAL DE POLICIA LIMA', '--', '20383430250', '', '', 'AV. ESPANA NRO. 450 OTROS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46817', NULL, 'VII DIRECCION TERRITORIAL DE POLICIA LIMA', '--', '20383430250', '', '', 'AV. ESPANA NRO. 450 OTROS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46819', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46821', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46822', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46823', NULL, 'CALCIN FIGUEROA FELIX ALFREDO', '--', '10060203780', '', '', 'LOS GRAFITOS 224 SAN HILARION -  SAN JUAN E LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46824', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46825', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46826', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46827', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46828', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46829', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46830', NULL, 'ALVARADO HIDALGO YULISA MIRIAN', '--', '10412213845', '', '', 'URB GRUMETE MEDINA MZ K LOTE 15-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46831', NULL, 'ALVARADO HIDALGO YULISA MIRIAN', '--', '10412213845', '', '', 'URB GRUMETE MEDINA MZ K LOTE 15-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46832', NULL, 'ALVARADO HIDALGO YULISA MIRIAN', '--', '10412213845', '', '', 'URB GRUMETE MEDINA MZ K LOTE 15-ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46833', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46835', NULL, 'VARIOS', '72755924', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46836', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46837', NULL, 'ROSA PORTALLA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46838', NULL, 'ACUÑA ABAD JESSARETH SUJEY', '--', '10747102029', '', '', 'JR PALCA 251 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46839', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46840', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46841', NULL, 'CORDILLERA QUISPE LARRY UBALDO', '--', '10702855832', '', '', 'JR CONFRATERNIDAD MZ C LOTE 5 -LOS OLIVOS DE PRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46842', NULL, 'CORDILLERA QUISPE LARRY UBALDO', '--', '10702855832', '', '', 'JR CONFRATERNIDAD MZ C LOTE 5 -LOS OLIVOS DE PRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46843', NULL, 'CORDILLERA QUISPE LARRY UBALDO', '--', '10702855832', '', '', 'JR CONFRATERNIDAD MZ C LOTE 5 -LOS OLIVOS DE PRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46844', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46845', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46846', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46847', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46848', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46849', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46851', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46853', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46856', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46857', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46858', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46860', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46861', NULL, 'NEGOCIACIONES VALORIGLEY S.A.C.', '--', '20607514012', '', '', 'AV. EL NARANJAL NRO. 1063 URB. PARQUE DEL NARANJAL ET. DOS LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46862', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46866', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46868', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46869', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46870', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46871', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46872', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46873', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46875', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46876', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46877', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46879', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46880', NULL, 'ESTUDIO VIGIL OLIVEROS & ABOGADOS S.A.C.', '--', '20605339337', '', '', 'AV. SAN BORJA SUR NRO. 675 DPTO. 406 LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46881', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46883', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46885', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46887', NULL, 'CHANAME ORBE RAUL ROOSEVELT', '--', '10061528666', '', '', 'JR. MARTIN ALONZO DE MESA #193 URB. LA MAR PUEBLO LIBRE-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46888', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46893', NULL, 'Jose luis', '00000000', '', '', '', 'Lima', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46894', NULL, 'CHOCOKENNEDY S.A.C.', '--', '20602391923', '', '', 'AV. MARISCALOSCAR R BENAVIDES NRO. 400 COM. SAN MIGUEL DE MIRAFLORES (ESQUINA PASAJE SAN RAMON) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46895', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46896', NULL, 'Adriana segundo', '76022393', '', '', '', 'Cusco', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46897', NULL, 'adrana segundo bautista', '76022393', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46898', NULL, 'adriana segundo bautista', '76022393', '', '', '', 'Cusco', '1', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46899', NULL, 'Elizabeth victoria lopez parra', '41148943', '', '', '', 'Lima', '1', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46900', NULL, 'Jose luis', '00000000', '', '', '', 'Lima', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46901', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46902', NULL, 'CORPORACION GALF S.A.C.', '--', '20609612933', '', '', 'AV. CAMINOS DEL INCA NRO. 1536 INT. 15-1 URB. LAS GARDENIAS ET. UNO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46903', NULL, 'MULTISERVICIOS ORME S.A.C.', '--', '20609945363', '', '', 'MZA. P LOTE. 28 A.H. VENTANILLA ALTA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46904', NULL, 'VALDIVIA FRETEL ERICK JOSUE', '--', '10424663889', '', '', 'CALLE 28 DE JULIO 283 MAGDALENA DE MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46905', NULL, 'EMPRESA GASTRONOMICO YAKYS CAFE E.I.R.L.', '--', '20609204967', '', '', 'JR. SAN MARTIN NRO. 439 CERCADO AYACUCHO - HUAMANGA - AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46906', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46907', NULL, 'ESTUDIO BLUR SOCIEDAD ANONIMA CERRADA - ESTUDIO BLUR S.', '--', '20543600297', '', '', 'AV. DOS DE MAYO NRO. 1502 DPTO. 203 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46908', NULL, 'Delgadillo orellano jackelin', '--', '10425247242', '', '', 'Av. Manco capac 261 callao_callao', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46909', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46910', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46911', NULL, 'RAMOS MORENO ROSARIO YAJAIRA', '--', '10701697222', '', '', 'AV ERNESTO DIEZ CANSECO MZ 3 LOTE 12 - PISCO - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46912', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46913', NULL, 'Productos veganos gourmet s.a.c', '--', '20606170069', '', '', 'Jr. Pedro martimto #150 urb. Confraternidad barranco-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46914', NULL, 'Margarita flores', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46915', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46916', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46917', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46918', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46920', NULL, 'THACTO S.A.', '--', '20492455645', '', '', 'AV. JAVIER PRADO ESTE NRO. 7315 URB. MAYORAZGO ET. DOS LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46922', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46925', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46928', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46929', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46930', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46931', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46932', NULL, 'AGROINDUSTRIA PERU CULTIVA EMPRESA INDIVIDUAL DE RESPON', '--', '20547905386', '', '', 'AV. HUANDOY MZA. A LOTE. 52 A.V. SANTA ELISA (A TRES CUADRAS DE COMISARÍA LAURA CALLER) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46933', NULL, 'SAENZ CALLAN PASTOR CLIMACO', '--', '10094423819', '', '', 'AV. BRASIL #259 LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46935', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46936', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46937', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46939', NULL, 'CHAFLOC ANGELES JOSE CEFERINO', '--', '10404548714', '', '', 'AV HEROES DEL CENEPA 115 SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46940', NULL, 'CHAFLOC ANGELES JOSE CEFERINO', '--', '10404548714', '', '', 'AV HEROES DEL CENEPA 115 SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46941', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46942', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46943', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46944', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46945', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46946', NULL, 'MYR PERU S.A.C.', '--', '20600712200', '', '', 'AV. CAMINO DE AMANCAES NRO. 100 DPTO. 502 LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46947', NULL, 'MYR PERU S.A.C.', '--', '20600712200', '', '', 'AV. CAMINO DE AMANCAES NRO. 100 DPTO. 502 LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46948', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46949', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46950', NULL, '301 PRODUCCIONES S.A.C.', '--', '20605928057', '', '', 'MZA. Q LOTE. 04 ASC. SEÑOR DE LOS MILAGROS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46952', NULL, 'TOURISM INVESTMENTS OF PERU S.A.C', '--', '20602895794', '', '', 'AV. LOS PROCERES DE HUANDOY NRO. 7654 URB. PRO (PISO 1) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46953', NULL, 'TOURISM INVESTMENTS OF PERU S.A.C', '--', '20602895794', '', '', 'AV. LOS PROCERES DE HUANDOY NRO. 7654 URB. PRO (PISO 1) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46954', NULL, 'TOURISM INVESTMENTS OF PERU S.A.C', '--', '20602895794', '', '', 'AV. LOS PROCERES DE HUANDOY NRO. 7654 URB. PRO (PISO 1) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46955', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46957', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46958', NULL, 'OLIVIA GUARDIA FLORES DE LAMAS', '07365084', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46959', NULL, 'OLIVIA GUARDIA FLORES DE LAMAS', '07365084', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46960', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46961', NULL, 'AV. LOS PROCERES DE HUANDOY NRO. 7654 URB. PRO (PISO 1)', '--', '20555997001', '', '', 'JR. HUARAZ NRO. 1541 DPTO. 202 (CUADRA 7 AV BRASIL) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46962', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46963', NULL, 'LIMPIEZA Y MANTENIMIENTO VANESSA S.R.L.', '--', '20503328292', '', '', 'JR. PUERTO CHICAMA MZA. B LOTE. 27 URB. LOS CEDROS DE VILLA (TERCERA ETAPA QUINTO SECTOR) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46964', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46965', NULL, 'FLORERIAS AURORA S.A.C.', '--', '20607421804', '', '', 'AV. CAMINOS DEL INCA NRO. 1991 URB. LAS GARDENIAS ET. UNO (ALTURA CUADRA 53 DE LA AV BENAVIDES) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46966', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46967', NULL, 'SANCHEZ NUÑEZ TEODORO', '--', '10075912485', '', '', 'AV JOSE GALVES 1562 DPT 7 LINCE - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46968', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46969', NULL, 'CUFEPPERU SOCIEDAD ANONIMA CERRADA', '--', '20600788630', '', '', 'AV. INCA GARCILAZO DE LA VEGA NRO. SN (MZ.I2 LT.08 SUM.66655557) CUSCO - LA CONVENCION - PICHARI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46970', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46971', NULL, 'CUFEPPERU SOCIEDAD ANONIMA CERRADA', '--', '20600788630', '', '', 'AV. INCA GARCILAZO DE LA VEGA NRO. SN (MZ.I2 LT.08 SUM.66655557) CUSCO - LA CONVENCION - PICHARI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46972', NULL, 'VILLAVICENCIO GUARDIA WILELMO CESAR', '--', '10224625672', '', '', 'urb. los portales jr los algarrobos mzb lt13 amarilis -huanuco', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46973', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46974', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46975', NULL, 'CORMAN ADMINISTRACION DE INVERSIONES Y CONTABILIDAD GEN', '--', '20474595081', '', '', 'CAL.CALLE 3 LOTE. 8 URB. SAN FERNANDO (FRENTE AL PARQUE SAN FERNANDO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46976', NULL, 'CORMAN ADMINISTRACION DE INVERSIONES Y CONTABILIDAD GEN', '--', '20474595081', '', '', 'CAL.CALLE 3 LOTE. 8 URB. SAN FERNANDO (FRENTE AL PARQUE SAN FERNANDO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46978', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46979', NULL, 'MENDOZA ANCHAYHUA MARITZA', '--', '10430043361', '', '', 'CALLE MARSELLA MZ D LOTE 1 MICAELA BASTIDAS - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46980', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46981', NULL, 'G & K MEDICAL OXIGEN E.I.R.L.', '--', '20606784245', '', '', 'JR. ARIADNA 180 E24 NRO. 180 DPTO. 502 URB. SAGITARIO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46982', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46983', NULL, 'VILA CHAVEZ  YANDERY BEATRIZ', '41843662', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46985', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46986', NULL, 'M MAC GROUP S.A.C.', '--', '20603256914', '', '', '----HUANACAURE 911 NRO. 913 TAHUANTINSUYO (ULTIMO PARADERO DEL ALIMENTADOR TAHUANTI) LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46987', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46988', NULL, 'ALEGRE CABREJOS KARENNE LIZZETH', '--', '10406265809', '', '', 'av. marcavelica k39 la alborada piura-piura', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46989', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46990', NULL, 'GRS INVERSIONES SOCIEDAD ANONIMA CERRADA - GRS INVERSIO', '--', '20523472039', '', '', 'AV. MELGAREJO NRO. 666 URB. SANTA PATRICIA LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46991', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46992', NULL, 'DE LOS SANTOS SUERO ALBA IRIS', '--', '15603981801', '', '', 'calle 50mz m5 lt 16 urb. pro los olivos-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46993', NULL, 'VII DIRECCION TERRITORIAL DE POLICIA LIMA', '--', '20383430250', '', '', 'AV. ESPANA NRO. 450 OTROS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46996', NULL, 'BARDALES FERRANDO NORI AURORA', '--', '10052954725', '', '', 'AV. MANCO CAPAC 407 PUNCHANA -MAYNAS -LORETO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46998', NULL, 'JESUS GAS E.I.R.L.', '--', '20601170672', '', '', 'CAL.2 MZA. A LOTE. 17 A.H. HEROES DEL PACIFICO (ALT. PARQUE EL SOLDADO) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('46999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47000', NULL, 'JAHAN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47001', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47002', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47003', NULL, 'DIESTRA MURILLO CELESTINO JUAN', '--', '10084382812', '', '', 'jr. progreso 135 urb. mesa redonda s.m.p.-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47004', NULL, 'URTEAGA SIFUENTES EDWARD JONNY', '--', '10098786347', '', '', 'av. canada 3238 san borja-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47005', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47007', NULL, 'ACERO Y PROYECTOS S.A.C', '--', '20546016898', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 DPTO. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47008', NULL, 'ASOCIACION CRISTIANA PARA EL DESARROLLO SOCIAL Y SOSTEN', '--', '20496035683', '', '', 'JR. HUAYRAPONGO GRANDE MZA. L LOTE. 4A CPME. LLACANORA (FRENTE JARDIN HUAYRAPONGO GRANDE) CAJAMARCA - CAJAMARCA - LLACANORA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47010', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47011', NULL, 'NEGOCIOS TURISTICOS EL PEÑON E.I.R.L.', '--', '20605586423', '', '', 'AV. TUPAC AMARU NRO. 128 (ENTRANDO POR EL GRIFO PUCALLPA) UCAYALI - CORONEL PORTILLO - YARINACOCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47013', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47014', NULL, 'ANTICUCHERIA BAJADITA - ROSSI E.I.R.L.', '--', '20604995320', '', '', 'AV. ANTON SANCHEZ NRO. 387 URB. EL MANZANO LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47015', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47016', NULL, 'CUERPO MEDICO DEL HOSPITAL NACIONAL EDGARDO REBAGLIATI ', '--', '20462249064', '', '', 'JR. EDGARDO REBAGLIATI NRO. 155 (HOSP.EDGARDO REBAGLIATI DE ESSALUD) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47018', NULL, 'COESTI S.A.', '--', '', '', '', 'AV. CIRCUNVALACION DEL CLUB GOLF LOS INCAS NRO. 134 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE A PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47019', NULL, '- COESTI S.A.', '--', '20127765279', '', '', 'AV. CIRCUNVALACION DEL CLUB GOLF LOS INCAS NRO. 134 URB. CLUB EL GOLF LOS INCAS (EDIFICIO PANORAMA TORRE A PISO 18) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47021', NULL, 'WORK COURIER S.A.C.', '--', '20602582737', '', '', 'CAL.EDGARDO TELLO NRO. 384 P.J. JOSE CARLOS MARIATEGUI LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47022', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47023', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47024', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47025', NULL, 'MAVA´S PRINT S.A.C.S.', '--', '20608511718', '', '', 'CAL.CALLE 20 MZA. A6 LOTE. 3 URB. AÑO NUEVO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47026', NULL, 'MAVA´S PRINT S.A.C.S.', '--', '20608511718', '', '', 'CAL.CALLE 20 MZA. A6 LOTE. 3 URB. AÑO NUEVO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47027', NULL, 'MAVA´S PRINT S.A.C.S.', '--', '20608511718', '', '', 'CAL.CALLE 20 MZA. A6 LOTE. 3 URB. AÑO NUEVO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47028', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47029', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47030', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47031', NULL, 'deysi ibarra', '26220799', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47032', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47033', NULL, 'OSORIO POLO LEONARDO BRYAN', '--', '10478198294', '', '', 'MZ F1 LOTE 26 LAS FLORES DE VILLA SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47034', NULL, 'OSORIO POLO LEONARDO BRYAN', '--', '10478198294', '', '', 'MZ F1 LOTE 26 LAS FLORES DE VILLA SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47035', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47036', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47037', NULL, 'JARA ARAPA LUZ VICEN', '--', '10075082130', '', '', 'JR. MONTEVIDEO # 785 LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47038', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47039', NULL, 'CASTILLO QUISPE HORTENCIA', '--', '10181470742', '', '', 'AV REPUBLICA 943 VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47042', NULL, 'ACADEMIA PRE-CADETES BOINAS NEGRAS S.A.C.', '--', '20609436949', '', '', 'AV. SAN FELIPE NRO. 452 URB. SAN FELIPE LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47043', NULL, 'ACADEMIA PRE-CADETES BOINAS NEGRAS S.A.C.', '--', '20609436949', '', '', 'AV. SAN FELIPE NRO. 452 URB. SAN FELIPE LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47044', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47045', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47048', NULL, 'DISTRIBUIDORA Y COMERCIALIZADORA EL ENSUEñO SOCIEDAD AN', '--', '20513415037', '', '', 'CAL.RODIN NRO. 110 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47049', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47050', NULL, 'IPARRAGUIRRE CHAQUILA YESSICA DEL PILAR', '--', '10406533579', '', '', 'AV JUAN VELASCO ALVARADO 3659 VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47051', NULL, 'IPARRAGUIRRE CHAQUILA YESSICA DEL PILAR', '--', '10406533579', '', '', 'AV JUAN VELASCO ALVARADO 3659 VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47052', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47053', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47054', NULL, 'JOSE POMA', '41834379', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47055', NULL, 'AG BRANDS S.A.C.', '--', '', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 5655 DPTO. 1306 URB. MIRAFLORES LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47056', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47057', NULL, 'AG BRANDS S.A.C.', '--', '20605024476', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 5655 DPTO. 1306 URB. MIRAFLORES LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47058', NULL, '2AS. CONTRATISTAS GENERALES S.A.C.', '--', '20551185231', '', '', 'JR. MANUEL ARRISUEÑO NRO. 557 URB. SANTA CATALINA (2DO PISO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47059', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47060', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47061', NULL, 'INVERSIONES Y SERVICIOS GENERALES D´MORITA S.A.C.', '--', '20609791803', '', '', 'JR. SUCRE NRO. 708 (UNA CUADRA ARRIBA DE LA UNSM PUERTA 1) SAN MARTIN - SAN MARTIN - MORALES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47062', NULL, 'INVERSIONES Y SERVICIOS GENERALES D´MORITA S.A.C.', '--', '20609791803', '', '', 'JR. SUCRE NRO. 708 (UNA CUADRA ARRIBA DE LA UNSM PUERTA 1) SAN MARTIN - SAN MARTIN - MORALES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47063', NULL, 'INVERSIONES Y SERVICIOS GENERALES D´MORITA S.A.C.', '--', '20609791803', '', '', 'JR. SUCRE NRO. 708 (UNA CUADRA ARRIBA DE LA UNSM PUERTA 1) SAN MARTIN - SAN MARTIN - MORALES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47068', NULL, 'DICARMA S.A.C.', '--', '20556991601', '', '', 'MZA. M LOTE. 8B C.P. HTOS DE MANCHAY SECTOR VILLA HERMOSA LIMA - LIMA - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47069', NULL, 'maria minaya', '15648735', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47070', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47071', NULL, 'MONTALVO CAMPOS CARLA CARINA', '--', '10068045911', '', '', 'RODOLFO RUTTE 120 MAGDALENA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47072', NULL, 'MONTALVO CAMPOS CARLA CARINA', '--', '10068045911', '', '', 'RODOLFO RUTTE 120 MAGDALENA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47073', NULL, 'MONTALVO CAMPOS CARLA CARINA', '--', '10068045911', '', '', 'RODOLFO RUTTE 120 MAGDALENA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47074', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47075', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47076', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47078', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47079', NULL, 'BETY ROJAS', '20173638', '', '', '', 'SAN ALEJANDRO-IRAZOLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47080', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47081', NULL, 'CONSORCIO ELECTROMERCADER S.A.C.', '--', '20545727430', '', '', 'AV. ABANCAY NRO. 979 INT. 108 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47082', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47083', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47085', NULL, 'PUNTO FIT E.I.R.L.', '--', '20604758221', '', '', '----PLATANAL MZA. S-5 LOTE. 1D URB. LOS ROSALES DE SAN ANDRES LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47086', NULL, 'PUNTO FIT E.I.R.L.', '--', '20604758221', '', '', '----PLATANAL MZA. S-5 LOTE. 1D URB. LOS ROSALES DE SAN ANDRES LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47087', NULL, 'PUNTO FIT E.I.R.L.', '--', '20604758221', '', '', '----PLATANAL MZA. S-5 LOTE. 1D URB. LOS ROSALES DE SAN ANDRES LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47088', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47089', NULL, 'MARINA CONDORI GOZME', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47090', NULL, 'ROSALES PRUDENCIO KARINA PATRICIA', '--', '10432356481', '', '', 'HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47091', NULL, 'TEGOLA COVERING E.I.R.L.', '--', '20602966390', '', '', 'MZA. B LOTE. 8 COO. DE VIV. MANTARO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47092', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47093', NULL, 'GLORIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47094', NULL, 'ALVA MALAVER JOSE ALAMIRO', '--', '10097953142', '', '', 'AV. AGUSTIN GAMARRA 705 CHICUITO CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47095', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47096', NULL, 'INVERSIONES LOSUY E.I.R.L.', '--', '20569331235', '', '', 'JR. MANUEL VILLAVICENCIO NRO. 417 CASCO URBANO (MEDIA CDRA PLAZA DE ARMAS) ANCASH - SANTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47097', NULL, 'INVERSIONES LOSUY E.I.R.L.', '--', '20569331235', '', '', 'JR. MANUEL VILLAVICENCIO NRO. 417 CASCO URBANO (MEDIA CDRA PLAZA DE ARMAS) ANCASH - SANTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47098', NULL, 'INVERSIONES LOSUY E.I.R.L.', '--', '20569331235', '', '', 'JR. MANUEL VILLAVICENCIO NRO. 417 CASCO URBANO (MEDIA CDRA PLAZA DE ARMAS) ANCASH - SANTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47099', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47100', NULL, 'GRUPO MICROMASTER S.A.C.', '--', '20537897571', '', '', 'AV. PETIT THOUARS NRO. 5358 INT. 1038 (A 2 CDRA DEL OVALO DE LA AV. AREQUIPA) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47101', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47102', NULL, 'INVERSIONES S&S&G E.I.R.L.', '--', '20608054023', '', '', 'CAL.EL OLIVAR MZA. G LOTE. 18 LOT. EL OLIVAR (CERCA A MEGA PLAZA HUARAL) LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47104', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47105', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47106', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47107', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47108', NULL, 'CANDIA QUINTANILLA TEOFILA', '--', '10250193616', '', '', 'AV LA CULTURA SEGUNDA CUADRA PICHARI LA CONVENCION - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47109', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47110', NULL, 'VIDA VISION & SALUD S.A.C.', '--', '20607937932', '', '', 'AV. MANUEL G. PRADA NRO. 680 URB. VILLA LOS ANGELES LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47112', NULL, 'PIERINA MILLA PORTUGUES', '47154838', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47113', NULL, 'PIERINA MILLA PORTUGUES', '47154838', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47114', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47115', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47116', NULL, 'MIRANDA ALVARADO JULIO CESAR', '--', '10101310731', '', '', 'TINYAHUARCO - PISCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47117', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47119', NULL, 'ABARCA OLIVERA MAYKA ELOISA', '--', '10098253543', '', '', 'JR. LINO MENDOZA MZ T1 LT26 URB HONOR Y LEALTAD SURCO-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47120', NULL, 'HERRERA CANDELARIO STEFANY LISSET', '--', '10467068747', '', '', 'AV AVIACION 569 - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47121', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47122', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47123', NULL, 'LILIANA CHIU', '08885997', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47124', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47125', NULL, 'BODY SLENDER SOCIEDAD ANONIMA CERRADA', '--', '20513853573', '', '', 'AV. PETIT THOUARS NRO. 4464 DPTO. 201 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47127', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47128', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47129', NULL, 'RED CHICKEN E.I.R.L.', '--', '20603673281', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 640 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47131', NULL, 'ELSA HERRERA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47132', NULL, 'ELSA HERRERA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47133', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47134', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47135', NULL, 'FLOR MEJIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47136', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47137', NULL, 'NORMA SANCHEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47138', NULL, 'NORMA SANCHEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47139', NULL, 'NORMA SANCHEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47140', NULL, 'NORMA SANCHEZ', '07087783', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47141', NULL, 'NORMA SANCHEZ', '07087783', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47142', NULL, 'NORMA SANCHEZ', '07087783', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47144', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47145', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47147', NULL, 'JJEM & ROSITA S.A.C.', '--', '20547357079', '', '', 'JR. MONTEVIDEO NRO. 936 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47148', NULL, 'JJEM & ROSITA S.A.C.', '--', '20547357079', '', '', 'JR. MONTEVIDEO NRO. 936 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47149', NULL, 'JJEM & ROSITA S.A.C.', '--', '20547357079', '', '', 'JR. MONTEVIDEO NRO. 936 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47150', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47151', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47152', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47153', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47156', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47157', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47158', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47159', NULL, 'FASSE BUILDERS S.A.C.', '--', '20606431717', '', '', 'AV. 10 DE JUNIO NRO. 1020 DPTO. 1012 (CONDOMINIO PASEO SAN MARTÍN) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47160', NULL, 'FASSE BUILDERS S.A.C.', '--', '20606431717', '', '', 'AV. 10 DE JUNIO NRO. 1020 DPTO. 1012 (CONDOMINIO PASEO SAN MARTÍN) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47161', NULL, 'FASSE BUILDERS S.A.C.', '--', '20606431717', '', '', 'AV. 10 DE JUNIO NRO. 1020 DPTO. 1012 (CONDOMINIO PASEO SAN MARTÍN) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47162', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47163', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47164', NULL, 'VALDEZ VALDEZ ELIZABETH', '--', '10257536888', '', '', 'AV EL OLIVAR MZ T LOTE 33 URB EL CONDOR- CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47165', NULL, 'VALDEZ VALDEZ ELIZABETH', '--', '10257536888', '', '', 'AV EL OLIVAR MZ T LOTE 33 URB EL CONDOR- CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47166', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47167', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47168', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47169', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47170', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47171', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47172', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C.', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47173', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C.', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47174', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C.', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47176', NULL, 'CORPORACION EDUCATIVA GALVEZ RAMOS S.A.C. - CORGALSAC', '--', '20551271316', '', '', 'CAL.PUERTO LLANO NRO. 121 URB. MAYORAZGO CHICO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47177', NULL, 'CALDERON FLORES ROCIO', '--', '10420471438', '', '', 'JR POSEIDON 136 SURCO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47178', NULL, 'CALDERON FLORES ROCIO', '--', '10420471438', '', '', 'JR POSEIDON 136 SURCO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47179', NULL, 'CALDERON FLORES ROCIO', '--', '10420471438', '', '', 'JR POSEIDON 136 SURCO -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47180', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47181', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47182', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47183', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47184', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47185', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47186', NULL, 'SOTO RONQUILLO GLADYS AQUILA', '--', '10103477323', '', '', 'MIGUEL ORTIZ 492 -LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47187', NULL, 'SOTO RONQUILLO GLADYS AQUILA', '--', '10103477323', '', '', 'MIGUEL ORTIZ 492 -LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47189', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47190', NULL, 'CONTRERAS MARTINEZ VILMA MERCEDES', '--', '10212720408', '', '', 'LA OROYA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47192', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47193', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47194', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47195', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47196', NULL, 'EDWARD MIRANDA', '40935682', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47197', NULL, 'EDWARD MIRANDA', '40935682', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47198', NULL, 'EDWARD MIRANDA', '40935682', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47199', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47200', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47201', NULL, 'FLOR URIARTE', '25430068', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47202', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47203', NULL, 'LANDAURO MONTES ARQUIMEDES AUGUSTO', '--', '10063889321', '', '', 'PANAMERICANA KILOMETRO 62 CHILCA CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47204', NULL, 'LANDAURO MONTES ARQUIMEDES AUGUSTO', '--', '10063889321', '', '', 'PANAMERICANA KILOMETRO 62 CHILCA CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47206', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47207', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47208', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47209', NULL, 'INVERSIONES MANUEL SEGURA S.A.C', '--', '20601486874', '', '', 'JR. MANUEL ASCENCIO SEGURA NRO. 137 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47210', NULL, 'INVERSIONES MANUEL SEGURA S.A.C', '--', '20601486874', '', '', 'JR. MANUEL ASCENCIO SEGURA NRO. 137 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47211', NULL, 'INVERSIONES MANUEL SEGURA S.A.C', '--', '20601486874', '', '', 'JR. MANUEL ASCENCIO SEGURA NRO. 137 URB. SANTA BEATRIZ LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47212', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47213', NULL, 'SYNCRO PERU E.I.R.L.', '--', '20610040251', '', '', 'CAL.SAN MARTIN NRO. 665 DPTO. 201 URB. MIRAFLORES LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47214', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47215', NULL, 'INDUSTRIA PERUANA DE CALCETINES S.A.C.', '--', '20605417001', '', '', 'AV. ALFREDO BENAVIDES NRO. 768 INT. 302 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47216', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47217', NULL, 'AGAEL JAIVIN SOCIEDAD ANONIMA CERRADA - AGAJAIVI S.A.C.', '--', '20605598553', '', '', 'AV. PRINCIPAL MZA. DL 1 LOTE. 16 A URB. CANTO GRANDE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47218', NULL, 'AGAEL JAIVIN SOCIEDAD ANONIMA CERRADA - AGAJAIVI S.A.C.', '--', '20605598553', '', '', 'AV. PRINCIPAL MZA. DL 1 LOTE. 16 A URB. CANTO GRANDE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47219', NULL, 'AGAEL JAIVIN SOCIEDAD ANONIMA CERRADA - AGAJAIVI S.A.C.', '--', '20605598553', '', '', 'AV. PRINCIPAL MZA. DL 1 LOTE. 16 A URB. CANTO GRANDE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47222', NULL, 'CORPORACION PERU GRASS S.A.C.', '--', '20523081196', '', '', 'AV. PETIT THOUARS NRO. 4715 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47223', NULL, 'SNEIDER S.A.C.', '--', '20550771935', '', '', 'JR. BERNARDO ALCEDO NRO. 231 DPTO. LIMA URB. COLLIQUE LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47224', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47225', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47227', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47228', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47229', NULL, 'ELVIN ZAPATEL', '76248504', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47232', NULL, 'MARILEY HUARCAYA HUAMANI', '46941407', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47233', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47234', NULL, 'isabel trujillo', '09351512', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47235', NULL, 'isabel trujillo', '09351512', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47236', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47237', NULL, 'COLEGIO PRIVADO SAN BASILIO E.I.R.L.', '--', '20388934591', '', '', 'AV. LAS PALMAS LT 28Y2 NRO. MZR1 URB. MAYORAZGO (POR EL NUEVO ESTADIO DE UNIVERSITARIO) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47238', NULL, 'VARIOS', '47458985', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47240', NULL, 'RENZO  GUERRERA', '06805384', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47241', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47242', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47243', NULL, 'CONCRETERA TERRALPA S.A.C.', '--', '20606660333', '', '', 'JR. LIBERTAD NRO. 859 INT. D URB. CALVARIO AYACUCHO - HUAMANGA - AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47244', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47245', NULL, 'GRUPO FE HOLDING SOCIEDAD COMERCIAL DE RESPONSABILIDAD ', '--', '20101976867', '', '', 'AV. JAVIER PRADO ESTE NRO. 3580 URB. JAVIER PRADO LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47246', NULL, 'GRUPO FE HOLDING SOCIEDAD COMERCIAL DE RESPONSABILIDAD ', '--', '20101976867', '', '', 'AV. JAVIER PRADO ESTE NRO. 3580 URB. JAVIER PRADO LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47247', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47248', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47249', NULL, 'ACR IMPORTACIONES GENERALES E.I.R.L.', '--', '20524657296', '', '', 'MZA. J LOTE. 8 ASO VIRGEN DE LAS NIEVES (ALT. COLEGIO LEGION CACERES) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47251', NULL, 'CONSORCIO MEDITERRANEO S.A.C.', '--', '20553255881', '', '', 'AV. SIETE NRO. 229 URB. RINCONADA BAJA (A TRES CUADRAS DE MOLICENTRO) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47252', NULL, 'CONSORCIO MEDITERRANEO S.A.C.', '--', '20553255881', '', '', 'AV. SIETE NRO. 229 URB. RINCONADA BAJA (A TRES CUADRAS DE MOLICENTRO) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47253', NULL, 'CONSORCIO MEDITERRANEO S.A.C.', '--', '20553255881', '', '', 'AV. SIETE NRO. 229 URB. RINCONADA BAJA (A TRES CUADRAS DE MOLICENTRO) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47254', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47255', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47256', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47257', NULL, 'MAQUERA TERROBA SIGRID', '--', '10422423961', '', '', 'AV SAN LUIS 1558 SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47258', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47259', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47260', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47261', NULL, 'LOGISTIC QUALITY SERVICE TELECOMMUNICATIONS S.A.C. - L.', '--', '20555056754', '', '', 'MZA. D3 LOTE. 16 URB. CIUDAD DEL PESCADOR (CRUCE DE LA CALLE 26 CON LA AV. DOS) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47262', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47263', NULL, 'MULTISERVICIOS MAICELO S.A.C.', '--', '20607405817', '', '', 'CAL.MAYOR ARMANDO BLONDET NRO. 149 URB. SANTA ANA LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47264', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47265', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47266', NULL, '- AQUINO HUAMAN FLORA DORIS', '--', '10075206441', '', '', 'mze lt5 urb. huayllay- ate vitarte-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47268', NULL, 'CUADROS CORDTS JOSE CARLOS', '--', '10416091850', '', '', 'PARURO 1270 INT 212  PISO 2  LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47270', NULL, 'COSMOS ENGLISH INSTITUTE S.A.C.', '--', '20606103418', '', '', 'CAL.PEDRO REMY NRO. 160 URB. INGENIERIA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47272', NULL, 'milagros quintanilla', '09575959', '', '', '', 'san juan de miraflores', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47273', NULL, 'SEBASTIAN CELIS FLESH WILDER', '--', '10442865928', '', '', 'MERCADO CENTRAL - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47274', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47275', NULL, 'Mercedes', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47276', NULL, 'ILARES QUISPE IRMA FIORELLA', '--', '10764558290', '', '', 'CAL. CALLEJON MOLINO DE GATO 200 COO. PARQUE CENTRAL INT 1105 LIMA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47277', NULL, 'ILARES QUISPE IRMA FIORELLA', '--', '10764558290', '', '', 'CAL. CALLEJON MOLINO DE GATO 200 COO. PARQUE CENTRAL INT 1105 LIMA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47278', NULL, 'ILARES QUISPE IRMA FIORELLA', '--', '10764558290', '', '', 'CAL. CALLEJON MOLINO DE GATO 200 COO. PARQUE CENTRAL INT 1105 LIMA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47280', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47281', NULL, 'VALLES ARANDA GLIDER', '--', '10107261074', '', '', 'JR HUANUCO PROLONGACION 1362 LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47282', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47283', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47284', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47285', NULL, 'MAZ-SERVICIOS PUBLICITARIOS E.I.R.L.', '--', '20604020612', '', '', 'MZA. D LOTE. 29 URB. SANTA ELISA ETP I (ALT DE CDRA 30 AV JOSE GRANDA) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47287', NULL, 'GERSY CABRERA M.', '25800400', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47288', NULL, 'GERSY CABRERA M.', '25800400', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47289', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47290', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47291', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47292', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47294', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47295', NULL, 'INVERSIONES GASTRONOMICAS TOCAS S.A.C.', '--', '20602072313', '', '', 'AV. PROCERES DE LA INDEPENDENCIA NRO. 2292 URB. SAN HILARION ET. UNO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47296', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47297', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47298', NULL, 'RAVELLO VASQUEZ KARLA ANDREA', '--', '10708291507', '', '', 'BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47300', NULL, 'V & S GESTIONES Y SOLUCIONES INTEGRALES S.A.C.', '--', '20609149711', '', '', 'OTR.DANIEL ALCIDES CARRION MZA. S1 LOTE. 11 A.H. DANIEL ALCIDES CARRION (ESPALDA DE PLAZA VEA) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47301', NULL, 'V & S GESTIONES Y SOLUCIONES INTEGRALES S.A.C.', '--', '20609149711', '', '', 'OTR.DANIEL ALCIDES CARRION MZA. S1 LOTE. 11 A.H. DANIEL ALCIDES CARRION (ESPALDA DE PLAZA VEA) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47302', NULL, 'V & S GESTIONES Y SOLUCIONES INTEGRALES S.A.C.', '--', '20609149711', '', '', 'OTR.DANIEL ALCIDES CARRION MZA. S1 LOTE. 11 A.H. DANIEL ALCIDES CARRION (ESPALDA DE PLAZA VEA) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47303', NULL, 'V & S GESTIONES Y SOLUCIONES INTEGRALES S.A.C.', '--', '20609149711', '', '', 'OTR.DANIEL ALCIDES CARRION MZA. S1 LOTE. 11 A.H. DANIEL ALCIDES CARRION (ESPALDA DE PLAZA VEA) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47304', NULL, 'V & S GESTIONES Y SOLUCIONES INTEGRALES S.A.C.', '--', '20609149711', '', '', 'OTR.DANIEL ALCIDES CARRION MZA. S1 LOTE. 11 A.H. DANIEL ALCIDES CARRION (ESPALDA DE PLAZA VEA) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47305', NULL, 'INVERSIONES DANILO S.A.C.', '--', '20543883817', '', '', 'AV. NICOLAS AYLLON NRO. 701 URB. LOS HALCONES LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47306', NULL, 'INVERSIONES DANILO S.A.C.', '--', '20543883817', '', '', 'AV. NICOLAS AYLLON NRO. 701 URB. LOS HALCONES LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47307', NULL, 'INVERSIONES DANILO S.A.C.', '--', '20543883817', '', '', 'AV. NICOLAS AYLLON NRO. 701 URB. LOS HALCONES LIMA - LIMA - CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47309', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47310', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47311', NULL, 'JULIO VILLACORTA', '18196965', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47312', NULL, 'jose ortiz rivera', '10611357', '', '', '', 'lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47313', NULL, 'BOLO DELGADO RAUL MICHAEL', '--', '10421480821', '', '', 'AV TACNA 613 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47314', NULL, 'BOLO DELGADO RAUL MICHAEL', '--', '10421480821', '', '', 'AV TACNA 613 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47315', NULL, 'BOLO DELGADO RAUL MICHAEL', '--', '10421480821', '', '', 'AV TACNA 613 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47316', NULL, 'A & S CONTADORES Y CONSULTORES E.I.R.L.', '--', '20602020445', '', '', 'JR. TRABAJO MZA. B LOTE. 23 A.V. OLIVAR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47317', NULL, 'A & S CONTADORES Y CONSULTORES E.I.R.L.', '--', '20602020445', '', '', 'JR. TRABAJO MZA. B LOTE. 23 A.V. OLIVAR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47318', NULL, 'A & S CONTADORES Y CONSULTORES E.I.R.L.', '--', '20602020445', '', '', 'JR. TRABAJO MZA. B LOTE. 23 A.V. OLIVAR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47319', NULL, 'GALLARDO MAZA ELIANA ROSMERY', '--', '10466345046', '', '', 'CALLE 6 DE ENERO MZ K LOTE 13 NAVIDAD DE VILLA CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47321', NULL, 'OLIVOS SOLIS MIGUEL OSCAR', '--', '10080909085', '', '', 'CALLE  PRESA 134 RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47322', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47323', NULL, 'AWKAS CLUB GYM-HUARAZ E.I.R.L - AWKAS GYM E.I.R.L.', '--', '20610282947', '', '', 'JR. MARIANO MELGAR NRO. 130 BAR. CENTENARIO - INDEPENDENCIA (LA SEGUNDA ESQUINA DEL PUENTE COMERCIO.) ANCASH - HUARAZ - HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47324', NULL, 'MALATESTA VELASQUEZ JOHANNA MARIA', '--', '10468209468', '', '', 'PASAJE EL SOL 397- CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47325', NULL, 'MALATESTA VELASQUEZ JOHANNA MARIA', '--', '10468209468', '', '', 'PASAJE EL SOL 397- CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47326', NULL, 'MALATESTA VELASQUEZ JOHANNA MARIA', '--', '10468209468', '', '', 'PASAJE EL SOL 397- CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47327', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47328', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47329', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47330', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47331', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47332', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47334', NULL, 'INVERSIONES THERON S.A.C.', '--', '20602721575', '', '', 'JR. AYACUCHO NRO. 513 INT. 307 CENTRO CERCADO LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47335', NULL, 'INVERSIONES THERON S.A.C.', '--', '20602721575', '', '', 'JR. AYACUCHO NRO. 513 INT. 307 CENTRO CERCADO LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47336', NULL, 'VIFRE RESTOBAR SOCIEDAD ANONIMA CERRADA', '--', '20608413872', '', '', 'JR. -BOLIVIA MZA. A LOTE. 31 UCAYALI - CORONEL PORTILLO - YARINACOCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47337', NULL, 'INVERSIONES THERON S.A.C.', '--', '20602721575', '', '', 'JR. AYACUCHO NRO. 513 INT. 307 CENTRO CERCADO LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47338', NULL, 'INVERSIONES THERON S.A.C.', '--', '20602721575', '', '', 'JR. AYACUCHO NRO. 513 INT. 307 CENTRO CERCADO LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47339', NULL, 'CHI MI CHURRI RESTO BAR EIRL', '--', '20608017241', '', '', 'AV. AUGUSTO FREYRE NRO. 1314 (A LA SIGUIENTE CUADRA ELECTRORIENTE) LORETO - MAYNAS - PUNCHANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47340', NULL, 'JULIO OCAÑA', '25813046', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47341', NULL, 'CASA COMERCIAL WONG S R LTDA', '--', '20100632218', '', '', 'JR. PUNO NRO. 684 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47342', NULL, 'TORRES YARINGAÑO JACKELINE JANNET', '43889839', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47343', NULL, 'ADA MARCELA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47345', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47346', NULL, 'CAMPOS MONTALVAN KAREN STEFANNY', '--', '10478064182', '', '', 'FUNDO SANTA ARELA S/N NUEVA IMPERIAL-CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47347', NULL, 'CAMPOS MONTALVAN KAREN STEFANNY', '--', '10478064182', '', '', 'FUNDO SANTA ARELA S/N NUEVA IMPERIAL-CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47348', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47349', NULL, 'LA 1423 RESTOBAR E.I.R.L.', '--', '20609200279', '', '', 'AV. SAN MARTIN NRO. 1423 ICA - PISCO - PISCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47350', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47351', NULL, 'TECNOLOGIA TERMICA S.A.C.', '--', '20390881003', '', '', 'JR. JOSE OLAYA NRO. 308 (AV MORALES DUAREZ) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CARMEN DE LA LEGUA REYNOSO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47352', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47353', NULL, 'GISELIN', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47354', NULL, 'GERHSON WILLDER CUNEO MACINES', '25792720', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47355', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47356', NULL, 'MINERA CONSTRUCCION Y TRANSPORTE LA LIBERTAD S.R.L.', '--', '20390962348', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 1304 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47357', NULL, 'MINERA CONSTRUCCION Y TRANSPORTE LA LIBERTAD S.R.L.', '--', '20390962348', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 1304 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47358', NULL, 'MINERA CONSTRUCCION Y TRANSPORTE LA LIBERTAD S.R.L.', '--', '20390962348', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 1304 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47359', NULL, 'MINERA CONSTRUCCION Y TRANSPORTE LA LIBERTAD S.R.L.', '--', '20390962348', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 1304 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47361', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47363', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47364', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47365', NULL, 'MAMANI QUISPE LUCY', '--', '10737019816', '', '', 'AV. PACHACUTEC LT14  MACHU PICCHU-CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47366', NULL, 'MINERA CONSTRUCCION Y TRANSPORTE LA LIBERTAD S.R.L.', '--', '20390962348', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 1304 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47367', NULL, 'MINERA CONSTRUCCION Y TRANSPORTE LA LIBERTAD S.R.L.', '--', '20390962348', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 1304 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47368', NULL, 'MINERA CONSTRUCCION Y TRANSPORTE LA LIBERTAD S.R.L.', '--', '20390962348', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 116 INT. 1304 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47369', NULL, 'ANSERTECH PERU S.A.C.', '--', '20600293321', '', '', 'AV. LOS DOMINICOS NRO. 691 URB. JORGE CHAVEZ IIET PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47370', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47371', NULL, 'ALICIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47372', NULL, 'ALICIA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47373', NULL, 'LUIS VARGAS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47374', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47375', NULL, 'LUIS VARGAS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47376', NULL, 'LUIS VARGAS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47377', NULL, 'PETRONILA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47379', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47380', NULL, 'JESUS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47381', NULL, 'JESUS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47382', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47383', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47384', NULL, 'CENTRO VIDA ESTETIC SOL SOCIEDAD ANONIMA CERRADA', '--', '20607318728', '', '', 'CAL.SIMON BOLIVAR NRO. 455 URB. LEURO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47385', NULL, 'SALOME QUILCA HECTOR', '--', '10418439381', '', '', 'MZ 106 LOTE 20 GRUPO 14 SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47386', NULL, 'JESUS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47387', NULL, 'DISTRIBUCION DE BLACKBERRY & BLUEBERRIES E.I.R.L.', '--', '20606149329', '', '', 'CAL.PASAJE 21 MZA. H5 LOTE. 03 DPTO. LIMA A.H. A.H. PORTADA III MANCHAY LIMA - LIMA - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47388', NULL, 'CARLOS HUAMAN', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47389', NULL, 'MIGUEL JULCA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47390', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47391', NULL, 'CENTRO VIDA ESTETIC SOL SOCIEDAD ANONIMA CERRADA', '--', '20607318728', '', '', 'CAL.SIMON BOLIVAR NRO. 455 URB. LEURO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47392', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47393', NULL, 'JOMEL CONTRERAS', '71922474', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47394', NULL, 'ABRAHAM', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47395', NULL, 'ABRAHAM', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47396', NULL, 'ABRAHAM', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47397', NULL, 'CHOU GASPER', '80002430', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47398', NULL, 'CHOU GASPER', '80002430', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47399', NULL, 'CHOU GASPER', '80002430', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47400', NULL, 'CORPORACION DAIL S.A.C.', '--', '20609799120', '', '', 'JR. RESTAURACION NRO. 413 DPTO. 1105 URB. BREÑA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47401', NULL, 'CORPORACION DAIL S.A.C.', '--', '20609799120', '', '', 'JR. RESTAURACION NRO. 413 DPTO. 1105 URB. BREÑA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47402', NULL, 'CORPORACION DAIL S.A.C.', '--', '20609799120', '', '', 'JR. RESTAURACION NRO. 413 DPTO. 1105 URB. BREÑA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47403', NULL, 'GRUPO MICROMASTER S.A.C.', '--', '20537897571', '', '', 'AV. PETIT THOUARS NRO. 5358 INT. 1038 (A 2 CDRA DEL OVALO DE LA AV. AREQUIPA) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47404', NULL, 'ENRIQUE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47405', NULL, 'LUCILA FLORES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47406', NULL, 'LUCILA FLORES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47409', NULL, 'Varios', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47410', NULL, 'Varios', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47411', NULL, ' A & P SERVICIOS GENERALES DESIGN S.A.C.', '--', '20603163975', '', '', 'MZA. N LOTE. 24 SEC. 1 GRUPO 22 (AV. MODELO HOSPITAL SOLIDARIDAD) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47412', NULL, ' A & P SERVICIOS GENERALES DESIGN S.A.C.', '--', '20603163975', '', '', 'MZA. N LOTE. 24 SEC. 1 GRUPO 22 (AV. MODELO HOSPITAL SOLIDARIDAD) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47413', NULL, 'CHINA GEZHOUBA GROUP COMPANY LIMITED SUCURSAL PERU', '', '20602371442', '', '', 'AV. FELIPE PARDO Y ALIAGA NRO. 695 DPTO. 301 URB. SANTA CRUZ LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '0', '1', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47414', NULL, 'CHINA GEZHOUBA GROUP COMPANY LIMITED SUCURSAL PERU', '', '20602371442', '', '', 'AV. FELIPE PARDO Y ALIAGA NRO. 695 DPTO. 301 URB. SANTA CRUZ - LIMA LIMA SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '2', '6', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47416', NULL, 'CHINA GEZHOUBA GROUP COMPANY LIMITED SUCURSAL PERU', '--', '20602371442', '', '', 'AV. FELIPE PARDO Y ALIAGA NRO. 695 DPTO. 301 URB. SANTA CRUZ LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47417', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47418', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47419', NULL, 'CHINA GEZHOUBA GROUP COMPANY LIMITED SUCURSAL PERU', '--', '20602371442', '', '', 'AV. FELIPE PARDO Y ALIAGA NRO. 695 DPTO. 301 URB. SANTA CRUZ LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47420', NULL, 'INVERSIONES S&S&G E.I.R.L.', '--', '20608054023', '', '', 'CAL.EL OLIVAR MZA. G LOTE. 18 LOT. EL OLIVAR (CERCA A MEGA PLAZA HUARAL) LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47421', NULL, 'CORPORACION DAIL S.A.C.', '--', '20609799120', '', '', 'JR. RESTAURACION NRO. 413 DPTO. 1105 URB. BREÑA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47422', NULL, 'PETRONILA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47423', NULL, 'A & P SERVICIOS GENERALES DESIGN S.A.C.', '--', '20603163975', '', '', 'MZA. N LOTE. 24 SEC. 1 GRUPO 22 (AV. MODELO HOSPITAL SOLIDARIDAD) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47424', NULL, 'BENIQUE RAMOS SERAFINO', '--', '10304854575', '', '', 'URB LOS OLIVOS LOTE 1  - JULIACA - PUNO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47425', NULL, 'CONFECCIONES CASTRO EMPRESA INDIVIDUAL DE RESPONSABILID', '--', '20512021477', '', '', 'CAL.20 MZA. K LOTE. 19 A.H. VILLA LOS REYES SECT 1 (ALT- KM 37 PANAMERICANA NORTE) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47426', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47427', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47428', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47429', NULL, 'COMUNIDAD CAMPESINA DE POMACOCHA', '--', '20120389760', '', '', 'JR. HUAROCHIRI NRO. S/N CAS. POMACOCHA (S.71872291-FTE DEL PARQUE PRINCIPAL) JUNIN - YAULI - YAULI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47430', NULL, 'LUIS ANTONIO GUTIERREZ GONZALES', '06384946', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47431', NULL, 'FLOR CACERES', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47432', NULL, 'LA PIRAMIDE CON ELEGANCIA EN LAS ALTURAS T & M S.A.C.', '--', '20606811811', '', '', 'MZA. D21 LOTE. 15 URB. MARISCAL CACERES LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47433', NULL, 'LA PIRAMIDE CON ELEGANCIA EN LAS ALTURAS T & M S.A.C.', '--', '20606811811', '', '', 'MZA. D21 LOTE. 15 URB. MARISCAL CACERES LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47434', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47436', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47437', NULL, 'FABRICA DE FIDEOS EL TRIUNFO S A', '--', '20100286981', '', '', 'JR. PASTAZA NRO. 757 URB. AZCONA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47438', NULL, 'CONCEPTA CONSULTING S.A.C.', '--', '20600793030', '', '', 'AV. ALFREDO BENAVIDES NRO. 4887 INT. 202 URB. PROLONGACION BENAVIDES (A MEDIA CUADRA DE LA AV. VELASCO ASTETE) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47439', NULL, 'GOMEZ', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47440', NULL, 'DELGADO BUITRON LIODAN', '--', '10445043040', '', '', 'MZ F 2 LOTE 9 - S.M.P', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47441', NULL, 'MARTHA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47442', NULL, 'MARTHA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47443', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47444', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47445', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47446', NULL, 'MARTHA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47447', NULL, 'MARTHA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47448', NULL, 'GEYSER MENDOZA SAUCEDO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47449', NULL, 'ABARCA CARRION SUSAN LILIANA', '--', '10471110600', '', '', 'SAN BORJA SUR 612- SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47450', NULL, 'ABARCA CARRION SUSAN LILIANA', '--', '10471110600', '', '', 'SAN BORJA SUR 612- SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47451', NULL, 'GEYSER MENDOZA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47452', NULL, 'EXPRESO CATA TOURS S.A.C.', '--', '20608140965', '', '', 'CAL.LAS CUCARDAS MZA. C LOTE. 8 A.V. SOL DE LAS VIÑAS (ALT. KM 11.5 CARRETERA CENTRAL -PDO CASE) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47453', NULL, 'EXPRESO CATA TOURS S.A.C.', '--', '20608140965', '', '', 'CAL.LAS CUCARDAS MZA. C LOTE. 8 A.V. SOL DE LAS VIÑAS (ALT. KM 11.5 CARRETERA CENTRAL -PDO CASE) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47454', NULL, 'EXPRESO CATA TOURS S.A.C.', '--', '20608140965', '', '', 'CAL.LAS CUCARDAS MZA. C LOTE. 8 A.V. SOL DE LAS VIÑAS (ALT. KM 11.5 CARRETERA CENTRAL -PDO CASE) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47455', NULL, 'CHINOAPAZA TAPIA CESAR', '--', '10015263771', '', '', 'JR CALLE NUEVA MZ A 9 LOTE 11 A JULIACA SAN ROMAN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47456', NULL, 'VICTORIA VELA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47457', NULL, 'VICTORIA VELA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47458', NULL, 'VICTORIA VELA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47459', NULL, 'VICTORIA VELA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47460', NULL, 'PERTELL CORP E.I.R.L.', '--', '20608679988', '', '', 'AV. ARENALES NRO. 1279 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47461', NULL, 'JESICA PINEDO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47463', NULL, 'JESICA PINEDO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47464', NULL, 'JESICA PINEDO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47465', NULL, 'ESTHER LILIANA FLORES YUNCA', '40985308', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47466', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47467', NULL, 'Leslie marjorie Córdoba narro', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47468', NULL, 'OVERSKULL S.A.C.', '--', '20563023016', '', '', '----SECTOR 06 MZA. F LOTE. 13 GRU. 2 (ARRIBA AVENIDA PERU CON AVE.CENTRAL PAST) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47469', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47470', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47471', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47473', NULL, 'PEÑA SAUÑE MARISOL PILAR', '--', '10488907901', '', '', 'CALLE LAS GARDENIAS 125 EL TAMBO- HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47474', NULL, 'PEÑA SAUÑE MARISOL PILAR', '--', '10488907901', '', '', 'CALLE LAS GARDENIAS 125 EL TAMBO- HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47475', NULL, 'ZEUS MARITIME S.R.L. SHIPPING AGENCY AND BROCKERS', '--', '20384391118', '', '', 'AV. MANCO CAPAC NRO. 126 (ALT PLAZA GRAU) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47477', NULL, 'SULCA HOYOS GLADYS VIOLETA', '--', '10409914115', '', '', 'AV REPUBLICA DE POLONIA URB LOS PINOS SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47478', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47480', NULL, 'ATOS GROUP EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITA', '--', '20609436671', '', '', 'OTR.C.CAMP. SMELTER NRO. SN OTR. PQ. PLAZA PRINCIPAL (UNA CUADRA DEL JARDIN) PASCO - PASCO - TINYAHUARCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47481', NULL, 'ATOS GROUP EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITA', '--', '20609436671', '', '', 'OTR.C.CAMP. SMELTER NRO. SN OTR. PQ. PLAZA PRINCIPAL (UNA CUADRA DEL JARDIN) PASCO - PASCO - TINYAHUARCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47482', NULL, 'ATOS GROUP EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITA', '--', '20609436671', '', '', 'OTR.C.CAMP. SMELTER NRO. SN OTR. PQ. PLAZA PRINCIPAL (UNA CUADRA DEL JARDIN) PASCO - PASCO - TINYAHUARCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47483', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47484', NULL, 'esteban fernandes', '22079652', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47485', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47486', NULL, 'SCHEMBIOLAB-CONSULTORES S.A.C.', '--', '20608480171', '', '', 'AV. LAS PEÑAS BELLAPAMPA MZA. Y DPTO. 3 AREQUIPA - AREQUIPA - SOCABAYA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47487', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47488', NULL, 'YARITZA SUCRE', '11335296', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47489', NULL, 'YARITZA SUCRE', '11335296', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47490', NULL, 'YARITZA SUCRE', '11335296', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47491', NULL, 'YARITZA SUCRE', '11335296', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47493', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47495', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47496', NULL, 'ALFREMSE E.I.R.L.', '--', '20524369746', '', '', 'JR. BLENDAS NRO. 517 ASOC. INCA MANCO CAPAC LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47497', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47499', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47500', NULL, 'FRUTA FRESCA PERU S.A.C.', '--', '20603633483', '', '', 'JR. MONTE REAL NRO. 133 DPTO. 102 URB. VALLE HERMOSO OESTE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47501', NULL, 'FRUTA FRESCA PERU S.A.C.', '--', '20603633483', '', '', 'JR. MONTE REAL NRO. 133 DPTO. 102 URB. VALLE HERMOSO OESTE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47502', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47503', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47504', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47505', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47506', NULL, 'ALAYO ALEJOS CENEN PEPE', '--', '10097453310', '', '', 'CALLE SAN  GERVACIO 149 COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47507', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47508', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47509', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47511', NULL, 'HOSH SOCIEDAD ANONIMA CERRADA', '--', '20511165777', '', '', 'AV. ABANCAY NRO. 817 INT. 124 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47512', NULL, 'ANJHELA CASTILLO  MACHADO', '21293026', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47513', NULL, 'ANJHELA CASTILLO  MACHADO', '21293026', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47514', NULL, 'ESPIRITU MALDONADO RAFAEL ANDRE', '--', '10702473476', '', '', 'Secundaria 1 - 4620 - VENTA AL POR MAYOR DE MATERIAS PRIMAS AGROPECUARIAS Y ANIMALES VIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47515', NULL, 'HDAGUER S.A.C.', '--', '20600468996', '', '', '----SANTA ROSA MZA. J LOTE. 2 A.H. 9 DE OCTUBRE (A LA ESPALDA DE FABRICA SAYON) LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47516', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47517', NULL, 'VARIOS', '43328046', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47518', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47519', NULL, 'IMPRIMMO S.A.C.', '--', '20543251691', '', '', 'CAL.INTI NRO. 147 URB. SAN JUAN BAUSTISTA DE VIL (ALT DE PROLO HUAYLAS CON LA VALLE) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47520', NULL, 'INVERSIONES MAJU SOCIEDAD ANONIMA CERRADA', '--', '20307257603', '', '', 'AV. PERU NRO. 3085 (CDRA 31 AV PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47521', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47522', NULL, 'LASINO S.A.', '--', '', '20388829452', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47523', NULL, 'LASINO S.A.', '--', '20388829452', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47526', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47527', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47528', NULL, 'LASINO S.A.', '--', '20388829452', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47530', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47531', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47532', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47533', NULL, 'CONSTRUCTORA REMANSO S.A.C.', '--', '20501730387', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 3780 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47534', NULL, 'CONSTRUCTORA REMANSO S.A.C.', '--', '20501730387', '', '', 'AV. PASEO DE LA REPUBLICA NRO. 3780 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47536', NULL, 'MEZA MUÑOZ KENE BENEDICTO', '08285622', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47537', NULL, 'AVILA AREVALO YSABEL', '--', '10094465970', '', '', 'PASAJE PEDRO LABARTHE 234 URB CUETO FERNANDINI - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47538', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47539', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', NULL, '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47540', NULL, 'TANIA GUITERREZ', '09352864', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47541', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47542', NULL, 'LUCIA ANTUNES FIGUEROA', '71959557', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47543', NULL, 'ELI TORRES', '40924654', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47544', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47545', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47546', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47547', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47548', NULL, 'GRUPO AMERICAN TELESERVICES S.A.C.', '--', '20554093745', '', '', 'MZA. B LOTE. 20 URB. SANTO DOMINGO ETP 12 LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47549', NULL, 'EPARTNER S.A.C.', '--', '20602028349', '', '', 'JR. MONTERO ROSAS NRO. 1303 DPTO. 2002 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47550', NULL, 'MARTINEZ VENTO AMERICO WILDER', '--', '10211377700', '', '', 'JR 2 DE MAYO 565 -TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47551', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47552', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47553', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47554', NULL, 'ORIHUELA ESPINAL ERLINDA', '--', '10440819384', '', '', 'PARQUE INDUSTRIAL MZ D LOTE 4 -HUAYCAN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47555', NULL, 'ORIHUELA ESPINAL ERLINDA', '--', '10440819384', '', '', 'PARQUE INDUSTRIAL MZ D LOTE 4 -HUAYCAN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47556', NULL, 'ORIHUELA ESPINAL ERLINDA', '--', '10440819384', '', '', 'PARQUE INDUSTRIAL MZ D LOTE 4 -HUAYCAN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47557', NULL, 'ORIHUELA ESPINAL ERLINDA', '--', '10440819384', '', '', 'PARQUE INDUSTRIAL MZ D LOTE 4 -HUAYCAN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47559', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47560', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47561', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47562', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47563', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47564', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47565', NULL, 'Q & H CONSULTORES S.A.C.', '--', '20602065589', '', '', 'CAL.MONSEÑOR PEDRO VILLAR CORDOVA NRO. 215 (PISO 3) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47566', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47567', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47569', NULL, 'SANCHEZ GUEVARA JESUS TORIBIO', '--', '10084846215', '', '', 'AV PERU 2745-SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47570', NULL, 'SANCHEZ GUEVARA JESUS TORIBIO', '--', '10084846215', '', '', 'AV PERU 2745-SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47571', NULL, 'NAVARRO SULCA JOSE LUIS', '--', '10480682152', '', '', 'MZ A LOTE 20 C.P PUNCHAUCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47572', NULL, 'NAVARRO SULCA JOSE LUIS', '--', '10480682152', '', '', 'MZ A LOTE 20 C.P PUNCHAUCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47573', NULL, 'NAVARRO SULCA JOSE LUIS', '--', '10480682152', '', '', 'MZ A LOTE 20 C.P PUNCHAUCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47575', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47576', NULL, 'MERCHANDISING IMPORT E.I.R.L.', '--', '20601553407', '', '', 'CAL.LOS ROSALES NRO. 137 URB. PANDO ET 8 (ENTRE LA PUCP Y UNIV. SAN MARCOS) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47577', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47578', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47579', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47580', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47581', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47582', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47583', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47584', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47585', NULL, 'CEVICHERIA PUERTO BERMEJO E.I.R.L.', '--', '20609761947', '', '', 'AV. PROYECTOS ESPECIALES MZA. 59 LOTE. 12 DPTO. 201 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47586', NULL, 'CEVICHERIA PUERTO BERMEJO E.I.R.L.', '--', '20609761947', '', '', 'AV. PROYECTOS ESPECIALES MZA. 59 LOTE. 12 DPTO. 201 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47587', NULL, 'CEVICHERIA PUERTO BERMEJO E.I.R.L.', '--', '20609761947', '', '', 'AV. PROYECTOS ESPECIALES MZA. 59 LOTE. 12 DPTO. 201 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47588', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47589', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47590', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47591', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47592', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47593', NULL, 'LA BENITA ALIMENTOS SOCIEDAD ANONIMA CERRADA - LA BENIT', '--', '20601761034', '', '', 'CAL.ATAHUALPA NRO. 210 INT. 122C LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47594', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47595', NULL, 'TUME FIESTAS TOMAS VICTORINO', '--', '10254338082', '', '', 'CIUDAD DEL PESCADOR MZ D LOTE 1 BELLAVISTA -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47596', NULL, 'TUME FIESTAS TOMAS VICTORINO', '--', '10254338082', '', '', 'CIUDAD DEL PESCADOR MZ D LOTE 1 BELLAVISTA -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47597', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47598', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47599', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47600', NULL, 'SALCEDO AYALA JOSE LUIS', '--', '10442843088', '', '', 'PASAJE URIEL GARCIA 17 A URB . TTIO FLORIDA   CUSCO - CUSCO - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47601', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47603', NULL, 'SALCEDO AYALA JOSE LUIS', '--', '10442843088', '', '', 'PASAJE URIEL GARCIA 17 A URB TTIO FLORIDA - CUSCO - CUSCO - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47604', NULL, 'CAFE, AROMA Y SABOR A TU SERVICIO S.A.C.', '--', '20603981422', '', '', 'AV. ANGAMOS ESTE NRO. 2520 URB. LA CALERA DE LA MERCED (HOSPITAL NEOPLASTICA) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47605', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47606', NULL, 'PEÑA SAUÑE MARISOL PILAR', '--', '10488907901', '', '', 'CALLE LAS GARDENIAS 125 EL TAMBO - HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47607', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47608', NULL, 'INES MEDINA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47609', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47610', NULL, 'THIAGO CAMPOVERDE', '77640945', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47611', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47612', NULL, 'JORGE LUIS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47613', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47614', NULL, 'VICUÑA LESCANO CELIA GLADYS', '--', '10401938155', '', '', 'AV. LIMA 1060 PARADERO 6 JOSE GALVEZ- VILLA MARIA DEL TRIUNFO-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47616', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47617', NULL, 'giuliana claudio ambicho', '41914554', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47618', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47619', NULL, 'CONSORCIO JOVIZA S.A', '--', '20386456764', '', '', 'JR. ANTONIO DE ELIZALDE NRO. 858 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47620', NULL, 'COTRADO QUISPE MIGUEL NICOLAS', '--', '10103811738', '', '', 'AV TOMAS VALLE 1530 BLOCK 13 DPTO 303 LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47621', NULL, 'COTRADO QUISPE MIGUEL NICOLAS', '--', '10103811738', '', '', 'AV TOMAS VALLE 1530 BLOCK 13 DPTO 303 LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47622', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47623', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47624', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47625', NULL, 'RAVELLO VASQUEZ KARLA ANDREA', '--', '10708291507', '', '', 'jr. general varela 1936 breña-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47626', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47627', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47628', NULL, 'INVERSIONES PROLE F & N E.I.R.L.', '--', '20540742716', '', '', 'CAL.CAÑETE NRO. 130 (FTE A POLVOS AZULES) ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47629', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47630', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47631', NULL, 'BONILLA URBINA PEDRO', '--', '10086294635', '', '', 'JR CONFRATERNIDAD MZ GG 5 LOTE 23 A URB PRO LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47632', NULL, 'BONILLA URBINA PEDRO', '--', '10086294635', '', '', 'JR CONFRATERNIDAD MZ GG 5 LOTE 23 A URB PRO LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47633', NULL, 'MOTHOSEG E.I.R.L.', '--', '20607946826', '', '', 'AV. DEL AIRE NRO. 699 URB. TUPAC AMARU (FRENTE A LA TIENDA MASS) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47634', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47635', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47636', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47637', NULL, 'ANTHONY MAMANI', '46100755', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47639', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47640', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47641', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47642', NULL, 'PRODUCTOS CUSQUEÑOS Y PERUANOS DE LA TIERRA E.I.R.L', '--', '20603449160', '', '', 'CAL.TENIENTE ENRIQUE PALACIOS NRO. 292 URB. MIRAFLORES LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47643', NULL, 'PRODUCTOS CUSQUEÑOS Y PERUANOS DE LA TIERRA E.I.R.L', '--', '20603449160', '', '', 'CAL.TENIENTE ENRIQUE PALACIOS NRO. 292 URB. MIRAFLORES LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47644', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47645', NULL, 'VILLANUEVA RIMAC ALFREDO DANIEL', '--', '10106195850', '', '', 'CALLE SAN LUIS MZ B LOTE 9 URB MARIATEGUI SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47646', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47647', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47648', NULL, 'AROMA A FLORES S.A.C.', '--', '20606841788', '', '', 'AV. VENEZUELA NRO. 981 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47649', NULL, 'AROMA A FLORES S.A.C.', '--', '20606841788', '', '', 'AV. VENEZUELA NRO. 981 URB. CHACRA COLORADA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47650', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47651', NULL, 'MOSCOSO COTRINA LUIS ENRIQUE', '--', '10801288940', '', '', 'PSJ GARCIA CALDERON 178 LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47652', NULL, 'PIZZAS SANTA CLARA E.I.R.L.', '--', '20537337274', '', '', 'AV. DE LA MARINA NRO. 1686 COO. PUEBLO LIBRE (ALT. PARADERO IPAE) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47653', NULL, 'PIZZAS SANTA CLARA E.I.R.L.', '--', '20537337274', '', '', 'AV. DE LA MARINA NRO. 1686 COO. PUEBLO LIBRE (ALT. PARADERO IPAE) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47654', NULL, 'PIZZAS SANTA CLARA E.I.R.L.', '--', '20537337274', '', '', 'AV. DE LA MARINA NRO. 1686 COO. PUEBLO LIBRE (ALT. PARADERO IPAE) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47655', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47656', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47657', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47658', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47659', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47660', NULL, 'ALDEAS INFANTILES SOS PERU-ASOCIACION NACIONAL', '--', '20148313041', '', '', 'CAL.RICARDO ANGULO NRO. 744 URB. CORPAC (ESPALDA MINISTERIO DEL INTERIOR) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47661', NULL, 'ALDEAS INFANTILES SOS PERU-ASOCIACION NACIONAL', '--', '20148313041', '', '', 'CAL.RICARDO ANGULO NRO. 744 URB. CORPAC (ESPALDA MINISTERIO DEL INTERIOR) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47662', NULL, 'ALDEAS INFANTILES SOS PERU-ASOCIACION NACIONAL', '--', '20148313041', '', '', 'CAL.RICARDO ANGULO NRO. 744 URB. CORPAC (ESPALDA MINISTERIO DEL INTERIOR) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47663', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47664', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47665', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47666', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47667', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47668', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47669', NULL, 'LIBRERIA DISTRIBUIDORA UNIVERSAL E.I.R.L.', '--', '20532419485', '', '', 'AV. M.L. URQUIETA NRO. 211 INT. 1 MOQUEGUA - ILO - ILO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47670', NULL, 'LIBRERIA DISTRIBUIDORA UNIVERSAL E.I.R.L.', '--', '20532419485', '', '', 'AV. M.L. URQUIETA NRO. 211 INT. 1 MOQUEGUA - ILO - ILO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47671', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47672', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47673', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47674', NULL, 'GARIBAY RAMIREZ ARMANDO NAZARENO', '--', '10412464066', '', '', 'PROLONGACION LA MAR 711 LA VICTORIA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47676', NULL, 'MIGUEL CORDOVA', '40666049', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47677', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47678', NULL, 'ANGELA MARTINEZ', '77050716', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47679', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47680', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47681', NULL, 'juan maquera', '00499604', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47683', NULL, 'CORPORACION INVERMAR DEL PACIFICO S.A.C', '--', '20555467975', '', '', 'JR. GENARO NUMA LLONA NRO. 1183 LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47684', NULL, 'CORPORACION INVERMAR DEL PACIFICO S.A.C', '--', '20555467975', '', '', 'JR. GENARO NUMA LLONA NRO. 1183 LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47685', NULL, 'CORPORACION INVERMAR DEL PACIFICO S.A.C', '--', '20555467975', '', '', 'JR. GENARO NUMA LLONA NRO. 1183 LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47686', NULL, 'SERVICIOS GENERALES IFEINSA S.A.C.', '--', '20569166871', '', '', 'CAL.ANTENOR ORREGO MZA. 18 LOTE. 12 P.J. MIRAFLORES BAJO (A MEDIA CDRA DE GRIFO PETRO PERU) ANCASH - SANTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47687', NULL, 'SERVICIOS GENERALES IFEINSA S.A.C.', '--', '20569166871', '', '', 'CAL.ANTENOR ORREGO MZA. 18 LOTE. 12 P.J. MIRAFLORES BAJO (A MEDIA CDRA DE GRIFO PETRO PERU) ANCASH - SANTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47688', NULL, 'SERVICIOS GENERALES IFEINSA S.A.C.', '--', '20569166871', '', '', 'CAL.ANTENOR ORREGO MZA. 18 LOTE. 12 P.J. MIRAFLORES BAJO (A MEDIA CDRA DE GRIFO PETRO PERU) ANCASH - SANTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47689', NULL, 'EL COCODRILO VERDE EIRL', '--', '20502386523', '', '', 'CAL.FRANCISCO DE PAULA CAMINO NRO. 226 URB. MIRAFLORES (POR CALLES DE LAS PIZZAS) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47690', NULL, 'EL COCODRILO VERDE EIRL', '--', '20502386523', '', '', 'CAL.FRANCISCO DE PAULA CAMINO NRO. 226 URB. MIRAFLORES (POR CALLES DE LAS PIZZAS) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47691', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47692', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47693', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47694', NULL, 'MANYA PERU E.I.R.L.', '--', '20610123121', '', '', 'AV. SAN MARTIN MZA. F LOTE. 16 URB. TAMBO VIEJO LIMA - LIMA - CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47695', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47696', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47697', NULL, 'ADELAIDA JULIA CLAUDIO MANDUJANO SOLUCION INTEGRAL SOCI', '--', '20600997247', '', '', 'JR. LAS CASUARINAS NRO. 222 URB. CAYHUAYNA BAJA (AL COSTADO DE LA CHOZA DE TARZAN) HUANUCO - HUANUCO - PILLCO MARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47698', NULL, 'JUANA DOMINGUEZ', '23011215', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47699', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47700', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47701', NULL, 'vera', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47702', NULL, 'C.G.CORAZON DEL PINO', '00000734', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47705', NULL, 'SOTO TINTAYA LORENZA', '--', '10292555364', '', '', 'JR UGARTECHE 448 PUEBLO LIBRE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47707', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47708', NULL, 'WESTRES & MALAVER S.A.C.', '--', '20610350535', '', '', 'AV. AGUSTIN GAMARRA NRO. 705 URB. CHUCUITO PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PUNTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47709', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47710', NULL, 'RUIZ ESCOBAR RAUL MIGUEL', '--', '10420213498', '', '', 'ASOC. DE VIVIENDA LAS ORQUIDIAS DEL NARANJAL MZD LT14 S.M.P.-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47712', NULL, 'JASPE PROJECT S.A.C.', '--', '20605273638', '', '', 'CAL.TROMPETEROS NRO. 270 URB. LOS BAMBUES LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47713', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47714', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47715', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47716', NULL, 'SILVERBELL SAC', '--', '20510153040', '', '', 'CAL.DANTE NRO. 1281 (ESQUINA AV. DOMINGO ORUE CON DANTE) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47717', NULL, 'SILVERBELL SAC', '--', '20510153040', '', '', 'CAL.DANTE NRO. 1281 (ESQUINA AV. DOMINGO ORUE CON DANTE) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47718', NULL, 'SILVERBELL SAC', '--', '20510153040', '', '', 'CAL.DANTE NRO. 1281 (ESQUINA AV. DOMINGO ORUE CON DANTE) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47719', NULL, 'ALCIDES ELMER MARIN HUAMANLAZO', '40920444', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47720', NULL, 'ALCIDES ELMER MARIN HUAMANLAZO', '40920444', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47721', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47722', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47723', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47724', NULL, 'VARA CURO GRIMALDO MIGUEL', '--', '10062407676', '', '', 'JR TACNA 414 PUQUIO LUCANAS AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47725', NULL, 'BEATRIZ SOLEDAD SCHNAIDERMAN RODRIGUEZ', '07570287', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47726', NULL, 'BEATRIZ SOLEDAD SCHNAIDERMAN RODRIGUEZ', '07570287', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47727', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47728', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47729', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47730', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47731', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47732', NULL, 'JUAN JOSE MONCARD', '10251960', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47733', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47734', NULL, 'VARGAS SANJINEZ SEGUNDO ALEJANDRO', '--', '10002367357', '', '', 'AV CARLOS IZAGUIRRE 1354  LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47735', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47737', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47738', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47739', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47740', NULL, 'DISTRIBUIDORA MARLY E.I.R.L.', '--', '20555758511', '', '', 'AV. PASEA DE LA REPUBLICA NRO. 5381 INT. 36 (MERCADO Nº 1 SURQUILLO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47741', NULL, 'DISTRIBUIDORA MARLY E.I.R.L.', '--', '20555758511', '', '', 'AV. PASEA DE LA REPUBLICA NRO. 5381 INT. 36 (MERCADO Nº 1 SURQUILLO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47742', NULL, 'DISTRIBUIDORA MARLY E.I.R.L.', '--', '20555758511', '', '', 'AV. PASEA DE LA REPUBLICA NRO. 5381 INT. 36 (MERCADO Nº 1 SURQUILLO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47743', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47744', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47745', NULL, 'JERI RAMIREZ MARIA SOLEDAD', '--', '10092238518', '', '', 'PROLONGACION LOS CEDROS MZ A LOTE 8 -CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47746', NULL, 'JERI RAMIREZ MARIA SOLEDAD', '--', '10092238518', '', '', 'PROLONGACION LOS CEDROS MZ A LOTE 8 -CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47747', NULL, 'JERI RAMIREZ MARIA SOLEDAD', '--', '10092238518', '', '', 'PROLONGACION LOS CEDROS MZ A LOTE 8 -CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47748', NULL, 'JERI RAMIREZ MARIA SOLEDAD', '--', '10092238518', '', '', 'PROLONGACION LOS CEDROS MZ A LOTE 8 -CHACLACAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47749', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47750', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47751', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47752', NULL, 'RULIANA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47753', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47754', NULL, 'MARIA LUISA GALVES NEYRA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47755', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47756', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47757', NULL, 'E-HOLDING SOCIEDAD ANONIMA CERRADA', '--', '20522947891', '', '', 'AV. BENAVIDES NRO. 768 INT. 1303 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47758', NULL, 'E-HOLDING SOCIEDAD ANONIMA CERRADA', '--', '20522947891', '', '', 'AV. BENAVIDES NRO. 768 INT. 1303 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47759', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47760', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47761', NULL, 'VARIOS', '40475305', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47762', NULL, 'VARIOS', '40475305', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47763', NULL, 'INSUMOS, SERVICIOS & MANTENIMIENTO J & M S.A.C.', '--', '20555357100', '', '', 'AV. PACASMAYO NRO. 4002 URB. CONDEVILLA (2DO PISO ESQUINA CON JR COSSIO) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47764', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47765', NULL, 'MARQUINA JULCA MANUEL JOSE BENJAMIN', '--', '10087972645', '', '', 'JR TITANES MZ O 1 LT 12 LA CAMPILLA CHORILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47766', NULL, 'ANSEELLYS PERFUMES Y BELLEZA EMPRESA INDIVIDUAL DE RESP', '--', '20511946086', '', '', 'MZA. I LOTE. 31 COO. VIPOL DE NARANJAL (4TO PISO FRENTE A MERCADO VIPOL) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47767', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47768', NULL, 'TINTAYA T\'UXPA S.A.C.', '--', '20600788486', '', '', 'PJ. PEDRO PAULET NRO. 111 RES. TORRES DE SAN BORJA (ENTRE AV SAN LUIS CON AV CANADA) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47769', NULL, 'TINTAYA T\'UXPA S.A.C.', '--', '20600788486', '', '', 'PJ. PEDRO PAULET NRO. 111 RES. TORRES DE SAN BORJA (ENTRE AV SAN LUIS CON AV CANADA) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47770', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47771', NULL, 'MARIA LUISA GALVES NEYRA', '40768139', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47772', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47773', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47775', NULL, 'EMPRESA COMUNAL DE SERVICIOS MULTIPLES YAUL', '--', '20516385813', '', '', 'AV. LADISLAO ESPINAR NRO. S/N SEC. YAULI (FRENTE A LA PISCINA NATURAL) JUNIN - YAULI - YAULI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47776', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47777', NULL, 'VARIOS', '41688267', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47778', NULL, 'raulito chira', '09914061', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47779', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47780', NULL, 'MARIA CASTILLO CRUZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47781', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47782', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47783', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47784', NULL, 'SERVICIOS INTEGRALES Y PUBLICIDAD LOBATO E.I.R.L.', '--', '20553496498', '', '', 'JR. HUANUCO NRO. 1934 INT. 208A (CRUCE AVA I.CATOLICA Y HUANUCO) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47785', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47786', NULL, 'PERU TAMDEM BTL SOCIEDAD ANONIMA CERRADA', '--', '20562846132', '', '', '----EDIF E-6 MZA. E LOTE. E-1 DPTO. 101 FND. EL SALITRE (A 2 CUADRAS DE COMISARIA LOS CONDOMINIOS) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47787', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47788', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47789', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47790', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47791', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47792', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47793', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47794', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47795', NULL, 'JULIA DAVILA BERNABLE', '08428683', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47796', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47797', NULL, 'ARCA OPERADOR LOGISTICO S.A.C.', '--', '20603046448', '', '', 'AV. ELMER FAUCETT NRO. 2017 INT. 100 URB. JARDINES VIRU PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47798', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47799', NULL, 'WENDY CARDENAS ILLANOVA', '75418643', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47800', NULL, 'WENDY CARDENAS ILLANOVA', '75418643', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47801', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47802', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47803', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47806', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47807', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47808', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47809', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47810', NULL, 'SMART SELECTION S.A.C.', '--', '20524897921', '', '', 'AV. DEL EJERCITO NRO. 920 DPTO. 202 URB. SANTA CRUZ LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47811', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47812', NULL, 'ARBIETO ALVARADO AMPARITO', '--', '10099416209', '', '', 'CALLE EDUARDO TERRY 1558-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47813', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47814', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47815', NULL, 'VELASQUE PALOMINO VIRGINIA', '--', '10310401507', '', '', 'JR AREQUIPA 519 ABANCAY  - APURIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47816', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47817', NULL, 'CONSTRUCCION, INGENIERIA, MINERIA Y COMERCIO HP SOCIEDA', '--', '20605175776', '', '', 'JR. GAMANIEL BLANCO NRO. 207 URB. SAN JUAN (A 1 CDRA DEL MERCADO SANTA ROSA) PASCO - PASCO - YANACANCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47818', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47819', NULL, 'paola', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47820', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47821', NULL, 'YATACO SILVA LUIS AURELIO', '--', '10412819620', '', '', 'CALLE LAS MORAS 161-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47822', NULL, 'YATACO SILVA LUIS AURELIO', '--', '10412819620', '', '', 'CALLE LAS MORAS 161-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47823', NULL, 'YATACO SILVA LUIS AURELIO', '--', '10412819620', '', '', 'CALLE LAS MORAS 161-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47824', NULL, 'OGUN ARQUITECTURA OBRAS Y SERVICIOS E.I.R.L.', '--', '20609360276', '', '', 'CAL.CALLE 2 MZA. F LOTE. 10 URB. LOS GIRASOLES DE LA MOLINA LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47828', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47830', NULL, 'VEGA VIRU JOSE ALBERTO', '--', '10257635404', '', '', 'CALLE 21 DE OCTUBRE 337 URB EL MILAGRO  HUAURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47831', NULL, 'VEGA VIRU JOSE ALBERTO', '--', '10257635404', '', '', 'CALLE 21 DE OCTUBRE 337 URB EL MILAGRO  HUAURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47832', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47833', NULL, 'JOAQUIN HUAMAN SANTOS DOMITILA', '--', '10412669547', '', '', 'CALLE LIBERTAD PARAMONGA NUMERO 21  - BARRANCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47835', NULL, 'HORNA HUAMAN LUISA VANNESA', '--', '10487121148', '', '', 'CARABAYLLO COMITE 79', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47836', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47837', NULL, 'MOVEL MANAGEMENT S.A.C.', '--', '20609592568', '', '', 'CAL.BACA FLOR NRO. 132 URB. SIMA (ALT. CIA BOMBEROS AV. LA MARINA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47838', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47839', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47840', NULL, 'BLACKMEDIA S.A.C.', '--', '20392489569', '', '', 'AV. BOLIVIA NRO. 148 INT. 3168 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47841', NULL, 'BLACKMEDIA S.A.C.', '--', '20392489569', '', '', 'AV. BOLIVIA NRO. 148 INT. 3168 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47842', NULL, 'GIAN LUCA VEGA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47843', NULL, 'YOHAN BALTAZAR', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47844', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47845', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47846', NULL, 'PERALTA HUAMANI WILMER', '--', '10804542235', '', '', 'AV CUSCO 778 SAN JUAN BAUTISTA -HUAMANGA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47847', NULL, 'PERALTA HUAMANI WILMER', '--', '10804542235', '', '', 'AV CUSCO 778 SAN JUAN BAUTISTA -HUAMANGA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47848', NULL, 'PERALTA HUAMANI WILMER', '--', '10804542235', '', '', 'AV CUSCO 778 SAN JUAN BAUTISTA -HUAMANGA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47849', NULL, 'PERALTA HUAMANI WILMER', '--', '10804542235', '', '', 'AV CUSCO 778 SAN JUAN BAUTISTA -HUAMANGA -AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47850', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47851', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47852', NULL, 'GEONOVAX INGENIERIA Y CONSTRUCCION S.A.C.', '--', '20609686261', '', '', 'JR. LOS CACTUS NRO. 136 (MDIA CDR PUENTE ANTES VISTA ALEGRE) APURIMAC - ANDAHUAYLAS - ANDAHUAYLAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47853', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47854', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47855', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47856', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47857', NULL, 'L & M PHARMACIST S.A.C.', '--', '20608665847', '', '', 'CAL.SAN ANDRES MZA. G LOTE. 3 ASC. STA MARTA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47858', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47859', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47860', NULL, 'INGRID OSCO', '40025534', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47861', NULL, 'INGRID OSCO', '40025534', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47862', NULL, 'VALENTINA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47863', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47864', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47865', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47866', NULL, 'INVERSIONES Y SERVICIOS JCM 2020 S.A.C.', '--', '20606039132', '', '', 'AV. NICOLAS ARRIOLA NRO. 177 URB. SANTA CATALINA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47867', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47868', NULL, 'SONIMAR SERVICIOS E.I.R.L.', '--', '20520920511', '', '', 'CAL.3 MZA. E LOTE. 14A ASC. RIO SANTA LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47869', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47870', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47871', NULL, 'LOPEZ RUIZ DE YEREN GLADYS', '--', '10008157893', '', '', 'jr. cajamarca 579 moyobamba san martin', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47873', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47874', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47875', NULL, 'CARLOS PALOMINO ROBLES', '01157979', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47877', NULL, 'INVERSIONES PLATINUM K&L S.A.C.', '--', '20609938871', '', '', 'CAL.LOS APACHES NRO. 170 URB. LAS ORQUIDEAS LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47878', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47879', NULL, 'CORPORACION PIEDRA AZUL S.A.C.', '--', '20609325659', '', '', 'JR. REVOLUCION NRO. 359 CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47880', NULL, 'CORPORACION PIEDRA AZUL S.A.C.', '--', '20609325659', '', '', 'JR. REVOLUCION NRO. 359 CAJAMARCA - CAJAMARCA - CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47881', NULL, 'GRUPO C & K MENDOZA E.I.R.L.', '--', '20600533267', '', '', 'AV. CINCUENTENARIO NRO. 351 INT. 04 LIMA - HUAURA - HUALMAY', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47882', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47883', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47885', NULL, 'MARCHAN PRECIADO GEORGIA YANETT', '--', '10405175776', '', '', 'MIGUEL GRAU 427 CARMEN DE LA LEGUA - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47886', NULL, 'NATWASI S.A.C.', '--', '20607485683', '', '', 'AV. PRIMAVERA 1786-1788 URBANIZACIÓN CENTRO COMERCIAL MONTERRICO MZA. P2 LOTE. 24 LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47887', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47888', NULL, 'SANEZ ABARCA SOFIA ESPERANZA', '--', '10077862868', '', '', 'CALLE MANUEL TOVAR 421 MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47889', NULL, 'SANEZ ABARCA SOFIA ESPERANZA', '--', '10077862868', '', '', 'CALLE MANUEL TOVAR 421 MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47890', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47891', NULL, 'DEROVA E.I.R.L.', '--', '20518920031', '', '', 'CAL.TOBIA MEYER 229 MZA. K LOTE. 64 URB. EL PASIFICO 3RA ETAPA (AV, UNIVERSITARIA) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47893', NULL, 'DEROVA E.I.R.L.', '--', '20518920031', '', '', 'CAL.TOBIA MEYER 229 MZA. K LOTE. 64 URB. EL PASIFICO 3RA ETAPA (AV, UNIVERSITARIA) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47894', NULL, 'simeona borda', '22090012', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47895', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47896', NULL, 'SALOME LAZO ELEAZAR ALBINO', '--', '10070370269', '', '', 'CALLE ONTARIO MZ N LOTE 26 LA CAMPIÑA -CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47897', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47898', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47899', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47900', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47901', NULL, 'RONOL CONSTRUCTORA E.I.R.L.', '--', '20610095764', '', '', 'CAL.MARCOS JUSTO GRADOS NRO. 296 URB. SANTA LUZMILA ET. UNO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47902', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47903', NULL, 'DIVARI S.A.C', '--', '20601237009', '', '', 'AV. GENERAL GARZON NRO. 1992 DPTO. 202 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47904', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47905', NULL, 'HUANCAYA RIOS ROSARIO MILAGROS', '--', '10101379774', '', '', 'AV REPUBLICA DEL PERU 559 COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47906', NULL, 'HUANCAYA RIOS ROSARIO MILAGROS', '--', '10101379774', '', '', 'AV REPUBLICA DEL PERU 559 COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47907', NULL, 'HUANCAYA RIOS ROSARIO MILAGROS', '--', '10101379774', '', '', 'AV REPUBLICA DEL PERU 559 COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47908', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47909', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47910', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47911', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47912', NULL, 'KRISTIAN PUCHOC HUAMAN', '45080976', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47913', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47914', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47916', NULL, 'PATRICIA GOMEZ HERRERA', '40540052', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47917', NULL, 'PATRICIA GOMEZ HERRERA', '40540052', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47918', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47919', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47920', NULL, 'REFARMEDIC S.A.C.', '--', '20608407198', '', '', 'CAL.SAN RAMON NRO. 428 URB. PALAO ET. UNO LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47921', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47922', NULL, 'FARRO HERRERA JONATHAN KEITH', '--', '10469872934', '', '', 'AAHH SANTA ROSA MZ H LOTE 16 PIURA PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47923', NULL, 'FARRO HERRERA JONATHAN KEITH', '--', '10469872934', '', '', 'AAHH SANTA ROSA MZ H LOTE 16 PIURA PIURA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47924', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47925', NULL, 'https://e-consultaruc.sunat.gob.pe/cl-ti-itmrconsruc/jc', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47926', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47927', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47928', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47929', NULL, 'MIRIAN ANGELA CHIRINOS MARCOS', '43882444', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47930', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47931', NULL, 'COMERCIAL GRAFICA SUCRE SRL.', '--', '20101694888', '', '', 'AV. JAIME BAUSATE Y MEZA NRO. 131 INT. 116 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47932', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47933', NULL, 'LABRIN CORNEJO LILIANA ELIZABETH', '--', '10459779138', '', '', 'AV 12 DE OCTUBRE 2303 URB. COVITI SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47934', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47935', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47936', NULL, 'EVELYN SARA LIZANO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47937', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47938', NULL, 'karen', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47939', NULL, 'INDUSTRIA LIDER GLOBAL S.A.C.', '--', '20600072031', '', '', 'MZA. H A.V. URBANI.LOTIZ ACION CHAVEZ (ALT. CURVA DE MANCHAY LADO IZQUIERDO) LIMA - LIMA - CIENEGUILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47940', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47941', NULL, 'QUIROZ BRICEÑO BEATRIZ', '--', '10443389496', '', '', 'calle las ponsianas mz ll lt10 pando 9na etapa san miguel -lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47942', NULL, 'GEBOL GOMEZ VIDAL', '--', '10098310008', '', '', 'jr. washintong 1775 dpto 203 block a -lima-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47944', NULL, 'krystian puchoc huaman', '45080976', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47945', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47946', NULL, 'CV SOLUCIONES S.A.C.', '--', '20610065661', '', '', 'MZA. E LOTE. 8 URB. LAS GARDENIAS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47947', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47948', NULL, 'juliana huiman chero', '42610652', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47949', NULL, 'juliana huiman chero', '42610652', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47951', NULL, 'MI & MA MODAS E.I.R.L.', '--', '20602181350', '', '', 'JR. LOS ALAMOS NRO. 378 DPTO. 401 INT. A URB. EL CORTIJO (CRUCE DE LAS AV EL DERBY CON OLGUIN) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47952', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47953', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47954', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47955', NULL, 'VILCA FLORES EVA ELIZABETH', '--', '10181442919', '', '', 'AV. CANTA CALLAO CONDOMINIO CIUDAD NUEVA TORRE B DPTO 404 CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47956', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47957', NULL, 'SULLON ZIRENA MARIA FERNANDA', '78089335', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47958', NULL, 'SULLON ZIRENA MARIA FERNANDA', '78089335', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47959', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47960', NULL, 'carlos laynes miranda', '70213079', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47961', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47962', NULL, 'german guzman', '43309803', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47963', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47964', NULL, 'CIAPO RIVADENEIRA HECTOR MIGUEL', '--', '10433905330', '', '', 'jr. amazonas 128 comas-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47967', NULL, 'victoria torres', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47968', NULL, 'victoria torres', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47969', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47970', NULL, 'monasterio santa clara de lima', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47971', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47972', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47973', NULL, 'LOPEZ CASTILLO DE BLAS NIOVE IRASEMA', '--', '10073683802', '', '', 'CALLE ALEJANDRO ORTIZ 123 - 131 LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47974', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47975', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47976', NULL, 'ZAGA LIMA CINTHIA KAREN', '47180579', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47977', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47978', NULL, 'CANCHIHUAMAN HIDALGO ALDER BRANCO', '--', '10403831021', '', '', 'JR HUANCABAMBA 1078 BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47979', NULL, 'CHURA GOMEZ CESAR', '--', '10024344407', '', '', 'JR COPERNICO 370-LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47980', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47982', NULL, 'GALLARDO MOLINA JUAN MIGUEL', '--', '10095768551', '', '', 'AV LUIS PARDO 178 SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47983', NULL, 'BETSI APAZA HUAMANI', '41976435', '', '', '', 'lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47985', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47986', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47987', NULL, 'CARMEN SALAZAR SANDOVAL', '26733537', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47988', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47989', NULL, 'LIZBETH', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47990', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47991', NULL, 'NORAYDA RODRIGUEZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47993', NULL, 'INVERSIONES DILIO GUERRA E.I.R.L.', '--', '20517796655', '', '', '----PROLONG JR HUASCAR NRO. 835 A.H. VILLA MARIA DEL TRIUNFO (ALTURA CDRA 20 AV VILLA MARIA) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47994', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47995', NULL, 'AIS HOSPITAL SANTA ROSA', '--', '20171604355', '', '', 'AV. BOLIVAR NRO. S/N (CUADRA OCHO) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47996', NULL, 'FYT EVENTOS E.I.R.L.', '--', '20610149368', '', '', 'CAL.UNO MZA. A LOTE. 34 URB. PANAMERICANA NORTE LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47997', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47998', NULL, 'VERA FRANCO CESAR EDUARDO', '--', '10105092534', '', '', 'URB VIRGEN DE LA PUERTA MZ I LOTE 1 LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('47999', NULL, 'VERA FRANCO CESAR EDUARDO', '--', '10105092534', '', '', 'URB VIRGEN DE LA PUERTA MZ I LOTE 1 LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48000', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48001', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48002', NULL, 'FED NAC DE COOPS AHORRO Y CRED DEL PERU', '--', '20101274919', '', '', 'JR. MAXIMO ABRIL NRO. 542 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48003', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48005', NULL, 'AMAZING PROSPERITY GROUP S.A.C.', '--', '20607284092', '', '', 'AV. SAN LUIS NRO. 1983 INT. 102 URB. SAN BORJA NORTE LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48006', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48007', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48008', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48009', NULL, 'medaliz neyra estrada', '70753236', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48010', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48011', NULL, 'VIP SALONES E.I.R.L.', '--', '20518801962', '', '', 'AV. CAMINOS DEL INCA NRO. 257 INT. 114 URB. CHACARILLA DEL ESTANQUE (C.C. CAMINOS DEL INCA II.) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48012', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48013', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48014', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48015', NULL, 'G & K MEDICAL OXIGEN E.I.R.L.', '--', '20606784245', '', '', 'JR. ARIADNA 180 E24 NRO. 180 DPTO. 502 URB. SAGITARIO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48016', NULL, 'G & K MEDICAL OXIGEN E.I.R.L.', '--', '20606784245', '', '', 'JR. ARIADNA 180 E24 NRO. 180 DPTO. 502 URB. SAGITARIO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48017', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48018', NULL, 'MORALES GUERRERO PATTY KATHERINE', '--', '10445117361', '', '', 'AV HORACIO URTEAGA 1369- JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48019', NULL, 'MORALES GUERRERO PATTY KATHERINE', '--', '10445117361', '', '', 'AV HORACIO URTEAGA 1369- JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48020', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48021', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48022', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48024', NULL, 'ROSA ALVAREZ', '43776783', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48025', NULL, 'INNOVA EASY HARD S.A.C.', '--', '20600405081', '', '', 'CAL.CHIPRE MZA. J12 LOTE. 21 URB. CEDROS DE VILLA (PARQUE MONTENEGRO) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48026', NULL, 'INNOVA EASY HARD S.A.C.', '--', '20600405081', '', '', 'CAL.CHIPRE MZA. J12 LOTE. 21 URB. CEDROS DE VILLA (PARQUE MONTENEGRO) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48027', NULL, 'INNOVA EASY HARD S.A.C.', '--', '20600405081', '', '', 'CAL.CHIPRE MZA. J12 LOTE. 21 URB. CEDROS DE VILLA (PARQUE MONTENEGRO) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48028', NULL, 'INNOVA EASY HARD S.A.C.', '--', '20600405081', '', '', 'CAL.CHIPRE MZA. J12 LOTE. 21 URB. CEDROS DE VILLA (PARQUE MONTENEGRO) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48029', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48030', NULL, 'RUBY ROJAS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48031', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48032', NULL, 'KARINA', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48033', NULL, 'CARMEMN ESPINOZA', '09909342', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48034', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48036', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48037', NULL, 'ZAMIR MATOS', '75753402', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48038', NULL, 'INVERSIONES XIMADIJO S.A.C', '--', '20537703122', '', '', 'CAL.VIÑA TABERNERO NRO. 154 DPTO. 101 URB. LOS PARRALES DE SURCO (FTE PQUE JAVIER PEREZ DE CUELLAR) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48039', NULL, 'INVERSIONES XIMADIJO S.A.C', '--', '20537703122', '', '', 'CAL.VIÑA TABERNERO NRO. 154 DPTO. 101 URB. LOS PARRALES DE SURCO (FTE PQUE JAVIER PEREZ DE CUELLAR) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48040', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48041', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48042', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48043', NULL, 'GAMARRA MONAGO YEFERSON LEONIDAS', '--', '10476947079', '', '', 'CAERIO 30 DE AGOSTO TICLACAYAN -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48044', NULL, 'GAMARRA MONAGO YEFERSON LEONIDAS', '--', '10476947079', '', '', 'CACERIO 30 DE AGOSTO TICLACAYAN-PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48045', NULL, 'GAMARRA MONAGO YEFERSON LEONIDAS', '--', '10476947079', '', '', 'CACERIO 30 DE AGOSTO TICLACAYAN-PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48046', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48047', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48048', NULL, 'HERRERA POMA EDGAR', '--', '10082860938', '', '', 'CALENDULAS 561 -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48049', NULL, 'HERRERA POMA EDGAR', '--', '10082860938', '', '', 'CALENDULAS 561 -SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48050', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48051', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48052', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48053', NULL, 'P & J SOLUCIONES GENERALES S.A.C.', '--', '20607799912', '', '', 'AV. CORDILLERA BLANCA ZONA 3 MZA. E14 LOTE. 7 A.H. LAS DELICIAS DE VILLA (PISO 2) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48054', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48055', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48056', NULL, 'PIZARRO YAURI ESTHER GLADYS', '--', '10157492077', '', '', 'AV SOLAR 479 INT 3B HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48057', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48058', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48059', NULL, 'AMERICAN LOGISTICS CARGO S.A.C. - ALCARGO', '--', '20608644351', '', '', 'JR. ANDRES TORRES PAZ NRO. 305 LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48060', NULL, 'AMERICAN LOGISTICS CARGO S.A.C. - ALCARGO', '--', '20608644351', '', '', 'JR. ANDRES TORRES PAZ NRO. 305 LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48061', NULL, 'AMERICAN LOGISTICS CARGO S.A.C. - ALCARGO', '--', '20608644351', '', '', 'JR. ANDRES TORRES PAZ NRO. 305 LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48064', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48065', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48067', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48068', NULL, 'T & S S.A.C. PROMOTORES-PUBLICISTAS', '--', '20505687419', '', '', '----EDIF LAS ORQUIDEAS NRO. S/N INT. 111 RES. SAN FELIPE (OF 111 ALT CDRA 5 GREGORIO ESCOBEDO) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48069', NULL, 'T & S S.A.C. PROMOTORES-PUBLICISTAS', '--', '20505687419', '', '', '----EDIF LAS ORQUIDEAS NRO. S/N INT. 111 RES. SAN FELIPE (OF 111 ALT CDRA 5 GREGORIO ESCOBEDO) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48070', NULL, 'T & S S.A.C. PROMOTORES-PUBLICISTAS', '--', '20505687419', '', '', '----EDIF LAS ORQUIDEAS NRO. S/N INT. 111 RES. SAN FELIPE (OF 111 ALT CDRA 5 GREGORIO ESCOBEDO) LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48071', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48072', NULL, 'monica buleje', '40562350', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48073', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48074', NULL, 'CRUZADO OVIEDO LUIS ALBERTO', '--', '10066556480', '', '', 'AV 12 DE OCTUBRE MZ I LOTE 19 COOP COVITI SMP', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48075', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48076', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48078', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48079', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48080', NULL, 'SOLORZANO REYES AUREA SUSANA', '--', '10329269090', '', '', 'AV BREÑA 142 INT 110-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48081', NULL, 'SOLORZANO REYES AUREA SUSANA', '--', '10329269090', '', '', 'AV BREÑA 142 INT 110-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48082', NULL, 'SOLORZANO REYES AUREA SUSANA', '--', '10329269090', '', '', 'AV BREÑA 142 INT 110-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48083', NULL, 'SOLORZANO REYES AUREA SUSANA', '--', '10329269090', '', '', 'AV BREÑA 142 INT 110-BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48084', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48085', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48086', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48087', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48088', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48089', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48090', NULL, 'INVERSIONES LOSUY E.I.R.L.', '--', '20569331235', '', '', 'JR. MANUEL VILLAVICENCIO NRO. 417 CASCO URBANO (MEDIA CDRA PLAZA DE ARMAS) ANCASH - SANTA - CHIMBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48091', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48092', NULL, 'COMPAÑIA FERREMIA S.A.C.', '--', '20608637444', '', '', 'AV. INDEPENDENCIA MZA. B LOTE. 08 A.F. LOS JARDINES LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48093', NULL, 'COMPAÑIA FERREMIA S.A.C.', '--', '20608637444', '', '', 'AV. INDEPENDENCIA MZA. B LOTE. 08 A.F. LOS JARDINES LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48094', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48095', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48096', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48097', NULL, 'CHUMPITAZI BELTRAN FERNANDO MARTIN', '--', '10074865017', '', '', 'CAYETANO HEREDIA 245 INT H -JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48098', NULL, 'CHUMPITAZI BELTRAN FERNANDO MARTIN', '--', '10074865017', '', '', 'CAYETANO HEREDIA 245 INT H -JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48099', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48100', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48101', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48102', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48103', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48104', NULL, 'INVERSIONES APAC E.I.R.L.', '--', '20603920440', '', '', 'CAL.SAN JOSE NRO. 113 (ALTURA DE L ACUADRA 28 DE AV BRASIL) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48105', NULL, 'INVERSIONES APAC E.I.R.L.', '--', '20603920440', '', '', 'CAL.SAN JOSE NRO. 113 (ALTURA DE L ACUADRA 28 DE AV BRASIL) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48106', NULL, 'INVERSIONES APAC E.I.R.L.', '--', '20603920440', '', '', 'CAL.SAN JOSE NRO. 113 (ALTURA DE L ACUADRA 28 DE AV BRASIL) LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48107', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48108', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48109', NULL, 'SERVICIO REVOLUCIONARIO HOSPITALARIO SOCIEDAD ANONIMA C', '--', '20451527232', '', '', 'CAL.A NRO. 332 URB. INDUSTRIAL BOCANEGRA (ALT CUADRA 4 AV JAPON EX BERTELLO) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48110', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48111', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48113', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48114', NULL, 'IMPORTADORA MISSI S.A.C.', '--', '20454591446', '', '', 'CAL.ALTO DE LA LUNA NRO. 117 DPTO. B CERCADO (A MEDIA CUADRA DE MERCADO SAN CAMILO) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48115', NULL, 'IMPORTADORA MISSI S.A.C.', '--', '20454591446', '', '', 'CAL.ALTO DE LA LUNA NRO. 117 DPTO. B CERCADO (A MEDIA CUADRA DE MERCADO SAN CAMILO) AREQUIPA - AREQUIPA - AREQUIPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48116', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48117', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48118', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48119', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48120', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48121', NULL, 'ALCANTARA VILLANUEVA ALDAIR SEGUNDO', '--', '10733769845', '', '', 'CALLE LOS ALELIES 506 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48122', NULL, 'ALCANTARA VILLANUEVA ALDAIR SEGUNDO', '--', '10733769845', '', '', 'CALLE LOS ALELIES 506 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48123', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48124', NULL, 'CUMBRA INGENIERIA S.A.', '--', '20100356270', '', '', 'AV. PETIT THOUARS NRO. 4957 INT. 501 (PISO 5) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48126', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48127', NULL, 'CORREA LLANA DE ARZAPALO VILMA CELESTINA', '--', '10208916861', '', '', 'MZ A LOTE 8 FILADELFIA 3era ETAPA- ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48128', NULL, 'CORREA LLANA DE ARZAPALO VILMA CELESTINA', '--', '10208916861', '', '', 'MZ A LOTE 8 FILADELFIA 3era ETAPA- ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48129', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48130', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48131', NULL, 'BRANDAN ROSAS DE FUENTES MIRIAM ELIZABETH', '--', '10096749878', '', '', 'LA BERVENA 194 SANTA FELICIA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48132', NULL, 'MEZA AYLAS ABILIA', '--', '10208996873', '', '', 'JR PROGRESO S/N BARRIO CENTRO HUAYLLAY-PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48133', NULL, 'MEZA AYLAS ABILIA', '--', '10208996873', '', '', 'JR PROGRESO S/N BARRIO CENTRO HUAYLLAY-PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48135', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48136', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48137', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48138', NULL, 'ORIGINAL BUSINESS S.A.C.', '--', '20604878111', '', '', '----EL DERBY NRO. 525 DPTO. 1009 URB. EL DERBY LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48139', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48140', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48141', NULL, 'REPRESENTACIONES Y DISTRIBUCIONES LY SAC', '--', '20607011614', '', '', 'MZA. J INT. 1 URB. SAN ISIDRO ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48142', NULL, 'CONTABILIDAD', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48143', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48144', NULL, 'VARIOS', '25809107', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48145', NULL, 'SOLDI ESCOBAR EMILIO CESAR NICOLAS', '--', '10096588700', '', '', 'JR HUACLLAN 4856 DPTO 202 -C LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48146', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48147', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48148', NULL, 'XPERTIA CONSULTING GROUP E.I.R.L.', '--', '20603059621', '', '', 'AV. ALAMEDA DEL CORREGIDOR MZA. C LOTE. 6 URB. LA CAPILLA LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48149', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48150', NULL, 'MULTISERVICIOS BELINAN E.I.R.L.', '--', '20604843988', '', '', 'CAL.VIRREY ABASCAL NRO. 225 DPTO. 501 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48152', NULL, 'RIVADENEIRA CONDORI RODRIGO ALDAIR', '--', '10763344661', '', '', 'JR PUNO 631 TDA 2038-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48153', NULL, 'RIVADENEIRA CONDORI RODRIGO ALDAIR', '--', '10763344661', '', '', 'JR PUNO 631 TDA 2038-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48154', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48155', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48157', NULL, 'VARIOS', '07483191', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48158', NULL, 'RIZZO REYES FABIO MIGUEL', '--', '10470842658', '', '', 'MARVELLA 236 B MAGDALENA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48159', NULL, 'DISTRIBUIDORA & IMPORTADORA MARCOVA E.I.R.L.', '--', '20560127023', '', '', 'JR. PARDO Y ALIAGA NRO. 237 URB. PALERMO LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48160', NULL, 'elena flores', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48161', NULL, 'RYLAN SOCIEDAD ANONIMA CERRADA-RYLAN S.A.C.', '--', '20543039048', '', '', 'PJ. MIGUEL VALCARCEL NRO. 346 URB. SAN FRANCISCO (GARAJE 342) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48162', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48163', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48164', NULL, 'DEMETRIO VILCA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48165', NULL, 'DEMETRIO VILCA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48166', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48167', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48168', NULL, 'EL SUPER CHEFF SERVICIOS Y CATERING SRL', '--', '20496190905', '', '', 'CAL.FRANCISCO MASIAS NRO. 575 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48169', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48170', NULL, 'TRINIDAD MARCELO HERLY SOLEDAD', '--', '10403329466', '', '', 'JR HUAMACHUCO 262 A - CHOPIMARCA - CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48172', NULL, 'MILAN BAKERY PERU S.A.C.', '--', '20607128198', '', '', 'CAL.MANUEL DEL PINO NRO. 222 URB. SANTA BEATRIZ (FRENTE A TRILCE) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48173', NULL, 'MILAN BAKERY PERU S.A.C.', '--', '20607128198', '', '', 'CAL.MANUEL DEL PINO NRO. 222 URB. SANTA BEATRIZ (FRENTE A TRILCE) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48174', NULL, 'MILAN BAKERY PERU S.A.C.', '--', '20607128198', '', '', 'CAL.MANUEL DEL PINO NRO. 222 URB. SANTA BEATRIZ (FRENTE A TRILCE) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48177', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48178', NULL, 'VASQUEZ TEJADA YULIANA DEL MILAGRO', '--', '10410550755', '', '', 'CALLE 30 DE ABRIL MZ R1 LT 16 PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48179', NULL, 'JORGE GUARDAMINO', '09451714', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48180', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48181', NULL, 'jesus salazar', '72653913', '', '', '', 'chincha', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48182', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48183', NULL, 'jorge manuel bustamante diaz', '09786982', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48184', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48185', NULL, 'jose eduardo becerra moran', '76085814', '', '', '', 'lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48186', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48187', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48188', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48189', NULL, 'GRUPO ASEGA S.A.C.', '--', '20608270435', '', '', 'AV. JORGE BASADRE ESTE NRO. 433 URB. SAN CARLOS (A 1/2 CUADRA DEL OVALO SAN CARLOS) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48190', NULL, 'GRUPO ASEGA S.A.C.', '--', '20608270435', '', '', 'AV. JORGE BASADRE ESTE NRO. 433 URB. SAN CARLOS (A 1/2 CUADRA DEL OVALO SAN CARLOS) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48191', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48193', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48194', NULL, 'JAIME VDA DE RAMIREZ CARMEN MARIA', '--', '10095022699', '', '', 'JR CRISTOBAL COLON 1040 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48195', NULL, 'JAIME VDA DE RAMIREZ CARMEN MARIA', '--', '10095022699', '', '', 'JR CRISTOBAL COLON 1040 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48196', NULL, 'JAIME VDA DE RAMIREZ CARMEN MARIA', '--', '10095022699', '', '', 'JR CRISTOBAL COLON 1040 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48197', NULL, 'JAIME VDA DE RAMIREZ CARMEN MARIA', '--', '10095022699', '', '', 'JR CRISTOBAL COLON 1040 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48198', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48199', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48200', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48201', NULL, 'fabian ramos', '74914889', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48202', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48203', NULL, 'FUNDICION CENTRAL S A', '--', '20100063761', '', '', 'CAL.1 MZA. C LOTE. 10 URB. SANTA RAQUEL II ETAPA (ESPALDA DEL COLEGIO PARTICULAR LA MERCED) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48204', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48205', NULL, 'COMIDA CHINA PERUANA S.A.C.', '--', '20607626660', '', '', 'JR. ENRIQUE BARRON NRO. 397 DPTO. I URB. LA VIÑITA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48206', NULL, 'COMIDA CHINA PERUANA S.A.C.', '--', '20607626660', '', '', 'JR. ENRIQUE BARRON NRO. 397 DPTO. I URB. LA VIÑITA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48207', NULL, 'COMIDA CHINA PERUANA S.A.C.', '--', '20607626660', '', '', 'JR. ENRIQUE BARRON NRO. 397 DPTO. I URB. LA VIÑITA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48208', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48209', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48210', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48211', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48212', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48213', NULL, 'anne graciela seminario otoya', '16707260', '', '', '', 'chiclayo', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48214', NULL, 'maria esther', '08118352', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48215', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48216', NULL, 'VASCO INVERSIONES Y SERVICIOS MULTIPLES E.I.R.L.', '--', '20608439936', '', '', 'AV. METROPOLITANA II MZA. J LOTE. 3 URB. PROGRESIVA METROPOLITANA LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48217', NULL, 'VASCO INVERSIONES Y SERVICIOS MULTIPLES E.I.R.L.', '--', '20608439936', '', '', 'AV. METROPOLITANA II MZA. J LOTE. 3 URB. PROGRESIVA METROPOLITANA LA LIBERTAD - TRUJILLO - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48218', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48219', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48220', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48222', NULL, 'JUSTO MONTESINOS ALFONSO OSCAR', '--', '10159670843', '', '', 'calle 28 de julio 191 huaral', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48223', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48225', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48226', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48227', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48228', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48229', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48230', NULL, 'COOPERATIVA DE SERVICIOS MULTIPLES MANUEL POLO JIMENEZ ', '--', '20138167438', '', '', 'JR. NAZCA NRO. 340 LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48231', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48232', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48233', NULL, 'luis dionicio', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48234', NULL, 'VASQUEZ HUAMAN CESAR ANTONIO', '--', '10415857271', '', '', 'AV BOLIVIA 148 TDA 405 GALERIA CENTRO DE LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48235', NULL, 'VASQUEZ HUAMAN CESAR ANTONIO', '--', '10415857271', '', '', 'AV BOLIVIA 148 TDA 405 GALERIA CENTRO DE LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48236', NULL, 'VASQUEZ HUAMAN CESAR ANTONIO', '--', '10415857271', '', '', 'AV BOLIVIA 148 TDA 405 GALERIA CENTRO DE LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48237', NULL, 'VASQUEZ HUAMAN CESAR ANTONIO', '--', '10415857271', '', '', 'AV BOLIVIA 148 TDA 405 GALERIA CENTRO DE LIMA -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48238', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48240', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48241', NULL, 'angel gassane gamboa', '16005699', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48242', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48243', NULL, 'ESTUDIO Y COMERCIAL CHIRA EIRL', '--', '20256537185', '', '', 'AV. PETIT THOUARS NRO. 2663 INT. C (3ER PISO) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48244', NULL, 'ESTUDIO Y COMERCIAL CHIRA EIRL', '--', '20256537185', '', '', 'AV. PETIT THOUARS NRO. 2663 INT. C (3ER PISO) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48247', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48248', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48249', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48250', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48251', NULL, 'INNOVA PRIME SAC', '--', '20543229335', '', '', 'JR. D\'ONOFRIO NRO. 314 DPTO. 803 LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48252', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48253', NULL, 'BLACKMEDIA S.A.C.', '--', '20392489569', '', '', 'AV. BOLIVIA NRO. 148 INT. 3168 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48254', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48255', NULL, 'IMPORTACIONES MCG TRAVEL STORE E.I.R.L.', '--', '20609232464', '', '', 'AV. PASEO DE LA REPÚBLICA NRO. 395 INT. 601 (CERCA DEL CENTRO COMERCIAL POLVOS AZULES) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48256', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48257', NULL, 'hilda davalos bustamante', '10237826', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48258', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48259', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48260', NULL, 'SERVICIOS GENERALES AUTOMOTRIZ RIZA E.I.R.L', '--', '20547034067', '', '', 'MZA. Q LOTE. 17 ZONA INDUSTRIAL INCA PACHACUTEC (PARADERO BAÑARIOS ZONA INDUSTRIAL) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48261', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48262', NULL, 'VARA CURO GRIMALDO MIGUEL', '--', '10062407676', '', '', 'JR TACNA 414 PUQUIO LUCANAS AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48263', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48264', NULL, 'ARAUCO GOMEZ ELVIS JHOEL', '--', '10470759475', '', '', 'JR LURIN S/N CONCEPCION -JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48265', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48266', NULL, 'ENCARNACION PEREZ CESAR ANTONIO', '--', '10437365071', '', '', 'JR CARHUAZ 1563 LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48267', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48268', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48269', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48270', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48271', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48272', NULL, 'GRUPO SMATT S.A.C.', '--', '20607980978', '', '', 'CAL.LOS ANGELES NRO. 591 URB. RETABLO (CENTRO COMERCIAL UNICACHI) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48273', NULL, 'GRUPO SMATT S.A.C.', '--', '20607980978', '', '', 'CAL.LOS ANGELES NRO. 591 URB. RETABLO (CENTRO COMERCIAL UNICACHI) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48274', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48275', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48276', NULL, 'MUEBLES PIERO\'S SOCIEDAD COMERCIAL DE RESPONSABILIDAD L', '--', '20516729415', '', '', 'AV. MACHU PICHU NRO. 318 URB. SAN JUAN BAUTISTA (ALT. UNI SAN JUAN BAUTISTA) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48277', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48278', NULL, 'ME GUSTA PUBLICIDAD E.I.R.L.', '--', '20555751932', '', '', 'PJ. OSTOLAZA NRO. 183 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48279', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48280', NULL, 'cesar manuel clorindez guevara', '74409910', '', '', '', 'puente piedra', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48281', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48282', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48283', NULL, 'R & F INTERCONEXION SOLUTIONS E.I.R.L.', '--', '20553313831', '', '', 'CAL.GRUPO 6 MZA. N LOTE. 8 A.H. CRUZ DE MOTUPE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48284', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48285', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48286', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48287', NULL, 'EL ROSAL DEL PERU COMPANY SOCIEDAD ANONIMA', '--', '20555526653', '', '', 'AV. EL RETABLO NRO. 461 URB. EL RETABLO (FTE AL COLEGIO SAN VICENTE) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48288', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48289', NULL, 'sarai gallagos', '42889171', '', '', '', 'lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48290', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48291', NULL, 'ronald cristian cautivo cuizano', '75612067', '', '', '', 'jr. julian de morales 508 huaraz', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48292', NULL, 'julio fernando ordoñez aliaga', '07488854', '', '', '', 'huancayo', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48293', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48294', NULL, 'gonzalo jorge odar rojas', '73629477', '', '', '', 's.m.p', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48295', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48296', NULL, 'VARIOS', '28290973', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48297', NULL, 'REFUGIO CORPORACION E.I.R.L.', '--', '20610103686', '', '', 'CAL.LOS MOLLES MZA. A LOTE. 01 (ALTURA CUADRA 6 AV. SANTA ROSA) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48299', NULL, 'VARIOS', '73133948', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48300', NULL, 'MAGDA RODRIGUEZ', '18004976', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48301', NULL, 'MAGDA RODRIGUEZ', '18004976', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48303', NULL, 'GRANDEZ HUAMAN WILDER', '--', '10721192623', '', '', 'JR AMAZONAS 805 CHACHAPOYAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48304', NULL, 'AIREMAC S.A.C.', '--', '20607891410', '', '', 'MZA. D2 LOTE. 9U APV. LOS PORTALES DE ZAPALLAL LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48305', NULL, 'FURNINOX S.A.C.', '--', '20605531777', '', '', 'https://e-consultaruc.sunat.gob.pe/cl-ti-itmrconsruc/jcrS00Alias#:~:text=CAL.B MZA. D LOTE. 02 URB. RESID. MAYORAZGO DE NARANJAL LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48306', NULL, 'INDUSTRIAS NARANJAL SOCIEDAD COMERCIAL DE RESPONSABILID', '--', '20507915567', '', '', 'AV. HUAYLAS NRO. 4820 URB. PARQUE EL NARANJAL 2DA ET (ALT. DEL OVALO HUANDOY) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48308', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48309', NULL, 'ARLINDO SANTIAGO MEZA', '07124206', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48310', NULL, 'ARLINDO SANTIAGO MEZA', '07124206', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48312', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48313', NULL, 'VARIOS', '47491976', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48314', NULL, 'INVERSIONES GONZAMED SAC', '--', '20511399506', '', '', 'CAL.3 MZA. B LOTE. 14 DPTO. 201 URB. RESIDENCIAL EL PINAR (COLEG MEDALLA MILAGROSA - MCDO HACIENDA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48315', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48316', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48317', NULL, 'GRUPO JHIRE S.R.L.', '--', '20603816316', '', '', 'AV. PETIT THOUARS NRO. 1189 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48318', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48319', NULL, 'ROJAS HUILLCA DELIA', '--', '10080462099', '', '', 'AV PARDO 586 - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48320', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48321', NULL, 'MIRA DR E.I.R.L.', '--', '20605631054', '', '', 'CAL.RAYMUNDO CARCAMO NRO. 1052 DPTO. 301B LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48322', NULL, 'BANEGAS GARCIA LEYSI SUYAPA', '--', '15610531455', '', '', 'SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48324', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48325', NULL, 'SERVIMELSA EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITA', '--', '20519790794', '', '', 'CAL.LOS FICUS NRO. 210 (ESQUINA LOS FICUS CON DOS DE MAYO) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48326', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48327', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48328', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48330', NULL, 'FERNANDEZ ACEVEDO LESLI VANESA', '--', '10422980925', '', '', 'jr. 28 de julio 982 huanuco', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48331', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48332', NULL, 'ARONE ARAMBURU RUDY JANKLIN', '10480767', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48334', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48335', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48336', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48337', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48338', NULL, 'SOFER DIAGNOSTICS E.I.R.L.', '--', '20534929081', '', '', 'AV. EL TIGRE NRO. 329 (A 100 METROS DE URB. SAN MATEO EL TIGRE.) ICA - CHINCHA - CHINCHA ALTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48339', NULL, 'ZABDI PERU E.I.R.L.', '--', '20609731061', '', '', 'MZA. F LOTE. 37 A.H. REPUBLICA FEDERAL ALEMANA LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48340', NULL, 'ZABDI PERU E.I.R.L.', '--', '20609731061', '', '', 'MZA. F LOTE. 37 A.H. REPUBLICA FEDERAL ALEMANA LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48341', NULL, 'HOGAR DE NIÑAS NUESTRA SEÑORA DE LA MISERICORDIA', '--', '20512294872', '', '', 'CAL.PAN NORTE KM. 37.5 URB. VILLA LOS REYES (OVALO HOGAR) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48342', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48343', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48344', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48345', NULL, 'CAPRA GUARDIA LIZ GIOVANNA', '--', '10427947951', '', '', 'LOTISADORA EL OLIVAR MZ G LT18 HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48346', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48347', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48348', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48349', NULL, 'ARNOLD', '47819348', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48350', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48351', NULL, 'PAREDES PANDURO SILVERST STALIONS', '--', '10444884334', '', '', 'CALLE 8 MZG1 LT8 URB. EL ALAMO -CALLAO-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48353', NULL, 'PALOMINO VARGAS HAIR HERNANY', '--', '10455359282', '', '', 'AYACUCHO BLOQUE SAN FELIPE MZ A LOTE 2  HUAMANGA AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48354', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48355', NULL, 'MAQUIPERU VENDING CORP SOCIEDAD ANONIMA CERRADA', '--', '20608320998', '', '', 'CAL.ALICANTE NRO. 159 INT. 201 URB. MAYORAZGO ET. UNO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48356', NULL, 'GRUPO JAF & R INVERSIONES GENERALES S.A.C.', '--', '20569285454', '', '', 'CAL.ALFREDO NOVOA CAVA NRO. 246 URB. MARANGA (CUADRA 7 DE LA AVE RAFAEL ESCARDO) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48357', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48358', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48360', NULL, 'LOJA RUIZ REYNA YSABEL', '--', '10105409694', '', '', 'AV MARGINAL 189 JAZAN BONGARA-AMAZONAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48361', NULL, 'LOJA RUIZ REYNA YSABEL', '--', '10105409694', '', '', 'AV MARGINAL 189 JAZAN BONGARA-AMAZONAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48362', NULL, 'GRUPO MERCO EIRL', '--', '20607093181', '', '', 'AV. JAVIER PRADO ESTE NRO. 2965 URB. LAS DALIAS LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48363', NULL, 'GRUPO MERCO EIRL', '--', '20607093181', '', '', 'AV. JAVIER PRADO ESTE NRO. 2965 URB. LAS DALIAS LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48364', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48365', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48366', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48367', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48368', NULL, 'GRUPO ÑIETO JORDAN MANTENIMIENTOS GENERALES S.A.C.', '--', '20606150408', '', '', 'PJ. PS QUINUALES LOS Z1-13 NRO. 13 A.H. DE MANCHAY II AMPL SECTOR LAS MERCEDES MANCHAY LIMA - LIMA - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48369', NULL, 'GRUPO ÑIETO JORDAN MANTENIMIENTOS GENERALES S.A.C.', '--', '20606150408', '', '', 'PJ. PS QUINUALES LOS Z1-13 NRO. 13 A.H. DE MANCHAY II AMPL SECTOR LAS MERCEDES MANCHAY LIMA - LIMA - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48370', NULL, 'GRUPO ÑIETO JORDAN MANTENIMIENTOS GENERALES S.A.C.', '--', '20606150408', '', '', 'PJ. PS QUINUALES LOS Z1-13 NRO. 13 A.H. DE MANCHAY II AMPL SECTOR LAS MERCEDES MANCHAY LIMA - LIMA - PACHACAMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48371', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48372', NULL, 'CORTEZ ESTASSIO DIANA ELIZABETH', '--', '10062731406', '', '', 'PSJE ARTURO CASTILLO 896 URB LOS PINOS LIMA1', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48373', NULL, 'CORTEZ ESTASSIO DIANA ELIZABETH', '--', '10062731406', '', '', 'PSJE ARTURO CASTILLO 896 URB LOS PINOS LIMA1', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48374', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48375', NULL, 'CONSORCIO PARQUEO LINCE', '--', '20609889536', '', '', '----TOMAS GUIDO NRO. 239 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48376', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48377', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48378', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48379', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48380', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48381', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48382', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48383', NULL, 'CAMARGO & ASOCIADOS S.A.C.', '--', '20602381928', '', '', 'AV. JAVIER PRADO ESTE NRO. 560 INT. 2302 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48384', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48385', NULL, 'PAOLA JENNIFER GALLARDO ESPINOLA', '70345822', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48386', NULL, 'NEGOCIACIONES LEOPAT S.A.C.', '--', '20603036221', '', '', 'JR. 9 DE DICIEMBRE NRO. 283 CERCADO AYACUCHO - HUAMANGA - AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48387', NULL, 'NEGOCIACIONES LEOPAT S.A.C.', '--', '20603036221', '', '', 'JR. 9 DE DICIEMBRE NRO. 283 CERCADO AYACUCHO - HUAMANGA - AYACUCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48388', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48389', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48390', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48391', NULL, 'HECTOR DIAZ ZEÑA', '46929645', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48392', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48393', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48394', NULL, 'MESAC SLOT S.A.C.', '--', '20463145734', '', '', 'CAL.RISSO NRO. 129 (ALT CDRA 20 DE AV AREQUIPA) LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48396', NULL, 'MUÑICO PEINADO PATRICIA JHULISA', '--', '10420980740', '', '', 'PSJE SANTANA A16 URB LOS SAUCES ATE -LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48398', NULL, 'INVERSIONES GONZAMED SAC', '--', '20511399506', '', '', 'CAL.3 MZA. B LOTE. 14 DPTO. 201 URB. RESIDENCIAL EL PINAR (COLEG MEDALLA MILAGROSA - MCDO HACIENDA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48399', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48400', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48402', NULL, 'DISTRIBUIDORA COMERCIAL LOSA S.A.C.', '--', '20504887996', '', '', 'JR. ARICA MZA. U LOTE. 20 URB. LAS VIRREYNAS (POR PLAZA MAYOR DE LURIN) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48403', NULL, 'DISTRIBUIDORA COMERCIAL LOSA S.A.C.', '--', '20504887996', '', '', 'JR. ARICA MZA. U LOTE. 20 URB. LAS VIRREYNAS (POR PLAZA MAYOR DE LURIN) LIMA - LIMA - LURIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48404', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48405', NULL, 'PEREZ PUNTAS ANTONIO ALFREDO', '--', '10107418585', '', '', 'FRANCISCO REYES 121 COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48406', NULL, 'PEREZ PUNTAS ANTONIO ALFREDO', '--', '10107418585', '', '', 'francisco reyes 121 comas -lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48407', NULL, 'PEREZ PUNTAS ANTONIO ALFREDO', '--', '10107418585', '', '', 'francisco reyes 121 comas-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48408', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48409', NULL, 'SOLUCIONES FLAMIR E.I.R.L.', '--', '20609327414', '', '', 'PJ. SAN MARTIN NRO. 272 URB. JOSE CARLOS MARIATEGUI (ALT. CD 7 AV. JOSE OLAYA - VALLECITO ALT) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48410', NULL, 'SOLUCIONES FLAMIR E.I.R.L.', '--', '20609327414', '', '', 'PJ. SAN MARTIN NRO. 272 URB. JOSE CARLOS MARIATEGUI (ALT. CD 7 AV. JOSE OLAYA - VALLECITO ALT) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48411', NULL, 'SOLUCIONES FLAMIR E.I.R.L.', '--', '20609327414', '', '', 'PJ. SAN MARTIN NRO. 272 URB. JOSE CARLOS MARIATEGUI (ALT. CD 7 AV. JOSE OLAYA - VALLECITO ALT) LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48412', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48413', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48414', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48415', NULL, 'TERESA ARELLANO', '07297006', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48416', NULL, 'CASTRO LLOSA JESUS DANILO', '--', '10413054147', '', '', 'AV 26 DE NOVIEMBRE 581 -VMT', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48417', NULL, 'CASTRO LLOSA JESUS DANILO', '--', '10413054147', '', '', 'AV 26 DE NOVIEMBRE 581 -VMT', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48418', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48419', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48420', NULL, 'LLONTOP SOPLAPUCO OMAR ENRRIQUE', '42172793', '', '', '', 'SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48421', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48422', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48423', NULL, 'AUCCA ALARCON BLANCA ESTELA', '--', '10108748392', '', '', 'CALLE RIO MAYO MZ J LOTE 28 ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48424', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48425', NULL, 'GADEMA IMPORT EXPORT S.A.C.', '--', '20555910593', '', '', 'CAL.LOS CISNES NRO. 131 URB. SANTA CECILIA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48426', NULL, 'GADEMA IMPORT EXPORT S.A.C.', '--', '20555910593', '', '', 'CAL.LOS CISNES NRO. 131 URB. SANTA CECILIA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - BELLAVISTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48427', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48428', NULL, 'MOLITALIA S.A', '--', '20100035121', '', '', 'AV. VENEZUELA NRO. 2850 URB. ELIO (PUERTAS 3040,3046) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48429', NULL, 'TAMBO FILMS E.I.R.L.', '--', '20606675250', '', '', 'CAL.PADRE URRACA NRO. 380 URB. PADRE URRACA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48430', NULL, 'TAMBO FILMS E.I.R.L.', '--', '20606675250', '', '', 'CAL.PADRE URRACA NRO. 380 URB. PADRE URRACA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48431', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48432', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48433', NULL, 'HUARCA CACERES RUBEN DARIO', '--', '10404175209', '', '', 'JR SAN AGUSTIN 381 A SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48434', NULL, 'HUARCA CACERES RUBEN DARIO', '--', '10404175209', '', '', 'JR SAN AGUSTIN 381 A SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48435', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48436', NULL, 'BLANCA VILLAR', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48437', NULL, 'BLANCA VILLAR', '09666503', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48438', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48439', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48440', NULL, 'CELESTINA PARIAMACHE FLORES', '31619227', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48441', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48442', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48443', NULL, 'COMERCIALIZADORA LOS ANDES SOCIEDAD COMERCIAL DE RESPON', '--', '20486497344', '', '', 'AV. SEBASTIAN BARRANCA NRO. 220 CENTRO (COSTADO MUNIC.MAT NOBLE 2 P-MARTHA CCORA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48444', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48445', NULL, 'elvis yactayo gutierres', '15430165', '', '', '', 'callao', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48446', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48447', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48448', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48449', NULL, 'SODEXO PERU S.A.C.', '--', '20414766308', '', '', 'JR. DOMENICO MORELLI NRO. 110 (CC LA RAMBLA TORRE 1) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48450', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48451', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48452', NULL, 'FACTORY VISION SOCIEDAD COMERCIAL DE RESPONSABILIDAD LI', '--', '20548641676', '', '', 'AV. JOSE GALVEZ BARRENECHEA-EX AV. PRINCIPAL NRO. 964 DPTO. 204 URB. CORPAC LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48453', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48454', NULL, 'GRUPO JHIRE S.R.L.', '--', '20603816316', '', '', 'AV. PETIT THOUARS NRO. 1189 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48455', NULL, 'ZEVALLOS JULIAN JORGE ALBERTO', '--', '10105920615', '', '', 'MZ G 5 LOTE 15 PAMPLONA ALTA SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48456', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48457', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48458', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48459', NULL, 'KASE GOURMET S.A.C.', '--', '20606117320', '', '', 'CAL.HERMANOS CATARI NRO. 418 URB. MARANGA ET. TRES (ALT. CDRA 32 AV. LA MARINA) LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48460', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48461', NULL, 'CESAR ARELLANO RODRIGUEZ', '06577856', '', '', '', 'SANTA CLARA -ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48462', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48463', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48464', NULL, 'KONOHA MEDICAL S.A.C.', '--', '20610735925', '', '', 'AV. GENERAL CESAR CANEVARO NRO. 1161 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48465', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48466', NULL, 'MUNICIPALIDAD DISTRITAL SAN JOSE DE LOS CHORRILLOS', '--', '20256079535', '', '', 'CAL.SN JOSE DE LOS CHORRILLOS NRO. S/N LIMA - HUAROCHIRI - CUENCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48467', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48468', NULL, 'JUAN MORALES', '06098879', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48469', NULL, 'PROVEEDORES AMBAR S.A.C.', '--', '20601895847', '', '', 'AV. JOSE MARIANO ARCE NRO. 229 DPTO. 303 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48470', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48471', NULL, 'REPSUR OYOLO S.A.C.', '--', '20607069540', '', '', 'CAL.CONDE MONCLOVA NRO. 842 ICA - PISCO - PISCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48472', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48473', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48474', NULL, 'GALIANO TTITO DIONICIA', '--', '10258039187', '', '', 'URB LIVANESA MZ B LOTE 1 INT 19 -CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48475', NULL, 'HERRADA JARA ARIANA JHEEN', '--', '10748249422', '', '', 'ALAMEDA MANUEL PEREZ DE TUDELA BLOCK M TIENDA 489 SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48476', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48477', NULL, 'PERUVIAN LIFE SUPPORT TRAINERS - PLST', '--', '20515618997', '', '', 'CAL.ESTADOS UNIDOS NRO. 391 URB. URBANIZACION LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48478', NULL, 'PERUVIAN LIFE SUPPORT TRAINERS - PLST', '--', '20515618997', '', '', 'CAL.ESTADOS UNIDOS NRO. 391 URB. URBANIZACION LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48479', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48480', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48481', NULL, 'COLLAZOS TRUJILLO DIEGO MANUEL', '--', '10339519507', '', '', 'AV EDUARDO DE HABICH 473 SMP', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48482', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48483', NULL, 'CACHI ESPINOZA ESBERT', '--', '10477784491', '', '', 'KM 13 CARRETERA CENTRAL ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48484', NULL, 'CACHI ESPINOZA ESBERT', '--', '10477784491', '', '', 'KM 13 CARRETERA CENTRAL ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48485', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48486', NULL, 'CYNTHIA ZUÑIGA RAMOS', '09904935', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48487', NULL, 'CYNTHIA ZUÑIGA RAMOS', '09904935', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48488', NULL, 'CYNTHIA ZUÑIGA RAMOS', '09904935', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48489', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48490', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48491', NULL, 'PEREZ VICHARRA CAMILA ISABEL', '--', '10741282408', '', '', 'CALLE LOS  CEDROS  MZ B LOTE 1 SANTA EULALIA HUAROCHIRI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48492', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48493', NULL, 'DIANA SUSANA CUBA MARTINEZ', '41506745', '', '', '', 'HUANCAYO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48494', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48495', NULL, 'MN KUNTUR LOGISTIC S.A.C.', '--', '20607986402', '', '', 'CAL.ICHU NRO. 220 URB. EL AGUSTINO ZN. SIETE LIMA - LIMA - EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48496', NULL, 'PSICOMEDIC EIRL', '--', '20516048060', '', '', 'CAL.LOS LIRIOS NRO. 148 DPTO. 402 URB. JARDIN LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48497', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48498', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48499', NULL, 'aide sanchez', '28294748', '', '', '', 'ayacucho', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48500', NULL, 'BAÑOS TURCOS S R LTDA', '--', '20101088376', '', '', 'CAL.MIGUEL DASSO NRO. 156 URB. SANTA ISABEL LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48501', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48502', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48503', NULL, 'ARESTEGUI BACA JESSICA JANET', '--', '10406297280', '', '', 'CALLE TESHUDY 385 URB MANGOMARCA- SJL- LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48504', NULL, 'ARESTEGUI BACA JESSICA JANET', '--', '10406297280', '', '', 'CALLE TESHUDY 385 URB MANGOMARCA- SJL- LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48505', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48506', NULL, 'PEDRO AVILA RODRIGEZ', '26952158', '', '', '', 'PANAMERICANA 245 PUENTE VIRU-VIRU', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48507', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48508', NULL, 'SERVICIO DE ALIMENTOS MAGAR E.I.R.L.', '--', '20603930160', '', '', 'CAL.LAS GARZAS NRO. 289 URB. LIMATAMBO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48509', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48510', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48511', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48512', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48513', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48514', NULL, 'MAKING MUSIC S.A.C.', '--', '20602916341', '', '', 'AV. REPUBLICA DE PANAMA NRO. 220 URB. SAN IGNACIO LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48515', NULL, 'MAKING MUSIC S.A.C.', '--', '20602916341', '', '', 'AV. REPUBLICA DE PANAMA NRO. 220 URB. SAN IGNACIO LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48516', NULL, 'MAKING MUSIC S.A.C.', '--', '20602916341', '', '', 'AV. REPUBLICA DE PANAMA NRO. 220 URB. SAN IGNACIO LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48517', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48518', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48519', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48520', NULL, 'PAREDES PANDURO SILVERST STALIONS', '--', '10444884334', '', '', 'MZ G 8 LOTE 8 URB EL ALAMO CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48521', NULL, 'PAREDES PANDURO SILVERST STALIONS', '--', '10444884334', '', '', 'MZ G 8 LOTE 8 URB EL ALAMO CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48522', NULL, 'PAREDES PANDURO SILVERST STALIONS', '--', '10444884334', '', '', 'MZ G 8 LOTE 8 URB EL ALAMO CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48523', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48524', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48525', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48526', NULL, 'NIEVE CONTRERAS MARIA SOLEDAD', '--', '10443080631', '', '', 'AV. RAYMONDI 1012TINGO MARIA- LEONCIO PRADO -HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48527', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48528', NULL, 'HERNAN GRANADO CHOZO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48529', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48530', NULL, 'CONSORCIO DHMONT & CG & M SOCIEDAD ANONIMA CERRADA', '--', '20502574109', '', '', 'AV. ANGAMOS ESTE NRO. 1648 DPTO. 405 (FTE GAN UNIDAD R PALMA) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48531', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48532', NULL, 'paulo roberto gutierrez contreras', '43604958', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48533', NULL, 'THE TROPICAL CONCEPT S.A.C.', '--', '20609682443', '', '', 'CAL.TERUEL NRO. 323 DPTO. 401 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48534', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48535', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48536', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48537', NULL, 'VERA RODRIGUEZ EYMIE HYPATIA', '--', '10736262571', '', '', 'av. peru 1174 cajamarca-cajamarca', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48538', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48539', NULL, 'CIAAN LOGISTICS PERU S.A.C.', '--', '20604280819', '', '', 'AV. JUAN ESPINOZA MEDRANO MZA. B4 LOTE. 41 URB. CAMPOY LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48540', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48541', NULL, 'CHOCO FOREST E.I.R.L.', '--', '20606866977', '', '', 'CAR.FERNANDO BELAUNDE TERRY JUANJUI NRO. S/N OTR. OTR. CARRETERA FERNANDO BELAUNDE TERRY JUANJUI SAN MARTIN - MARISCAL CACERES - JUANJUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48542', NULL, 'CHOCO FOREST E.I.R.L.', '--', '20606866977', '', '', 'CAR.FERNANDO BELAUNDE TERRY JUANJUI NRO. S/N OTR. OTR. CARRETERA FERNANDO BELAUNDE TERRY JUANJUI SAN MARTIN - MARISCAL CACERES - JUANJUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48543', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48544', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48545', NULL, 'anthony', '47853648', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48546', NULL, 'TITO CORONEL JESUS ENRIQUE', '--', '10710373987', '', '', 'jr. grau #529 yanahuanca-pasco', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48547', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48548', NULL, 'yeisson crispin', '76024120', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48549', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48550', NULL, 'REPRESENTACIONES DENTAL YURY E.I.R.L.', '--', '20601103029', '', '', 'AV. EMANCIPACION NRO. 414 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48551', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48552', NULL, 'RUIZ AYON SOCIEDAD ANÓNIMA CERRADA', '--', '20603888007', '', '', 'MZA. P1 LOTE. 19 URB. JARDIN 1 ETAPA PIURA - SULLANA - SULLANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48553', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48554', NULL, 'PEREZ COELLO LUISA ESTHER', '--', '10436831981', '', '', 'AV MIGUEL GRAU MZ 13 LT 17 CHINCHA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48555', NULL, 'CV SOLUCIONES S.A.C.', '--', '20610065661', '', '', 'MZA. E LOTE. 8 URB. LAS GARDENIAS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48556', NULL, 'CHAVEZ AHUMADA ENRIQUE', '--', '10075756025', '', '', 'JR SOLEDAD 585 -LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48557', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48558', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48559', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48560', NULL, 'ARAOZ TUEROS JHON KILLER', '--', '10422497710', '', '', 'CALLE PIURA MZ B LOTE 8A ASOC.CAMPO SOL LURIGANCHO -CHOSICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48561', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48562', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48563', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48564', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48565', NULL, 'FLORES AQUIJE SILVIA FLOR', '--', '10218244993', '', '', 'SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48566', NULL, 'GERALDINE MARINE EVANGELISTA', '43588137', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48567', NULL, 'GERALDINE MARINE EVANGELISTA', '43588137', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48568', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48569', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48570', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48571', NULL, 'PRODUCCIONES ENLACE E.I.R.L.', '--', '20604124680', '', '', 'CAL.1 MZA. C LOTE. 15 DPTO. 2 INT. B A.H. JOSE CARLOS MARIATEGUI LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48572', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48573', NULL, 'PACO AYCA PAULINO CARLOS', '--', '10099397531', '', '', 'JR ANDAHUAYLAS 778 INT 309  LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48574', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48575', NULL, 'DELICIA CASBERR S.A.C.', '--', '20608184571', '', '', 'AV. UNIVERSITARIA NRO. 7512 URB. EL RETABLO (AV. BELAUNDE CON AV. UNIVERSITARIA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48576', NULL, 'DELICIA CASBERR S.A.C.', '--', '20608184571', '', '', 'AV. UNIVERSITARIA NRO. 7512 URB. EL RETABLO (AV. BELAUNDE CON AV. UNIVERSITARIA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48577', NULL, 'DELICIA CASBERR S.A.C.', '--', '20608184571', '', '', 'AV. UNIVERSITARIA NRO. 7512 URB. EL RETABLO (AV. BELAUNDE CON AV. UNIVERSITARIA) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48578', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48579', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48580', NULL, 'NAVARRO HUAYLLA FANNY', '--', '10702246135', '', '', 'JR MALECON URB VALLE DORADO  MZ O LT 29   PICHARI - CUSCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48581', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48582', NULL, 'RUTH PAS ALCANTARA', '00000000', '', '', '', 'HUACHO', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48583', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48584', NULL, 'LOGISTIC TECHNOLOGIC SYSTEM S.A.C', '--', '20514982679', '', '', '----PEDRO BOCANEGRA NRO. 372 URB. EL BOSQUE LIMA - LIMA - RIMAC', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48585', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48586', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48587', NULL, 'INVERSIONES WONG SOCIEDAD ANONIMA CERRADA', '--', '20557747142', '', '', 'CAL.LOS LICOPODIOS NRO. 125 URB. SAN HILARION ETAPA 2 LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48588', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48589', NULL, 'VELASQUEZ SANCHEZ DE GALDOS JENCY', '--', '10437360583', '', '', 'VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48590', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48591', NULL, 'LAZARO CHERO JORGE MIGUEL', '--', '10073475142', '', '', 'jr. carmen 472 surquillo-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48592', NULL, 'REYES QUIÑONES ISAIAS JOSE', '--', '10156316321', '', '', 'AV. ALFONSO UGARTE #144 STAND 318 SOTANO  GALERIA UNICENTRO -CERCADO DE LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48593', NULL, 'KELLY BAÑOS', '73739886', '', '', '', 'MARCONA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48594', NULL, 'TELEPIZZA ANDINA S.A.C.', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48595', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48596', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48597', NULL, 'STC (PERU) S.A.C.', '--', '20100671973', '', '', 'JR. JOSE RODRIGUEZ DE MENDOZA NRO. 191 A.H. JOSE RODRIGUEZ DE MENDOZA (ANTES AV ROGER VIDAL) LIMA - LIMA - SANTA ANITA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48598', NULL, 'CAPTRI PERU S.A.C.', '--', '20601298491', '', '', 'AV. MARISCAL ANDRES AVELINO CACERES NRO. 284 URB. VALDIVIEZO LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48599', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48600', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48601', NULL, 'INDUSTRIAS PROYECTOS SERVICIOS GENERALES Y ASESORIA E.I', '--', '20545361869', '', '', 'AV. EMANCIPACION NRO. 831 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48602', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48603', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48604', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48605', NULL, 'RUIZ AYON SOCIEDAD ANÓNIMA CERRADA', '--', '20603888007', '', '', 'MZA. P1 LOTE. 19 URB. JARDIN 1 ETAPA PIURA - SULLANA - SULLANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48606', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48607', NULL, 'TITO CORONEL JESUS ENRIQUE', '--', '10710373987', '', '', 'JR. GRAU #529 YANAHUANCA-PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48608', NULL, 'REPRESENTACIONES DENTAL YURY E.I.R.L.', '--', '20601103029', '', '', 'AV. EMANCIPACION NRO. 414 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48609', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48610', NULL, 'CHOCO FOREST E.I.R.L.', '--', '20606866977', '', '', 'CAR.FERNANDO BELAUNDE TERRY JUANJUI NRO. S/N OTR. OTR. CARRETERA FERNANDO BELAUNDE TERRY JUANJUI SAN MARTIN - MARISCAL CACERES - JUANJUI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48611', NULL, 'CIAAN LOGISTICS PERU S.A.C.', '--', '20604280819', '', '', 'AV. JUAN ESPINOZA MEDRANO MZA. B4 LOTE. 41 URB. CAMPOY LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48612', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48613', NULL, 'VERA RODRIGUEZ EYMIE HYPATIA', '--', '10736262571', '', '', 'AV. PERU #1174 CAJAMARCA-CAJAMARCA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48614', NULL, 'THE TROPICAL CONCEPT S.A.C.', '--', '20609682443', '', '', 'CAL.TERUEL NRO. 323 DPTO. 401 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48615', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48616', NULL, 'SERVICIO DE ALIMENTOS MAGAR E.I.R.L.', '--', '20603930160', '', '', 'CAL.LAS GARZAS NRO. 289 URB. LIMATAMBO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48617', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48618', NULL, 'IMPORT. Y REPRST. SONO LUZ S.R.L.', '--', '20203511443', '', '', 'CAL.PORTA NRO. 150 INT. 29 OTR. CENTRO COMERCIAL D-TODO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48619', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48620', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48621', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48622', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48623', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48624', NULL, 'RISING SUN BUSINESS GROUP S.A.C.', '--', '20606413484', '', '', 'MZA. C1 LOTE. 22 URB. VILLA CORPAC LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48625', NULL, 'MAYURI SALVADOR JACQUELINE GLORIA', '--', '10417528160', '', '', 'MZ G 2 LOTE 28 SECTOR 1 BARRIO 4TA ETAPA URB. PACHACAMAC - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48626', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48627', NULL, 'norma fernandez', '10582422', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48628', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48629', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48630', NULL, 'GOMEZ UQUICHE ADRIAN ANDRES', '--', '10445641362', '', '', 'villa venturo mz18 lt12 chorillos-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48631', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48632', NULL, 'SANGUCHES DEL PERU S.A.C.', '--', '20510885229', '', '', 'AV. DOS DE MAYO NRO. 1002 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48633', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48634', NULL, 'CASAS TORREJON JOSE ANTONIO', '40494827', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48635', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48636', NULL, 'INVERSIONES NAIARA EIRL', '--', '20492167771', '', '', 'JR. MOORE NRO. 207 (HOTEL NAIARA-S71873673) JUNIN - YAULI - YAULI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48637', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48638', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48639', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48640', NULL, 'LASINO S.A.', '--', '20388829452', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48641', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48642', NULL, 'CONSORCIO SALUD LIMA SUR S.A.C.', '--', '20600716388', '', '', 'AV. SAN JUAN NRO. 871 URB. SAN JUAN LIMA - LIMA - SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48643', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48644', NULL, 'MC SERVICIOS DE SANEAMIENTO AMBIENTAL SOCIEDAD ANONIMA ', '--', '20507896163', '', '', 'PJ. VICTORIA NRO. 560 DPTO. 11 (ALT. CDRA 20 PROLONGACION SUCRE) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48645', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48646', NULL, 'COTERA CACERES ANA ROSA', '--', '10444226990', '', '', 'VILLA LOS OLIVOS MZ B LOTE 25 SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48647', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48648', NULL, 'FAST DESIGN FD S.A.C.', '--', '20543134971', '', '', 'AV. INCA GARCILAZO DE LA VEGA NRO. 1132 INT. 201 (SEGUNDO PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48649', NULL, 'VARIOS', '07630540', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48650', NULL, 'ROJAS HUILLCA DELIA', '--', '10080462099', '', '', 'AV JOSE PARDO 586 MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48651', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48652', NULL, 'SUPERAZUCAR DEL PERU S.A.C. - SADP S.A.C.', '--', '20605388991', '', '', 'CAL.LOS NARANJOS NRO. 329 URB. ORRANTIA LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48653', NULL, 'DEUDOR HERRERA OSCAR MANUEL', '--', '10102604615', '', '', 'ASOC. LAS GARDENIAS MZ 10 LT30 SANTA ANITA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48654', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48655', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48656', NULL, 'XPRO S.A.C. MINEPARTS', '--', '20515386255', '', '', 'JR. CAJAMARQUILLA NRO. 646 URB. AZCARRUNZ BAJO LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48657', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48658', NULL, 'A LA MANO H & S E.I.R.L.', '--', '20609583640', '', '', 'AV. COSTANERA NRO. 1169 DPTO. 1101 (TORRE 4) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48659', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48660', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48661', NULL, 'GAYOSO VELASQUEZ ELLA MARIA', '--', '10076383931', '', '', 'alberto alexander 2716-lince-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48662', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48663', NULL, 'ARAGON HORNA VALERIA BELEN', '--', '10762776508', '', '', 'av. jose carlos mariategui mzd lt25 ancon-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48664', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48665', NULL, 'ESTAR BIEN S.A.C.', '--', '20603244240', '', '', 'CAL.MANUEL ESTACIO NRO. 185 URB. PANDO 7MA ET. LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48666', NULL, 'ESTAR BIEN S.A.C.', '--', '20603244240', '', '', 'CAL.MANUEL ESTACIO NRO. 185 URB. PANDO 7MA ET. LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48667', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48668', NULL, 'kerlly ruiz diaz', '43575506', '', '', '', 'bellavista-callao', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48669', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48670', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48671', NULL, 'GRUPO WONG ESPINOZA S.A.C.', '--', '20610988106', '', '', 'AV. UNIVERSITARIA NRO. 1661 URB. SANTA EMMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48672', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48673', NULL, 'ESTAR BIEN S.A.C.', '--', '20603244240', '', '', 'CAL.MANUEL ESTACIO NRO. 185 URB. PANDO 7MA ET. LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48674', NULL, 'GREEN GOLD COMPANY S.A.', '--', '20605231137', '', '', 'FERNANDO WILLIANS NRO. 115 PILARES AZULES PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48675', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48676', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48677', NULL, 'NATWASI S.A.C.', '--', '20607485683', '', '', 'AV. PRIMAVERA 1786-1788 URBANIZACIÓN CENTRO COMERCIAL MONTERRICO MZA. P2 LOTE. 24 LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48678', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48679', NULL, 'mari luz', '40877008', '', '', '', 'huacho', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48680', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48681', NULL, 'TANTA HUACCHA ROSA ESPERANZA', '--', '10453154063', '', '', 'NUEVO PUCUASANA  MZ K LT 24  - PUCUSANA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48682', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48683', NULL, 'FJ368 SOCIEDAD ANONIMA CERRADA', '--', '20546043861', '', '', 'AV. GUARDIA CIVIL NRO. 1321 INT. 501 (ESQUINA CON AV. THOMAS MARZANO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48684', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48685', NULL, 'LAS OLAS DE DON TEO E.I.R.L.', '--', '20555869003', '', '', 'AV. SAN JOSE MZA. D LOTE. 7 URB. LAS ORQUIDEAS LIMA - LIMA - SAN BARTOLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48686', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48687', NULL, 'GARCIA ROSSI HEYDI MARISOL', '--', '10428138061', '', '', 'AV SANTA ISABEL 230 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48688', NULL, 'CD ELIZABETH RUIZ GONZALES S.A.C.', '--', '20607463906', '', '', 'AV. LAS GAVIOTAS NRO. 582 URB. LA CAMPIÑA ZONA DOS LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48689', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48690', NULL, 'FJ368 SOCIEDAD ANONIMA CERRADA', '--', '20546043861', '', '', 'AV. GUARDIA CIVIL NRO. 1321 INT. 501 (ESQUINA CON AV. THOMAS MARZANO) LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48691', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48692', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48693', NULL, 'JM & L CORPORACION TEXTIL JAMESTOWN S.A.C.', '--', '20608572989', '', '', 'CAL.JUAN CACERES NRO. 230 URB. SANTO DOMINGO LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48694', NULL, 'JM & L CORPORACION TEXTIL JAMESTOWN S.A.C.', '--', '20608572989', '', '', 'CAL.JUAN CACERES NRO. 230 URB. SANTO DOMINGO LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48695', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48696', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48697', NULL, 'ROQUE EVANGELISTA FRANCISCO ROBERT', '--', '10101702362', '', '', 'jr. ayacucho 823 4to piso -la victoria-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48698', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48699', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48700', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48701', NULL, 'estudio rodriguez angobaldo s.a.c', '--', '20380558975', '', '', 'calle chinchon 601 san isidro-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48702', NULL, 'ESTUDIO RODRIGUEZ ANGOBALDO S.A.C.', '--', '20380589754', '', '', 'CAL.CHINCHON NRO. 601 URB. JARDIN LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48703', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48704', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48705', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48706', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48707', NULL, 'EL GARAGE AUTOMOTRIZ EMPRESA INDIVIDUAL DE RESPONSABILI', '--', '20604408661', '', '', 'PJ. SANTA ROSA NRO. 175 URB. PRIMAVERA DE MONTERRICO LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48708', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48709', NULL, 'CONSTRUCTORA SAN MIGUEL MARIAM S.A.C.', '--', '20491406063', '', '', 'MZA. M1 LOTE. 40 INT. P2 COOP. DE VIV PRIMAVERA (ALT. CUADRA 13 AV. RETABLO) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48710', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48711', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48712', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48713', NULL, 'CASTILLA HUAPAYA VICTOR WILMER', '--', '10214492381', '', '', 'av. buenos aires 1715 bellavista-callao-callao', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48714', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48715', NULL, '- ASOCIACION EVANGELICA DE LA MISION ISRAELITA DEL NUEV', '--', '20147968605', '', '', 'AV. MORRO SOLAR NRO. 1234 DPTO. 2PIS URB. LAS GARDENIAS (ALT DE PROSEGUR) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48716', NULL, 'BOLIVARIANA DE CARGAS S.R.LTDA.', '--', '20380639522', '', '', 'JR. TALARA NRO. 104 URB. SANTA LUISA (ALT. 38. Y 39 AV. LA MARINA HOSTAL) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - LA PERLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48717', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48718', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48719', NULL, 'HYDROMAQ S.A.C.', '--', '20506912921', '', '', 'JR. MARIANO CORNEJO NRO. 916 (ALT. PLAZA DE LA BANDERA) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48720', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48721', NULL, '2M FOOD S.A.C.', '--', '20601984769', '', '', 'JR. ZEUS NRO. 809 URB. MERCURIO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48722', NULL, 'INERCO CONSULTORIA PERU S.A.C.', '--', '20509921441', '', '', 'AV. ANDRÉS REYES NRO. 338 (PISO 3, OFICINA 122) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48723', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48724', NULL, 'NEWREST PERU S.A.C.', '--', '20381235051', '', '', 'CAL.CALLE A MZA. B LOTE. 4-A URB. BOCANEGRA (ALT. CDRA.36 E.FAUCETT -ALT. COLDEX) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48725', NULL, 'INVERSIONES & NEGOCIOS ESPINOZA E.I.R.L.', '--', '20609077680', '', '', 'CAL.LOS MANGOS NRO. 274 URB. CANTO GRANDE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48726', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48727', NULL, 'FLORES DEL CASTILLO GUILIANA JESUS', '--', '10450155816', '', '', 'JR CHOTA 1591 CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48728', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48729', NULL, 'SALAZAR GONZALES PABLO CESAR', '--', '10106949307', '', '', 'CALLE ELIAS  AGUIRRE MZ C LOTE 10 KM 18 AV TUPAC AMARU - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48730', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48731', NULL, 'SEBAS PARK E.I.R.L.', '--', '20608523104', '', '', 'PJ. JOSE C. MARIATEGUI - HUAYCAN MZA. C LOTE. 2 URB. NÚCLEO CENTRAL DE SERVICIOS (CASA FACHADA COLOR CREMA-PUERTA METAL) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48732', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48733', NULL, 'C.H. RETAIL S.A.C.', '--', '20606990058', '', '', 'AV. RICARDO PALMA NRO. 835 DPTO. 503 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48734', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48735', NULL, 'QUARK INVESTMENT SOCIEDAD ANÓNIMA CERRADA- QUARK INVEST', '--', '20608891880', '', '', 'LA REPUBLICA NRO. 708 DPTO. 501 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48736', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48737', NULL, 'RESTAURANT PEÑA TURÍSTICA EL TIBURON NORTEÑO S.A.C.', '--', '20517807878', '', '', 'JR. PUNO NRO. 473 (ENTRE PUNO Y ABANCAY) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48738', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48739', NULL, 'VARIOS', '40307728', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48740', NULL, 'YNTI PINEDO LIZZIE LUCERO', '--', '10700263041', '', '', 'JR LUIS BARELA Y ORBEGOZO 555 SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48741', NULL, 'RIFLOJUNIOR S.A.C.', '--', '20535821411', '', '', 'PJ. MERCURIO PERUANO NRO. 125 URB. VALLE HERMOSO OESTE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48742', NULL, 'RIFLOJUNIOR S.A.C.', '--', '20535821411', '', '', 'PJ. MERCURIO PERUANO NRO. 125 URB. VALLE HERMOSO OESTE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48743', NULL, 'RIFLOJUNIOR S.A.C.', '--', '20535821411', '', '', 'PJ. MERCURIO PERUANO NRO. 125 URB. VALLE HERMOSO OESTE LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48744', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48745', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48746', NULL, 'GARCIA ROSSI HEYDI MARISOL', '--', '10428138061', '', '', 'AV. SANTA ISABEL 230 EL AGUSTINO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48747', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48748', NULL, 'VARIOS', '07501482', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48749', NULL, 'MIGUEL SIMON LUCIA NANCY', '--', '10159638290', '', '', 'CALLE ANIMAS #124B -HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48750', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48751', NULL, 'CRISP MARTINEZ FUENTES', '72361883', '', '', '', 'MAGDALENA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48752', NULL, 'EPS ENLACE MEDICO FINANCIERO SAC', '--', '20522047555', '', '', 'JR. B. LAZO NRO. 632 (A MEDIA CUADRA DE LA PLAZA DE ARMAS) LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48753', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48754', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48755', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48756', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48757', NULL, 'METRO GAS S.A.C.', '--', '20219231688', '', '', 'CAL.DONA ANA NRO. 306 URB. LOS ROSALES LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48758', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48759', NULL, 'HUAMANCONDOR ULLOA YESENIA LIZETH', '--', '10472706808', '', '', 'MERCADO MODELO PUESTO 147 A  CHIMJBOTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48760', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48761', NULL, 'BENITO CHOQUE VILLA', '02856238', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48762', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48763', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48764', NULL, 'JULIO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48765', NULL, 'ASOCIACION POR UNA NIÑEZ SALVA Y SEGURA IMO', '--', '20608455923', '', '', 'JR. VILLA MARIA NRO. 872 A.H. VILLA MARIA DEL PERPETUO SOCORRO (2DO PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48766', NULL, 'ASOCIACION POR UNA NIÑEZ SALVA Y SEGURA IMO', '--', '20608455923', '', '', 'JR. VILLA MARIA NRO. 872 A.H. VILLA MARIA DEL PERPETUO SOCORRO (2DO PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48767', NULL, 'ASOCIACION POR UNA NIÑEZ SALVA Y SEGURA IMO', '--', '20608455923', '', '', 'JR. VILLA MARIA NRO. 872 A.H. VILLA MARIA DEL PERPETUO SOCORRO (2DO PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48768', NULL, 'INVERSIONES GMMA SOCIEDAD ANONIMA CERRADA', '--', '20571602416', '', '', 'CAL.GERMAN MENACHO NRO. S/N (1RA. CDRA. - FTE, AL COLEG. SAN CARLOS) LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48769', NULL, 'INVERSIONES GMMA SOCIEDAD ANONIMA CERRADA', '--', '20571602416', '', '', 'CAL.GERMAN MENACHO NRO. S/N (1RA. CDRA. - FTE, AL COLEG. SAN CARLOS) LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48770', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48771', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48772', NULL, 'CORPORACION ALIMENTARIA MAAZ S.A.C. - CORALIMA S.A.C.', '--', '20600225805', '', '', 'JR. MORRO DE ARICA NRO. 408 OTR. LA PERLA (A ESPALDAS DEL COLEGIO CONCORDIA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48773', NULL, 'CORPORACION ALIMENTARIA MAAZ S.A.C. - CORALIMA S.A.C.', '--', '20600225805', '', '', 'JR. MORRO DE ARICA NRO. 408 OTR. LA PERLA (A ESPALDAS DEL COLEGIO CONCORDIA) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48774', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48775', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48776', NULL, 'DISTRIBUIDORA GENERAL DEL PERU E.I.R.L.', '--', '20602148620', '', '', 'JR. POMABAMBA NRO. 332 URB. HUERTA LA VIRREYNA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48777', NULL, 'DISTRIBUIDORA GENERAL DEL PERU E.I.R.L.', '--', '20602148620', '', '', 'JR. POMABAMBA NRO. 332 URB. HUERTA LA VIRREYNA LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48778', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48779', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48780', NULL, 'ABALFRESH SOCIEDAD ANONIMA CERRADA', '--', '20510139560', '', '', 'CAL.LAS CIRUELAS MZA. E1 LOTE. 25 URB. LA ALBORADA (A UNA CUADRA DE LA AV.LOS INCAS Y UNIVER) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48781', NULL, 'ABALFRESH SOCIEDAD ANONIMA CERRADA', '--', '20510139560', '', '', 'CAL.LAS CIRUELAS MZA. E1 LOTE. 25 URB. LA ALBORADA (A UNA CUADRA DE LA AV.LOS INCAS Y UNIVER) LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48782', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48783', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48784', NULL, 'VARGAS GOIZUETA BRIGITTE INES', '--', '10769225400', '', '', 'JR LAS CUCARDAS 120 -SMP', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48785', NULL, 'VARGAS GOIZUETA BRIGITTE INES', '--', '10769225400', '', '', 'JR LAS CUCARDAS 120 -SMP', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48786', NULL, 'OLGA GUILLEN ESPINOZA', '15593056', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48787', NULL, 'OLGA GUILLEN ESPINOZA', '15593056', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48788', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48789', NULL, 'PIZZERIA-TRATTORIA PASSIONE ITALIANA S.A.C.', '--', '20600731000', '', '', 'AV. ESTEBAN CAMPODONICO NRO. 363 URB. SANTA CATALINA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48790', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48791', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48792', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48793', NULL, 'TORALVA FLORES JOSE MANUEL', '--', '10076372069', '', '', 'JR PARURO 1401 INT 130 LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48794', NULL, 'TORALVA FLORES JOSE MANUEL', '--', '10076372069', '', '', 'JR PARURO 1401 INT 130 LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48795', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48796', NULL, 'RETAMOZO TAPIA IVANA SOPHIA', '--', '10729506031', '', '', 'AV. FERROCARRIL #1035 HUANCAYO-JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48797', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48798', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48799', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48800', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48801', NULL, 'COMATEL DISTRIBUTION SOCIEDAD ANONIMA CERRAD', '--', '20504620485', '', '', 'CAL.RICARDO PAZOS VARELA NRO. 127 URB. LAS LEYENDAS LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48802', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48803', NULL, 'FLORES ORIA MARCOS DAVID', '--', '10102167819', '', '', 'AV. BALAGUER MZG LT3 CHOSICA LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48804', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48805', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48806', NULL, 'RAMOS ELIAS PEDRO ELIBERTO', '--', '10028344061', '', '', 'PROLONGACION PARINACOCHA DPTO 18 -LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48807', NULL, 'RAMOS ELIAS PEDRO ELIBERTO', '--', '10028344061', '', '', 'PROLONGACION PARINACOCHA DPTO 18 -LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48808', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48809', NULL, 'LASER DENT MEDIC S.A.C.', '--', '20610019685', '', '', 'AV. LOS DOMINICOS MZA. L LOTE. 27 INT. 2 URB. JORGE CHAVEZ ETP II (ALT. AV. TOMAS VALLE) PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48810', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48811', NULL, 'DIRECTIVA ROCHDALE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48812', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48813', NULL, 'PROGR NAC PARA LA PREVENC Y ERRADIC DE LA VIOLENCIA CON', '--', '20512807411', '', '', 'JR. CAMANA NRO. 616 (PISO 9 - EDIFICIO MINISTERIO DE LA MUJER) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48814', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48815', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48816', NULL, 'MILUSKA  STEFANY YABAR CARMEN', '47988562', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48817', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48818', NULL, 'CHARITO INVERSIONES CONST. S.A.C.', '--', '20604516898', '', '', 'JR. TORRE TAGLE NRO. 573 BAR. CENTRO (S75034295-ESQ CON JR CARABAYA) HUANCAVELICA - HUANCAVELICA - HUANCAVELICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48819', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48820', NULL, 'BGS INGENIEROS SOCIEDAD ANONIMA CERRADA', '--', '20503991331', '', '', 'CAL.PEDRO IRIGOYEN DIEZ C NRO. 186 URB. SANTA RITA (ALT. CDRA 65 AV. REPUBLICA DE PANAMA) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48821', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48822', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48823', NULL, 'MIRANDA PAREDES JOE LUIS', '--', '10106584082', '', '', 'AV HUANCAYO 815 INT 158 A CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48824', NULL, 'MIRANDA PAREDES JOE LUIS', '--', '10106584082', '', '', 'AV HUANCAYO 815 INT 158 A CERCADO DE LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48825', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48826', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48827', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48828', NULL, 'MABEL ESTEBAN', '06774480', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48829', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48830', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48831', NULL, 'MABEL ESTEBAN', '06774480', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48832', NULL, 'IMPORTACIONES RUBIMAR SOCIEDAD ANONIMA CERRADA - IMPORT', '--', '20602601278', '', '', 'JR. CUSCO NRO. 626 INT. 2153 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48833', NULL, 'INES ROCIO ESPINOZA LINARES', '06783556', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48834', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48835', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48836', NULL, 'MARLENE', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48837', NULL, 'WILLIANS QUISPE', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48838', NULL, 'TECNONAVAL S.A.C.', '--', '20567150292', '', '', 'JR. SARGENTO LORES NRO. 1334 INT. A URB. VIRGEN DE LORETO LORETO - MAYNAS - IQUITOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48839', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48840', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48841', NULL, 'GOMEZ UQUICHE ADRIAN ANDRES', '--', '10445641362', '', '', 'VILLA BENTURO MZ18 LT12 CHORRILLOS--LIMA-LMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48842', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48843', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48844', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48845', NULL, 'HZGROUP FAST SOLUTION S.A.C.', '--', '20606182547', '', '', 'PRO.MARISCAL NIETO NRO. 142 URB. LOS SAUCES (ENTRE AV. LAS TORRES Y AV. MARICAL NIETO) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48846', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48847', NULL, 'UNIVERSIDAD PERUANA UNION', '--', '20138122256', '', '', 'CAR.CENTRAL KM. 19 VILLA UNION-NANA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48848', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48849', NULL, 'SANCHEZ LLOSA CARLOS AMILCAR', '--', '10296169582', '', '', 'los claveles lima-lurin', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48850', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48851', NULL, 'YEFICO SOCIEDAD ANONIMA CERRADA', '--', '20514635952', '', '', '----SECTOR 2 MZA. F LOTE. 04 GRU. 13 (CRUCE AV REVULUCION Y AV VELASCO) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48852', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48853', NULL, 'lucila saavedra narva', '32789532', '', '', '', 'trujillo', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48854', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48855', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48856', NULL, 'lucila maria saavedra narba', '32789532', '', '', '', 'trujillo', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48857', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48858', NULL, 'COLLACHAGUA VILLAJUAN ANA MARGARITA', '--', '10457498905', '', '', 'CALLE HUANUCO S/N HUAY HUAY-JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48859', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48860', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48861', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48862', NULL, 'CURO VICTORIA YESSENIA', '--', '10444999409', '', '', 'AV ABANCAY 1054 INT 508-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48863', NULL, 'RIMARIANI INVERSIONES E.I.R.L.', '--', '20607156485', '', '', 'JR. CORONEL FRANCISCO BOLOGNESI NRO. 464 URB. ORBEA LIMA - LIMA - MAGDALENA DEL MAR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48864', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48865', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48866', NULL, 'YUSIBLU E.I.R.L.', '--', '20610271767', '', '', 'JR. DOMINGO CUETO NRO. 579 URB. RISSO LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48867', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48868', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48869', NULL, 'CHEN JING WEN', '--', '10096750736', '', '', 'HABICH #419 SAN MARTIN DE PORRES-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48870', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48871', NULL, 'GLOBAL FRANQUICIAS INTERNACIONAL S.A.C.', '--', '20552124813', '', '', 'MLC.MIGUEL CHECA EGUIGUREN NRO. 153 URB. ZARATE (FRENTE DEL MERCADO EL BOSQUE) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48872', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48873', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48874', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48875', NULL, 'CONTTENTO S.A.C.', '--', '20551709320', '', '', 'JR. RISSO NRO. 129 LIMA - LIMA - LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48876', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48877', NULL, 'MELGAR CRUZADO DE LLONTOP EDY DEL PILAR', '--', '10062765050', '', '', 'JR TAMBO GRANDE MZ F -CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48878', NULL, 'MELGAR CRUZADO DE LLONTOP EDY DEL PILAR', '--', '10062765050', '', '', 'JR TAMBO GRANDE MZ F -CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48879', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48880', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48881', NULL, 'FRANCISCO CONDORI CHAVEZ', '48569928', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48882', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48883', NULL, 'YEFICO SOCIEDAD ANONIMA CERRADA', '--', '20514635952', '', '', 'SECTOR 2 MZA. F LOTE. 04 GRU. 13 (CRUCE AV REVULUCION Y AV VELASCO) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48884', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48885', NULL, 'CAYETANO AIRE ESTHER', '--', '10042028431', '', '', 'JR. 28 DE JULIO #223 PARAGSHA -SIMON BOLIVAR-PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48886', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48887', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48888', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48889', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48890', NULL, 'abel moreno', '46581082', '', '', '', 'pichanaqui', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48891', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48892', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48893', NULL, 'aida parraga flores', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48894', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48895', NULL, 'VICENTE HECTOR LUIS', '--', '10400049349', '', '', 'MZD LT26 TIWINZA-CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48896', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48897', NULL, 'angela jesus oscor mamani', '44819493', '', '', '', 'lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48898', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48899', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48900', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48901', NULL, 'CHUMBES MONTOYA MARIA LUISA', '--', '10077574404', '', '', 'PASAJE TINGUA 276 -LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48902', NULL, 'CHUMBES MONTOYA MARIA LUISA', '--', '10077574404', '', '', 'PASAJE TINGUA 276 -LINCE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48903', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48904', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48905', NULL, 'GLICERIO Y ARMANDO ROBLES S.A.C.', '--', '20571467454', '', '', 'AV. LOS NATURALES NRO. 639 (A 1 CDRA. DE I.E LOS NATURALES) LIMA - HUARAL - HUARAL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48906', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48907', NULL, 'GOMEZ BOLIVAR MARCELA BEATRIZ', '21533151', '', '', '', 'LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48908', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48909', NULL, 'A & H INDUSTRIALES S.A.C.', '--', '20607250392', '', '', 'MZA. N LOTE. 9 ASC. TORRES DE HUACHIPA 1ERA ETAPA (PARADERO MEDIA LUNA) LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48910', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48911', NULL, 'TOP CONSULT INGENIERIA S.A.C.', '--', '20518088786', '', '', 'AV. BENAVIDES NRO. 4887 INT. 501 URB. LAS GARDENIAS LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48912', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48913', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48914', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48915', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48916', NULL, 'CORPORACION SOTA S.A.C.', '--', '20544415680', '', '', 'AV. PERU NRO. 3300 URB. PERU (ALT. DE LA CDRA 33 DE LA AV. PERU) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48917', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48918', NULL, 'LEONEL BREÑA', '70095360', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48919', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48920', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48921', NULL, 'karin rivas cotrina', '27752672', '', '', '', 'jesus maria', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48922', NULL, 'PROYECTOS GASTRONOMICOS INTEGRALES SOCIEDAD ANONIMA CER', '--', '20604667063', '', '', 'JR. DE LA UNION NRO. 1075 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48923', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48924', NULL, 'katia saire', '48875843', '', '', '', 'lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48925', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48926', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48927', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48928', NULL, 'nataly aylas', '71099760', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48929', NULL, 'BAZAN CORDOVA LIEDHALM DIONNE', '--', '10098394961', '', '', 'CALLE LAS VEGAS S/N YANACANCHA -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48930', NULL, 'BAZAN CORDOVA LIEDHALM DIONNE', '--', '10098394961', '', '', 'CALLE LAS VEGAS S/N YANACANCHA -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48931', NULL, 'JORGE RAFAEL CARRERA ROJAS', '42224899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48932', NULL, 'JORGE RAFAEL CARRERA ROJAS', '42224899', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48933', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48934', NULL, 'LAS VIÑAS EL PARAISO DE LAS FRUTAS S.A.C.', '--', '20547567553', '', '', 'JR. CAMANA NRO. 371 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48935', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48936', NULL, 'MANUEL BRAVO', '16804876', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48937', NULL, 'DIAZ LOPEZ CARMEN ROSA', '--', '10421833112', '', '', 'MZ E 1 LT 32 COOPERATIVA PRIMAVERA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48938', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48939', NULL, 'VICTORIA ORTIZ VILLEGAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48940', NULL, 'VICTORIA ORTIZ VILLEGAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48941', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48942', NULL, 'SANTOFA E.I.R.L.', '--', '20601111781', '', '', 'CAL.VIÑA VENTURO NRO. 295 INT. 201 URB. LOS PARRALES DE SURCO LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48943', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48944', NULL, 'GRAPHICSLUXI SOCIEDAD ANÓNIMA CERRADA', '--', '20537401207', '', '', 'AV. ARGENTINA NRO. 144 DPTO. DD9 (PUERTA N 028 GALERIA UNICENTRO 3ER PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48945', NULL, 'GRAPHICSLUXI SOCIEDAD ANÓNIMA CERRADA', '--', '20537401207', '', '', 'AV. ARGENTINA NRO. 144 DPTO. DD9 (PUERTA N 028 GALERIA UNICENTRO 3ER PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48946', NULL, 'GRAPHICSLUXI SOCIEDAD ANÓNIMA CERRADA', '--', '20537401207', '', '', 'AV. ARGENTINA NRO. 144 DPTO. DD9 (PUERTA N 028 GALERIA UNICENTRO 3ER PISO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48947', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48948', NULL, 'ABISE S.R.L.', '--', '20168083263', '', '', 'CAL.LAS ROSAS MZA. ED3 URB. JARDINES DE SAN ANDRES ICA - PISCO - SAN ANDRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48949', NULL, 'ABISE S.R.L.', '--', '20168083263', '', '', 'CAL.LAS ROSAS MZA. ED3 URB. JARDINES DE SAN ANDRES ICA - PISCO - SAN ANDRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48950', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48951', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48952', NULL, 'ENRIQUETA SANTOS', '32386301', '', '', '', 'CARAZ- ANCASH', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48953', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48954', NULL, 'ANESPER EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITADA ', '--', '20605163018', '', '', 'CAL.CALLE 5 N 380 MZA. I LOTE. 18 URB. EL REFUGIO LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48955', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48956', NULL, 'ZUMAETA CAHUAZA ISAAC', '42977875', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48957', NULL, 'ZUMAETA CAHUAZA ISAAC', '42977875', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48958', NULL, 'ZUMAETA CAHUAZA ISAAC', '42977875', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48959', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48960', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48961', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48962', NULL, 'MERINO QUISPE SARITA', '--', '10434126644', '', '', 'ASOCIACION LOMAS DE AMAUTA MZ T 1 LOTE 2 - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48963', NULL, 'BUSINESS & INVESTMENTS LIMA S.A.C.', '--', '20430172922', '', '', 'CAL.JUAN FANNING NRO. 520 (ALT AV LARCO CDRA 11-12) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48964', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48965', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48966', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48967', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48968', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48969', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48970', NULL, 'LEIVA FAUSTINO JUAN GERMAN', '--', '10459467624', '', '', 'JR FELIPE SANTIAGO CRESPO 851-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48971', NULL, 'LEIVA FAUSTINO JUAN GERMAN', '--', '10459467624', '', '', 'JR FELIPE SANTIAGO CRESPO 851-SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48972', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48973', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48974', NULL, 'PALOMINO CASTELLANOS RAFAEL ANTONIO', '--', '10404220590', '', '', 'SECTOR 6 GRUPO 3 MZ P LT 15 VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48975', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48976', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48977', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48978', NULL, 'RMP INGENIERIA Y CONSTRUCCION E.I.R.L', '--', '20602761470', '', '', 'AV. PACHACUTEC MZA. 25 LOTE. 19A1 P.J. MICAELA BASTIDAS LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48979', NULL, 'RMP INGENIERIA Y CONSTRUCCION E.I.R.L', '--', '20602761470', '', '', 'AV. PACHACUTEC MZA. 25 LOTE. 19A1 P.J. MICAELA BASTIDAS LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48980', NULL, 'RMP INGENIERIA Y CONSTRUCCION E.I.R.L', '--', '20602761470', '', '', 'AV. PACHACUTEC MZA. 25 LOTE. 19A1 P.J. MICAELA BASTIDAS LIMA - LIMA - VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48981', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48982', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48983', NULL, 'ANICETO PALMA KARINA BONET', '--', '10420374351', '', '', 'CALLE TACNA 190 C.P PUERTO MALABRIGO LA LIBERTAD - ASCOPE-RAZURI', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48984', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48985', NULL, 'JULCA SOSA NANCY ALEJANDRA', '--', '10099211836', '', '', 'MZ C LT 16 SANTA MARGARITA - VENTANILLA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48986', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48987', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48988', NULL, 'LAS VIÑAS EL PARAISO DE LAS FRUTAS S.A.C.', '--', '20547567553', '', '', 'JR. CAMANA NRO. 371 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48989', NULL, 'MARIA CHAVEZ BASALAR', '45249289', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48990', NULL, 'MARIA CHAVEZ BASALAR', '45249289', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48991', NULL, 'MARIA CHAVEZ BASALAR', '45249289', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48992', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48993', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48994', NULL, 'FABRICACION, MANTENIMIENTO DE EQUIPOS Y SISTEMAS AUTOMA', '--', '20503135907', '', '', 'AV. LOS ALISOS MZA. B LOTE. 31 ASC. HORIZONTE AZUL PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48995', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48996', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48997', NULL, 'DISEÑO FABRICACION Y TECNOLOGIA DEL PERU S.R.L.', '--', '20519334781', '', '', 'MZA. B LOTE. 14 URB. MONTECARLO ET. DOS LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48998', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('48999', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49000', NULL, 'PRODUCTOS CONFINUECES DEL PERU E.I.R.L', '--', '20608081527', '', '', 'AV. MANCO CAPAC NRO. 310 URB. CENTENARIO ANCASH - HUARAZ - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49001', NULL, 'PRODUCTOS CONFINUECES DEL PERU E.I.R.L', '--', '20608081527', '', '', 'AV. MANCO CAPAC NRO. 310 URB. CENTENARIO ANCASH - HUARAZ - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49002', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49003', NULL, 'DIANDERAS PAREJA JOSE EDUARDO', '--', '10105241335', '', '', 'AV SIMON BOLIVAR MZ I 1 LT 6 VILLA MARIA DEL TRIUNFO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49004', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49005', NULL, 'IAFAS DE LA FUERZA AÉREA DEL PERÚ (FOSFAP)', '--', '20492080811', '', '', 'AV. ANDRES ARAMBURU NRO. 200 URB. MIRAFLORES (2DO PISO-INSTAL. DE HOSPITAL CENTRAL FAP) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49006', NULL, 'GARDENIA LARISSA FERNANEZ PEREZ', '47485763', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49007', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49008', NULL, 'REYES CHANG RICARDO ALBERTO', '--', '10092677465', '', '', 'jr. alfonso ugarte 100 san gabriel -villa maria del triunfo-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49009', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49010', NULL, 'EMPRESA HOSTELERA NIAGARA EMPRESA INDIVIDUAL DE RESPONS', '--', '20373107604', '', '', 'AV. CAMINOS DEL INCA NRO. 3489 URB. PROLONG.BENAVIDES (ALT. CDRA.34) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49011', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49012', NULL, 'CHIKCHI E.I.R.L.', '--', '20608535919', '', '', 'AV. SANTA ELVIRA NRO. 6016 URB. VILLA SOL ET. UNO LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49013', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49014', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49015', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49016', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49017', NULL, 'VIP SALONES E.I.R.L.', '--', '20518801962', '', '', 'AV. CAMINOS DEL INCA NRO. 257 INT. 114 URB. CHACARILLA DEL ESTANQUE (C.C. CAMINOS DEL INCA II.) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49018', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49019', NULL, 'CABALLERO GARCIA MARILYN ELVIRA', '--', '10437640951', '', '', 'AV 12 DE OCTUBRE  MZ H LOTE 2 SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49020', NULL, 'CABALLERO GARCIA MARILYN ELVIRA', '--', '10437640951', '', '', 'AV 12 DE OCTUBRE  MZ H LOTE 2 SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49021', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49022', NULL, 'CINDEL S.A.', '--', '20543722309', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49023', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49024', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49025', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49026', NULL, 'CHOU DING CHIOK KING', '--', '15459245216', '', '', 'URB SAN JUAN ZN A AV. DE LOS HEROES 494', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49027', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49028', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49029', NULL, 'LUIS ANTONIO MALPARTIDA ORIZANO', '41688256', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49030', NULL, 'LUIS ANTONIO MALPARTIDA ORIZANO', '41688256', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49031', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49032', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49033', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49034', NULL, 'CALDERON DE CAMACHO WILMA', '--', '10027336189', '', '', 'MZ W 1 LT. 14 SAN DIEGO SAN MARTIN DE PORREES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49035', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49036', NULL, 'JAUCHA ARIAS CATALINA', '--', '10083240020', '', '', 'VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49037', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49038', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49039', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49040', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49041', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49042', NULL, 'PERCY ALZAMORA TORRE', '25834900', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49043', NULL, 'PERCY ALZAMORA TORRE', '25834900', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49044', NULL, 'VERMEN SERVICIOS S.A.C.', '--', '20511333319', '', '', 'CAL.LAS TURQUESAS NRO. 364 URB. BALCONCILLO LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49045', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49046', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49047', NULL, 'ROBERTO OBREGON', '10629852', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49048', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49049', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49050', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49051', NULL, 'NEOMEDICA E.I.R.L.', '--', '20546424317', '', '', 'AV. LARCO NRO. 743 INT. 801 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49052', NULL, 'Varios', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49053', NULL, 'DALMAU CORP S.A.C.', '--', '20605278877', '', '', 'AV. ROCA Y BOLOÑA NRO. 1051 URB. AURORA LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49054', NULL, 'REFARMEDIC S.A.C.', '--', '20608407198', '', '', 'CAL.SAN RAMON NRO. 428 URB. PALAO ET. UNO LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49055', NULL, 'REFARMEDIC S.A.C.', '--', '20608407198', '', '', 'CAL.SAN RAMON NRO. 428 URB. PALAO ET. UNO LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49056', NULL, 'REFARMEDIC S.A.C.', '--', '20608407198', '', '', 'CAL.SAN RAMON NRO. 428 URB. PALAO ET. UNO LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49057', NULL, 'EBIA TRANSPORT S.A.C', '--', '20537712202', '', '', 'MZA. F LOTE. 31 A.V. EL PORTAL DE SANTA CLARA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49058', NULL, 'EBIA TRANSPORT S.A.C', '--', '20537712202', '', '', 'MZA. F LOTE. 31 A.V. EL PORTAL DE SANTA CLARA LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49059', NULL, 'MARIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49060', NULL, 'MARIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49061', NULL, 'MARIA', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49062', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49063', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49064', NULL, 'ÑAUPARI PAREDES TEODOLINDA HAYDEE', '--', '10099123601', '', '', 'CALLE CERRO HERMOSO 192-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49065', NULL, 'ÑAUPARI PAREDES TEODOLINDA HAYDEE', '--', '10099123601', '', '', 'CALLE CERRO HERMOSO 192-SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49066', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49067', NULL, 'D & J PROYECTOS Y CONSTRUCCIONES E.I.R.L.', '--', '20610830502', '', '', 'AV. BOLIVAR NRO. 450 DPTO. 804 INT. A URB. SANTA CLARA (SANTA CLARA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49068', NULL, 'I CLOUD PERU S.A.C.', '--', '20603362587', '', '', 'PJ. ROSA NOGUERA NRO. 398 URB. TUPAC AMARU LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49069', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49070', NULL, 'INVERSIONES NOR CHICKEN S.A.C', '--', '20418463644', '', '', 'JR. DOMINGO CUETO NRO. 444 INT. 307 URB. RISSO LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49071', NULL, 'INVERSIONES NOR CHICKEN S.A.C', '--', '20418463644', '', '', 'JR. DOMINGO CUETO NRO. 444 INT. 307 URB. RISSO LIMA - LIMA - JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49072', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49073', NULL, 'ATP SOLUCIONES & PROYECTOS E.I.R.L.', '--', '20608790358', '', '', 'AV. BUENOS AIRES DE VILLA MZA. 65A LOTE. 7 LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49074', NULL, 'ATP SOLUCIONES & PROYECTOS E.I.R.L.', '--', '20608790358', '', '', 'AV. BUENOS AIRES DE VILLA MZA. 65A LOTE. 7 LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49075', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49076', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49077', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49078', NULL, 'VARIOS', '43328198', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49079', NULL, 'KILLAMEDICAL.VK S.A.C.', '--', '20608487388', '', '', 'JR. NICOLAS DE PIEROLA NRO. 106 P.J. RAUL PORRAS BARRENECHEA (FRENTE AL PARQUE MANCO CAPAC) LIMA - LIMA - CARABAYLLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49080', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49081', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49082', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49083', NULL, 'LOURDES CUBILLAS', '09742700', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49084', NULL, 'LOURDES CUBILLAS', '09742700', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49085', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49086', NULL, 'IM INVESTMENTS E.I.R.L.', '--', '20607100153', '', '', 'CAL.ARUBA NRO. 114 DPTO. 201 LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49087', NULL, 'IM INVESTMENTS E.I.R.L.', '--', '20607100153', '', '', 'CAL.ARUBA NRO. 114 DPTO. 201 LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49088', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49089', NULL, 'TALAVERA CALDERON TRACY SOFIA', '--', '10751325636', '', '', 'AV NARANJAL 1205 LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49090', NULL, 'TALAVERA CALDERON TRACY SOFIA', '--', '10751325636', '', '', 'AV NARANJAL 1205 LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49091', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49092', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49093', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49094', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49095', NULL, 'IGLESIA CRISTIANA PENTECOSTES DEL PERU MOVIMIENTO MISIO', '--', '20338877103', '', '', 'CAL.HORACIO CACHAY DIAZ NRO. 399 URB. SANTA CATALINA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49096', NULL, 'CONSORCIO ATC S.A.C', '--', '20537099667', '', '', 'CAL.FRAGATAS MZA. B LOTE. 25 URB. SAN PEDRO (ALT. COMISARIA DE SAGITARIO) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49097', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49098', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49099', NULL, 'MONICA', '40475305', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49100', NULL, 'MONICA', '40475305', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49101', NULL, 'JJEM & ROSITA S.A.C.', '--', '20547357079', '', '', 'JR. MONTEVIDEO NRO. 936 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49102', NULL, 'MONALISA G & Y S.A.C.', '--', '20608015460', '', '', 'JR. MANUEL GONZALES PRADA MZA. B LOTE. 12 URB. GOODYEAR (.) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49103', NULL, 'MONALISA G & Y S.A.C.', '--', '20608015460', '', '', 'JR. MANUEL GONZALES PRADA MZA. B LOTE. 12 URB. GOODYEAR (.) LIMA - LIMA - LOS OLIVOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49104', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49105', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49106', NULL, 'CURTIEMBRE FENIX S.R.L.', '--', '20507017194', '', '', 'CAL.27 MZA. V LOTE. 16B1 ASOC. COMP. TERR. CAMPOY LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49107', NULL, 'CURTIEMBRE FENIX S.R.L.', '--', '20507017194', '', '', 'CAL.27 MZA. V LOTE. 16B1 ASOC. COMP. TERR. CAMPOY LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49108', NULL, 'CURTIEMBRE FENIX S.R.L.', '--', '20507017194', '', '', 'CAL.27 MZA. V LOTE. 16B1 ASOC. COMP. TERR. CAMPOY LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49109', NULL, 'JACKY VARGAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49110', NULL, 'JACKY VARGAS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49111', NULL, 'HILDA MAMANI', '04036626', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49112', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49113', NULL, 'VARIOS', '41657140', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49114', NULL, 'JOSE CUICAPUZA HUATUCO', '45877876', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49115', NULL, 'JOSE CUICAPUZA HUATUCO', '45877876', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49116', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49117', NULL, 'LLALLA VARGAS ALDO ROLANDO', '--', '10214555994', '', '', 'callao', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49118', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49119', NULL, 'CERVECERIA ARTESANAL OXAPAMPA EMPRESA INDIVIDUAL DE RES', '--', '20601945291', '', '', 'AV. SAN MARTIN NRO. SN (CUADRA - 5) PASCO - OXAPAMPA - OXAPAMPA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49120', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49121', NULL, 'TUCTO GUERRA KELLER', '--', '10040186714', '', '', 'JR HUANCAVELICA 101 COLUMNA PASCO - YANACANCHA - PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49122', NULL, 'SERTEZU GASES DERIVADOS DEL AIRE E.I.R.L.', '--', '20607960209', '', '', 'CAL.SAN AMBROSIO NRO. 140 URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49123', NULL, 'SERTEZU GASES DERIVADOS DEL AIRE E.I.R.L.', '--', '20607960209', '', '', 'CAL.SAN AMBROSIO NRO. 140 URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49124', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49125', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49126', NULL, 'RDCINVERSIONES S.A.C.', '--', '20609263246', '', '', 'AV. SAN BORJA NORTE NRO. 307 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49127', NULL, 'RDCINVERSIONES S.A.C.', '--', '20609263246', '', '', 'AV. SAN BORJA NORTE NRO. 307 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49128', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49129', NULL, 'ORBE GOURMET E.I.R.L', '--', '20545712084', '', '', 'CAL.MONTE CASINO NRO. 123 DPTO. 202 (ENTRE LA AV. REYNALDO VIVANCO CON MONTE) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49130', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49131', NULL, 'MI & MA MODAS E.I.R.L.', '--', '20602181350', '', '', 'JR. LOS ALAMOS NRO. 378 DPTO. 401 INT. A URB. EL CORTIJO (CRUCE DE LAS AV EL DERBY CON OLGUIN) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49132', NULL, 'MI & MA MODAS E.I.R.L.', '--', '20602181350', '', '', 'JR. LOS ALAMOS NRO. 378 DPTO. 401 INT. A URB. EL CORTIJO (CRUCE DE LAS AV EL DERBY CON OLGUIN) LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49133', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49134', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49135', NULL, 'ANESPER EMPRESA INDIVIDUAL DE RESPONSABILIDAD LIMITADA ', '--', '20605163018', '', '', 'CAL.CALLE 5 N 380 MZA. I LOTE. 18 URB. EL REFUGIO LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49136', NULL, 'VARIOS', '70030309', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49137', NULL, 'PONCE CRISOSTOMO ELA LOURDES', '--', '10104492377', '', '', 'JR CUSCO 440 INT 105 LIMA -  LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49138', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49139', NULL, 'ALESSANDRO ALONSO FERNANDEZ LLIUYAG', '72446331', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49140', NULL, 'ALESSANDRO ALONSO FERNANDEZ LLIUYAG', '72446331', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49141', NULL, 'ALESSANDRO ALONSO FERNANDEZ LLIUYAG', '72446331', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49142', NULL, 'ALESSANDRO ALONSO FERNANDEZ LLIUYAG', '72446331', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49143', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49144', NULL, 'NAVARRETE TRADING CORPORATION SOCIEDAD COMERCIAL DE RES', '--', '20515403362', '', '', 'AV. GARCILAZO DE LA VEGA NRO. 1251 INT. 258A (COSTADO DEL CENTRO CIVICO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49145', NULL, 'NAVARRETE TRADING CORPORATION SOCIEDAD COMERCIAL DE RES', '--', '20515403362', '', '', 'AV. GARCILAZO DE LA VEGA NRO. 1251 INT. 258A (COSTADO DEL CENTRO CIVICO) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49146', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49147', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49148', NULL, 'BUSTAMANTE DIAZ MIRIAM', '--', '10274377777', '', '', 'JOSE OSORES -CHOTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49149', NULL, 'BUSTAMANTE DIAZ MIRIAM', '--', '10274377777', '', '', 'JOSE OSORES -CHOTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49150', NULL, 'BUSTAMANTE DIAZ MIRIAM', '--', '10274377777', '', '', 'JOSE OSORES -CHOTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49151', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49152', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49153', NULL, 'ALDEHIR NOLBERTO VASQUEZ YOMONO', '73980415', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49154', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49155', NULL, 'CASTRO GALLO ARMANDO', '--', '10255461422', '', '', 'CALLE ROGEL RETES 1041 URB. ROMA CERCADO DE LIMA-LIMA-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49156', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49157', NULL, 'VITREOUS SANITARIA S.A.C.', '--', '20343501910', '', '', 'CAL.LAS JACARANDAS MZA. K LOTE. 9-B LA CAPITANA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49158', NULL, 'VITREOUS SANITARIA S.A.C.', '--', '20343501910', '', '', 'CAL.LAS JACARANDAS MZA. K LOTE. 9-B LA CAPITANA LIMA - LIMA - LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49159', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49160', NULL, 'VARIOS', '10023014', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49161', NULL, 'GRD LOGISTIC & TRADING 1 E.I.R.L.', '--', '20608334972', '', '', 'MZA. D LOTE. 3 URB. PUENTE BLANCO ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49162', NULL, 'GRD LOGISTIC & TRADING 1 E.I.R.L.', '--', '20608334972', '', '', 'MZA. D LOTE. 3 URB. PUENTE BLANCO ICA - ICA - ICA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49163', NULL, 'VARIOS', '10023014', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49164', NULL, 'ISABEL GUIMARAES E.I.R.L.', '--', '20609489538', '', '', 'CAL.MANUEL PEREZ DE TUDELA NRO. 220 DPTO. 101 (NRO. 222) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49165', NULL, 'VARIOS', '07488854', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49166', NULL, 'VARIOS', '07488854', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49167', NULL, 'GUERRA UTRILLA ROSITA LINA', '--', '10402108229', '', '', 'HUANUCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49168', NULL, 'ITURRIZAGA COLONIO GERALDINA FLOR', '--', '10413611496', '', '', 'PASAJE LLORENA 189 CHILCA HUANCAYO JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49169', NULL, 'ITURRIZAGA COLONIO GERALDINA FLOR', '--', '10413611496', '', '', 'PASAJE LLORENA 189 CHILCA HUANCAYO JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49170', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49171', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49172', NULL, 'MP GRAFICA E.I.R.L.', '--', '20607562947', '', '', 'JR. JOAQUIN CAPELLO NRO. 2625 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49173', NULL, 'MP GRAFICA E.I.R.L.', '--', '20607562947', '', '', 'JR. JOAQUIN CAPELLO NRO. 2625 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49174', NULL, 'MP GRAFICA E.I.R.L.', '--', '20607562947', '', '', 'JR. JOAQUIN CAPELLO NRO. 2625 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49175', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49176', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49177', NULL, 'VARA CAMPOS LUIS OSCAR', '--', '10428344982', '', '', 'jr. pedro garezon 1651 lima-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49178', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49179', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49180', NULL, 'GRUPO MEGAFER E.I.R.L.', '--', '20609339447', '', '', 'AV. GUILLERMO DANSEY NRO. 918 INT. B-24 COO. NIÑO JESUS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49181', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49182', NULL, 'PAMELA NINA', '43378492', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49183', NULL, 'PAMELA NINA', '43378492', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49184', NULL, 'MULTISERVICIOS E IMPRENTA CARDENAS E.I.R.L.', '--', '20600424506', '', '', 'JR. AGUSTIN LARREA Y LAREDO NRO. 712 CENT CIVICO (FRENTE GRAN CESAR HOTEL A 1/2CDRA RENIEC) ANCASH - HUARAZ - HUARAZ', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49185', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49186', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49187', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49188', NULL, 'RESIDUO VERDE S.A.C', '--', '20601773792', '', '', 'AV. NICOLAS AYLLON NRO. 2433 LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49189', NULL, 'RESIDUO VERDE S.A.C', '--', '20601773792', '', '', 'AV. NICOLAS AYLLON NRO. 2433 LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49190', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49191', NULL, 'CORPORACION FERRETERA MARANATHA\'S EMPRESA INDIVIDUAL DE', '--', '20568871562', '', '', 'JR. JAUJA NRO. 366 SEC. TARMA (AL FRENTE DE LA DISCOTECA LEO) JUNIN - TARMA - TARMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49192', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49193', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49194', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49195', NULL, 'TELEPIZZA ANDINA S.A.C.', '--', '20538225763', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49196', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49197', NULL, 'GALVEZ GARCIA ANGEL FELIPE', '--', '10218128756', '', '', 'av. thomas valle #120 block b 1 puesto int. 6-7 independencia-lima-lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49198', NULL, 'MIGONSA PERU S.A.C.', '--', '20610118748', '', '', 'JR. ICA NRO. 322 CERCADO DE LIMA (ALTURA TEATRO MUNICIPAL DE LIMA) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49199', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49200', NULL, 'D\'EMERCYS CAKES E.I.R.L.', '--', '20601613221', '', '', 'AV. JUAN PABLO FERNANDINI NRO. 869 LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49201', NULL, 'CORPORACION SERVIMUNDO S.A.C.', '--', '20607886254', '', '', 'CAL.ALCANFORES NRO. 345 INT. 111 LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49202', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49203', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49204', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49205', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49206', NULL, 'COCINAS SUPERIOR S.A.C.', '--', '20154988620', '', '', 'AV. EL BOSQUE NRO. 252 URB. CANTO GRANDE LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49207', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49208', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49209', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49210', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49211', NULL, 'WASSER WORLD S.A.C.', '--', '20602559310', '', '', '----ASOC. VIVIENDA CHICMABAMBA MZA. G LOTE. 23 ASOC.VIV. CHICMABAMBA (A 01 CDRA PARQUE CIVICO 3 O) LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49212', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49213', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49214', NULL, 'MANDUJANO CABEZAS PABLO FERNANDO', '--', '10081865324', '', '', 'AV SAN LUIS  2073 SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49215', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49216', NULL, 'VIEJO BAR S.A.C.', '--', '20610220208', '', '', 'AV. AV. JOSE SANTOS CHOCANO NRO. 534 A.H. 22 HECTAREAS PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CARMEN DE LA LEGUA REYNOSO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49217', NULL, 'KADE SERVICES PERU E.I.R.L.', '--', '20606097485', '', '', 'JR. AYACUCHO NRO. 192 INT. K LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49218', NULL, 'KADE SERVICES PERU E.I.R.L.', '--', '20606097485', '', '', 'JR. AYACUCHO NRO. 192 INT. K LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49219', NULL, 'PASTELERIA FINA GMR SOCIEDAD ANONIMA CERRADA', '--', '20523318978', '', '', 'AV. CAMINOS DEL INCA NRO. 590 INT. 1 LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49220', NULL, 'PASTELERIA FINA GMR SOCIEDAD ANONIMA CERRADA', '--', '20523318978', '', '', 'AV. CAMINOS DEL INCA NRO. 590 INT. 1 LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49221', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49222', NULL, 'DISTRIBUIDORA MAJAL S.A.C.', '--', '20610988114', '', '', 'CAL.LAS MORAS NRO. 161 URB. VALLE HERMOSO RESIDENCIAL LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49223', NULL, 'DISTRIBUIDORA MAJAL S.A.C.', '--', '20610988114', '', '', 'CAL.LAS MORAS NRO. 161 URB. VALLE HERMOSO RESIDENCIAL LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49224', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49225', NULL, 'OLYMPIC LOGISTIC SAC', '--', '20521399610', '', '', 'JR. ALTO DE LA LUNA NRO. 933 (ALT.CDRA 15 AV.TINGO MARIA) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49226', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49227', NULL, 'MARCO COCHACHIN AGUIRRE', '40483138', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49228', NULL, 'MARCO COCHACHIN AGUIRRE', '40483138', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49229', NULL, 'MARCO COCHACHIN AGUIRRE', '40483138', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49230', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49231', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49232', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49233', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49234', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49235', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49236', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49237', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49238', NULL, 'THARINA PERU TOURS S.A.C', '--', '20601934451', '', '', 'PJ. 2 MZA. D LOTE. 10 URB. LOS PORTALES DE SANTA ROSA LIMA - LIMA - SAN MARTIN DE PORRES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49239', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49240', NULL, 'ANTONY NARBASTA MORALES', '46564364', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49241', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49242', NULL, 'CAMPOS MONTALVAN KAREN STEFANNY', '--', '10478064182', '', '', 'NUEVA IMPERIAL CAÑETE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49243', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49244', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49245', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49246', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49247', NULL, 'IMMGENIA E.I.R.L.', '--', '20602626858', '', '', 'CAL.CAHUIDE MZA. E LOTE. 17 A.H. JOSE OLAYA LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49248', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49249', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49250', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C.', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49251', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C.', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49252', NULL, 'RESTAURANT CHICHARRONERIA LA HUANTINITA S.A.C.', '--', '20605314636', '', '', 'AV. RIVADAVIA BERNARDINO MZA. G LOTE. 22-A A.V. EL PORVENIR LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49253', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49254', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49255', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49256', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49257', NULL, 'CARLOS REQUENA PAREDES', '02786588', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49258', NULL, 'CARLOS REQUENA PAREDES', '02786588', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49259', NULL, 'SIENTASE COMO UNA LADY EMPRESA INDIVIDUAL DE RESPONSABI', '--', '20515197444', '', '', 'CAL.1 MZA. H LOTE. 31 URB. JAVIER PRADO 6 TA EAPA (AHORA CA. VENECIA-EN SALAMANCA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49260', NULL, 'SIENTASE COMO UNA LADY EMPRESA INDIVIDUAL DE RESPONSABI', '--', '20515197444', '', '', 'CAL.1 MZA. H LOTE. 31 URB. JAVIER PRADO 6 TA EAPA (AHORA CA. VENECIA-EN SALAMANCA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49261', NULL, 'SIENTASE COMO UNA LADY EMPRESA INDIVIDUAL DE RESPONSABI', '--', '20515197444', '', '', 'CAL.1 MZA. H LOTE. 31 URB. JAVIER PRADO 6 TA EAPA (AHORA CA. VENECIA-EN SALAMANCA) LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49262', NULL, 'SERVICIOS MEDICO ODONTOLOGICOS REVLAT E.I.R.L', '--', '20605979000', '', '', 'JR. MANUEL GONZALES PRADA NRO. 922 URB. CERCADO LIMA - LIMA - SURQUILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49263', NULL, 'CONSORCIO MEDITERRANEO S.A.C.', '--', '20553255881', '', '', 'AV. SIETE NRO. 229 URB. RINCONADA BAJA (A TRES CUADRAS DE MOLICENTRO) LIMA - LIMA - LA MOLINA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49264', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49265', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49266', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49267', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49268', NULL, 'D.JLCAREY E.I.R.L.', '--', '20610490795', '', '', 'JR. LOS OLIVOS NRO. 516 A.V. VILLA SOL JUNIN - HUANCAYO - EL TAMBO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49269', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49270', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49271', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49272', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49273', NULL, 'CORPORACION JEMAQUITA SOCIEDAD ANONIMA CERRADA- JEMAQUI', '--', '20551079989', '', '', 'JR. BELGICA NRO. 1550 INT. REF (SOTANO 1 INTERIOR 06) LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49274', NULL, 'INMOBILIARIA HUERTAS GRUPO INV. S.R.L.', '--', '20601000939', '', '', 'CAL.LUIS ESPEJO NRO. 1097 INT. 802 URB. SANTA CATALINA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49275', NULL, 'ROJAS HUACACHI PEDRO PABLO', '--', '10763554037', '', '', 'JR INDUSTRIAL 369 ATE VITARTE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49276', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49277', NULL, 'RIVA VILLACORTA DIANE MARLITH', '--', '10434832107', '', '', 'JR MANUEL GONZALES MZ O LOTE 10 COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49278', NULL, 'GRUPO SANTA ELENA S.A.', '--', '20155261570', '', '', 'AV. MANUEL OLGUIN NRO. 325 INT. 703 URB. LOS GRANADOS LIMA - LIMA - SANTIAGO DE SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49279', NULL, 'SALOMON ALLAS VENTOCILLA', '20112255', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49280', NULL, 'SALOMON ALLAS VENTOCILLA', '20112255', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49281', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49282', NULL, 'GRUPO PAKARINA S.A.C.', '--', '20548229104', '', '', 'CAR.PANAMERICANA NORTE KM 26 1/2 KM. 26 MZA. H LOTE. 8 DPTO. 201 APV. ASOCIACIÓN DE VIVIENDA VILLA CRUZ LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49283', NULL, 'GRUPO PAKARINA S.A.C.', '--', '20548229104', '', '', 'CAR.PANAMERICANA NORTE KM 26 1/2 KM. 26 MZA. H LOTE. 8 DPTO. 201 APV. ASOCIACIÓN DE VIVIENDA VILLA CRUZ LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49284', NULL, 'GRUPO PAKARINA S.A.C.', '--', '20548229104', '', '', 'CAR.PANAMERICANA NORTE KM 26 1/2 KM. 26 MZA. H LOTE. 8 DPTO. 201 APV. ASOCIACIÓN DE VIVIENDA VILLA CRUZ LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49285', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49286', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49287', NULL, 'CHUICA GARCIA NOEMI JESUS', '--', '10099379770', '', '', 'JR CERO PRIETO 202 SAN IGNACIO DE MONTERRICO PASANDO PUENTE BENAVIDES SANTIAGO DE SURCO -LIM-LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49288', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49289', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49290', NULL, 'CONDEZO FLORES JHEFFERSON DANIEL', '--', '10732100208', '', '', 'PLAZA PRINCIPAL SAN JUAN DE MILCO SAN FRANCISCO DE ASIS CERRO DE PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49291', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49292', NULL, 'CINDEL S.A.', '--', '20543722309', '', '', 'AV. JAVIER PRADO OESTE NRO. 1650 LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49293', NULL, 'DORIS RIVAS', '09693045', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49294', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49295', NULL, 'VARIOS', '28265024', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49296', NULL, 'CLUB DE EMOCIONES S.A.C.', '--', '20603132247', '', '', 'AV. JOSE LEGUIA Y MELENDEZ NRO. 1080 DPTO. 903 LIMA - LIMA - PUEBLO LIBRE (MAGDALENA VIEJA)', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49297', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49298', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49299', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49300', NULL, 'RAMOS HUARCAYA FRANCISCO', '--', '10286049961', '', '', 'AV CENTENARIO 374 HUANTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49301', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49302', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49303', NULL, 'MIRIAM FORDIRWIN EIRL', '--', '20511635919', '', '', 'CAL.ANGEL REVOREDO NRO. 116 ASO.J.ABELARDO QUINONES (ALT.KM 7 AV.TÚPAC AMARU) LIMA - LIMA - INDEPENDENCIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49304', NULL, 'CALZADO VILLANUEVA MARCELINO', '--', '10157569274', '', '', 'MERCADO CENTENARIO E PUESTO 58 AL 64 -HUACHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49305', NULL, 'IMPRESIONES Y ARTE SOCIEDAD ANONIMA CERRADA', '--', '20609451514', '', '', 'JR. AZANGARO NRO. 672 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49306', NULL, 'IMPRESIONES Y ARTE SOCIEDAD ANONIMA CERRADA', '--', '20609451514', '', '', 'JR. AZANGARO NRO. 672 CERCADO DE LIMA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49307', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49308', NULL, 'MALLKIRA S.A.', '--', '20610101110', '', '', 'JR. TALARA NRO. 140 DPTO. 201 URB. SANTA MARINA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49309', NULL, 'MALLKIRA S.A.', '--', '20610101110', '', '', 'JR. TALARA NRO. 140 DPTO. 201 URB. SANTA MARINA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49310', NULL, 'MALLKIRA S.A.', '--', '20610101110', '', '', 'JR. TALARA NRO. 140 DPTO. 201 URB. SANTA MARINA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49311', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49312', NULL, 'DE LA CADENA DUEÑAS ALDO HERNAN', '--', '10446408521', '', '', 'av. los maestros 198 nasca-nasca', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49313', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49314', NULL, 'javier estrella fernandez', '80074086', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49315', NULL, 'MAESTRANZA INDUSTRIAL ENMANUEL E.I.R.L', '--', '20601421110', '', '', 'JR. CASTROVIRREYNA NRO. 892 URB. AZCONA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49316', NULL, 'MAESTRANZA INDUSTRIAL ENMANUEL E.I.R.L', '--', '20601421110', '', '', 'JR. CASTROVIRREYNA NRO. 892 URB. AZCONA LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49317', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49318', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49319', NULL, 'MILUSO CARGA S.A.C.', '--', '20548547734', '', '', 'JR. MANTARO NRO. 438 LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49320', NULL, 'MILUSO CARGA S.A.C.', '--', '20548547734', '', '', 'JR. MANTARO NRO. 438 LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49321', NULL, 'FRIO TR E.I.R.L.', '--', '20605637818', '', '', '----PARCELA NRO. 13 COO. GALLINAZO (PARADERO ROSA LUZ TRANQUERA ARBOLEDA) LIMA - LIMA - PUENTE PIEDRA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49322', NULL, 'CISNEROS JIMENEZ BLANCA ESTHER', '--', '10435918137', '', '', 'JR ARICA 227 - SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49323', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49324', NULL, 'MUEBLES PIERO\'S SOCIEDAD COMERCIAL DE RESPONSABILIDAD L', '--', '20516729415', '', '', 'AV. MACHU PICHU NRO. 318 URB. SAN JUAN BAUTISTA (ALT. UNI SAN JUAN BAUTISTA) LIMA - LIMA - CHORRILLOS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49325', NULL, 'CORDOVA GUZMAN PASCUALA TERESA', '--', '10102389552', '', '', 'AV LOS HEROES INT 36 SAN JUAN DE MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49326', NULL, 'DKA PRODUCTOS & SERVICIOS E.I.R.L.', '--', '20607931098', '', '', 'PJ. PUCALA NRO. 155 DPTO. 302 URB. MARANGA LIMA - LIMA - SAN MIGUEL', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49327', NULL, 'MONTACARGAS BARTOLOME E.I.R.L', '--', '20602358284', '', '', 'JR. CAJAMARQUILLA NRO. 997 URB. ZARATE (ALT . CDRA 9 DE CHIMU) LIMA - LIMA - SAN JUAN DE LURIGANCHO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49328', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49329', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49330', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49331', NULL, 'MARTINEZ LEVANO DANIEL EDUARDO', '--', '10437222199', '', '', 'JR AYACUCHO 343 LIMA LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49332', NULL, 'IMPORTACIONES SOLAREXTREM K & D E.I.R.L.', '--', '20601879388', '', '', 'JR. PARURO NRO. 1369 INT. 137 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49333', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49334', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49335', NULL, 'ARENADO TOMCAR FARROÑAN SAC', '--', '20522687023', '', '', 'CAL.CALLE UNO MZA. X LOTE. 4C COO. LAS VERTIENTES (ALT PEAJE VENECIA) LIMA - LIMA - VILLA EL SALVADOR', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49336', NULL, 'bruss arica emilio ricardo', '07747056', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49337', NULL, '101 CG LOS CEDROS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49338', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49339', NULL, 'CAL.CALLE UNO MZA. X LOTE. 4C COO. LAS VERTIENTES (ALT ', '--', '20603065493', '', '', 'AV. REDUCTO NRO. 861 INT. 425 URB. LEURO LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49340', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49341', NULL, 'LORENZO RECALDE MERCEDES', '--', '10099516211', '', '', 'AV ABANCAY 815 CERCADO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49342', NULL, 'IMPORTACIONES OSMAR S.A.C.', '--', '20611146966', '', '', 'JR. CUSCO NRO. 626 INT. 2153 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49343', NULL, 'IMPORTACIONES OSMAR S.A.C.', '--', '20611146966', '', '', 'JR. CUSCO NRO. 626 INT. 2153 URB. BARRIOS ALTOS LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49344', NULL, 'MENARIS GROUP EIRL', '--', '20600628276', '', '', 'JR. CARABAYA NRO. 928 CERCADO DE LIMA (OFICINA 205) LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49345', NULL, 'COMERCIAL ASTOCONDOR SRL', '--', '20100632307', '', '', 'JR. UCAYALI NRO. 580 LIMA - LIMA - LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49346', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49347', NULL, 'JUAREZ SANCHEZ SHIRLEY SARAI RENEE', '--', '10402774067', '', '', 'WICHANZAO MZ 57 LT 18 LA ESPERANZA - TRUJILLO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49348', NULL, 'RAMOS SERNA LISBETH TANIA', '--', '10446696349', '', '', 'JR LOPEZ ALBUJAR 216 YANACANCHA -PASCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49349', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49350', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49351', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49352', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49353', NULL, 'MELCHOR HUAMANI EDUARDO', '--', '10804639778', '', '', 'AV MICAELA BASTIDAS 233 -PICHANAQUI-CHANCHAMAYO-JUNIN', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49354', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49355', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49356', NULL, 'SUMINISTRO DE PRODUCTOS VETERINARIOS S.A.C.', '--', '20547596065', '', '', 'CAL.3 DE AGOSTO MZA. H LOTE. 2 URB. ALEJANDRO ALVAREZ LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49357', NULL, 'SUMINISTRO DE PRODUCTOS VETERINARIOS S.A.C.', '--', '20547596065', '', '', 'CAL.3 DE AGOSTO MZA. H LOTE. 2 URB. ALEJANDRO ALVAREZ LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49358', NULL, 'SUMINISTRO DE PRODUCTOS VETERINARIOS S.A.C.', '--', '20547596065', '', '', 'CAL.3 DE AGOSTO MZA. H LOTE. 2 URB. ALEJANDRO ALVAREZ LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49359', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49360', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49361', NULL, 'RESSIDIR INVERSIONES INMOBILIARIAS S.A.C.', '--', '20610161988', '', '', 'CAL.LUIS ESPEJO NRO. 1097 INT. 402 URB. SANTA CATALINA LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49362', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49363', NULL, 'JP & K PRODUCCIONES Y EVENTOS SOCIEDAD ANONIMA CERRADA', '--', '20610813187', '', '', 'AV. PEDRO DE OSMA NRO. 315 URB. SAUZALITO LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49364', NULL, 'NEGOCIACIONES SERVCOM E.I.R.L.', '--', '20601698693', '', '', 'CAL.FRANCISCO DE PAULA QUIROZ NRO. 269 URB. SANTA LUZMILA ET. UNO LIMA - LIMA - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49365', NULL, 'VARIOS', '45957294', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49366', NULL, 'GRANIZHADA GROUP S.A.C.', '--', '20601184886', '', '', 'CAL.BERLÍN NRO. 172 URB. MIRAFLORES (PARQUE KENNEDY) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49367', NULL, 'FLORES CASTRO LUCIO', '--', '10085716692', '', '', 'AV ALFONSO UGARTE 076 PLAZA UNION . LIMA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49368', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49369', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49370', NULL, 'TRANSPORTES INSTABUS SOCIEDAD ANONIMA CERRADA', '--', '20551613136', '', '', 'JR. FRANCISCO LUNA PIZARRO NRO. 251 LIMA - LIMA - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49371', NULL, 'VILLA HERMOZA SERGIO ALEJANDRO', '--', '10067671746', '', '', 'ALFRED ROSENBLAT 208 DPTO A302 -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49372', NULL, 'VILLA HERMOZA SERGIO ALEJANDRO', '--', '10067671746', '', '', 'ALFRED ROSENBLAT 208 DPTO A302 -SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49373', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49374', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49375', NULL, 'CANONESAS DE LA CRUZ', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49376', NULL, 'INOPE ABANTO DIEGO JOHNNY', '--', '10482526719', '', '', 'CALLE UGARTE Y MOSCOSO 450 DPTO 8 SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49377', NULL, 'CINEPLEX S.A', '--', '20429683581', '', '', 'AV. JOSE LARCO NRO. 663 INT. 401 (PISOS 4-5) LIMA - LIMA - MIRAFLORES', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49378', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49379', NULL, 'ARAGON HUAMANI MARIANA DE LOS ANGELES', '--', '10705471415', '', '', 'av. santa isabel mz a1 lt9 comite 1 -chorrillos -lima', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49380', NULL, 'GINECO SERVICES S.A.C.', '--', '20600486986', '', '', 'JR. STRAUSS NRO. 564 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49381', NULL, 'DENTALVIEW CONCEPTS S.A.C.', '--', '20610433040', '', '', 'AV. ALMIRANTE GRAU NRO. 1502 URB. ALMIRANTE GRAU LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49382', NULL, 'JAIMES ORTEGA DE CRUZ TATTY ANA', '--', '10316791471', '', '', 'AV SAN FELIPE 1079 DTO 1806- JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49383', NULL, 'JAIMES ORTEGA DE CRUZ TATTY ANA', '--', '10316791471', '', '', 'AV SAN FELIPE 1079 DTO 1806- JESUS MARIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49384', NULL, 'BONNA ALFAJORES E.I.R.L.', '--', '20609602393', '', '', 'CAL.ENRIQUE GRANADOS NRO. 267 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49385', NULL, 'BONNA ALFAJORES E.I.R.L.', '--', '20609602393', '', '', 'CAL.ENRIQUE GRANADOS NRO. 267 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49386', NULL, 'BONNA ALFAJORES E.I.R.L.', '--', '20609602393', '', '', 'CAL.ENRIQUE GRANADOS NRO. 267 URB. SAN BORJA SUR LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49387', NULL, 'RESTAURANT Y CEVICHERIA PURO TUMBES Y PUNTO S.R.L.', '--', '20518427661', '', '', 'AV. SAN LUIS NRO. 959 URB. EL TREBOL (ALT AV.SAN JUAN) LIMA - LIMA - SAN LUIS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49388', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49389', NULL, 'COORDINACION EDUCATIVA', '00000000', '', '', '', 'CHORRILLOS', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49390', NULL, 'LUIS DIONICIO', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49391', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49392', NULL, 'ENFOQUE INNOVADOR S.A.C.', '--', '20491969386', '', '', 'JR. ARICA 2DO. PISO NRO. 349 INT. B URB. TEJADA ALTA LIMA - LIMA - BARRANCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49393', NULL, 'WR S.A.', '--', '20100048702', '', '', 'AV. FRANCISCO CANAVAL Y MOREY NRO. 522 URB. EL PALOMAR (AV. CANAVAL Y MOREYRA-PISO16) LIMA - LIMA - SAN ISIDRO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49394', NULL, 'AQUINO HUAMAN FLORA DORIS', '--', '10075206441', '', '', 'URB SEÑOR DE HUAYAY MZ E LOTE 5 ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49395', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49396', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49397', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49398', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49399', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49400', NULL, 'GRAFITEC Y CIA.S.R.L.', '--', '20138078508', '', '', 'AV. FRAY LUIS DE LEON NRO. 262 URB. SAN BORJA SUR (COSTADO DEL MINISTERIO DE ENRGIA Y MINAS) LIMA - LIMA - SAN BORJA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49401', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49402', NULL, 'NEOMED SOCIEDAD ANONIMA CERRADA', '--', '20506467340', '', '', 'CAL.DEAN VALDIVIA NRO. 697 INT. 102 URB. SAN GREGORIO (ALT. 17 DE LA AVENIDA LORETO) LIMA - LIMA - BREÑA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49403', NULL, 'GORDILLO FERNANDEZ JOSE LUIS', '--', '10708305133', '', '', 'BLOCK 113 DPT 903 SOL RETABLO - COMAS', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49404', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49405', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49406', NULL, 'CACERES MONTALVO FERNANDO', '--', '10074281651', '', '', 'JR JOSE ORENGO 614 - LA VICTORIA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49407', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49408', NULL, 'CACERES RAMOS JORGE', '--', '10098775761', '', '', 'SURCO', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49409', NULL, 'CORDOVA DE LEVANO HILDA GLADYS', '--', '10217974211', '', '', 'JR ITALIA 218 CHINCHA ALTA', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49410', NULL, 'BULLDOG PRODUCCIONES S.A.C.', '--', '20606970464', '', '', 'CAL.LOS ALGARROBOS NRO. 175 URB. LOS RECAUDADORES LIMA - LIMA - ATE', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49411', NULL, 'VARIOS', '--', '', '', '', '', '0', NULL, NULL, NULL, NULL, '1', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49412', NULL, 'VARIOS', '00000000', '', '', '', '', '0', NULL, NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49413', '10123456781', 'PONTE TRUJILLO ALEXANDER KENY', '70980622', '', '', '', '--', '0', '1', '1', '2023-10-10 06:10:46', '2023-10-31 04:10:17', '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49414', '10123456781', 'alexander Ponte', '20458340911', '', '', 'alexponte1999@gmail.com', 'Av Canto Grande', '0', '1', '1', '2023-10-10 06:10:10', '2023-10-31 04:10:30', '1', '1', '4', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49415', '10123456781', 'sagsdsd', '67435623', '', '', '', '', '2', '1', NULL, '2023-10-10 06:10:11', NULL, '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49416', '10123456781', 'actec', '', '20709806225', '938490474', '', '---', '23', '1', '1', '2023-10-10 06:10:49', '2023-10-31 04:10:06', '1', '2', '6', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49417', '10123456781', 'QUILICHE MORILLO LILI ALICIA', '70980620', '10709806205', '98765432123', 'alicia@gmail.com', 'Los tucos', '3', '1', NULL, '2023-10-15 02:10:09', NULL, '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49418', '10123456781', 'NAZARENA SOCIEDAD ANONIMA CERRADA - NAZARENA S.A.C.', '', '20603739923', '', '', 'CAR. ANTIGUA PANAMERICANA SUR LT. 10 MZ. A1 KL. 41.5 OTR. ASOCIACIÓN DE FAMILIAS JA - LIMA LIMA LURIN', '2', '1', NULL, '2023-10-15 02:10:56', NULL, '1', '2', '6', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49419', '10123456781', 'NAZARENA S.A.C.', '', '20601885388', '', '', 'jaaaaaaaaaaaaaaaaaaaaajaaaajaj', '0', '1', '1', '2023-10-15 03:10:32', '2023-10-15 03:10:58', '1', '2', '6', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49420', '10123456781', 'QUIÑONES MIRANDA JUDITH DORIS', '70980621', '12345665432', '33433343', '', 'sdsdsds', '0', '1', '1', '2023-10-15 03:10:31', '2023-10-15 03:10:35', '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49421', '10123456781', 'PONTE TRUJILLO ANDRES ANTHONY', '70980623', '', '', '', 'dfdfdsdsds', '0', '1', '1', '2023-10-15 03:10:19', '2023-10-15 03:10:37', '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49422', '10123456781', 'eererereere', '', '12345678912', '', '', 'erer', '0', '1', NULL, '2023-10-15 03:10:17', NULL, '1', '2', '6', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49423', '10123456781', 'dfdfdf', '70980624', '', '454544', '', '343433434', '0', '1', '1', '2023-10-15 03:10:46', '2023-10-22 02:10:39', '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49424', '10123456781', 'URETA DUEÑAS SHIRLEY MAYLIN', '70980630', '', '', '', '--', '0', '1', '1', '2023-10-25 05:10:34', '2023-10-25 05:10:10', '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49425', '10123456781', 'prueba prueba prueba', '70900634', '', '', '', '--', '0', '1', NULL, '2023-10-25 05:10:42', NULL, '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49426', '20505239262', 'Rosana Oliveira', '004740541', '', '999022734', 'rosana.regia1@gmail.com', 'Av los Ingenieros, 374, La Molina', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49427', '20505239262', 'LISBETH GREGORIA ESPINOZA CRUZ', '03385822', '', '936464738', 'lespinozacruz@gmail.com', 'Av. Del Ejercito 361 DPTP 402', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49428', '20505239262', 'NANCY PASCUALA CASTRO CASTILLO', '03646904', '', '998199278', 'ccnancyd@hotmail.com', 'Calle Federico Noguera 156 -2do piso Bellavista', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49429', '20505239262', 'JOSE ANTONIO VALDERRAMA BUSTAMANTE', '06766823', '', '982264324', 'jose.valderrama81@gmail.com', 'JOSE VALDERRAMA OCTAVIO BERNAL 154', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49430', '20505239262', 'DANILO PAVEL PORTUGAL TAPIA', '06793950', '', '942096413', 'danylo9@gmail.com', 'Jiron Maestro Barbieri 220 Piso 2', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49431', '20505239262', 'JOSE MIGUEL UGARTE ESPINOZA', '07869171', '', '998138805', 'ventas@dxlapparel.com', 'LIMA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49432', '20505239262', 'JORGE JARA SALAS', '08146081', '', '986604140', 'ventas@dxlapparel.com', 'Av. Alameda Monte Umbroso 173 Dpto 402', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49433', '20505239262', 'ROSINA JACQUELINE GORDILLO VIVANCO', '08167528', '', '984117407', 'jackiebouvier@hotmail.com', 'Jr. Tizón y bueno 170 edificio Plaza Monet dpto 201', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49434', '20505239262', 'ROBERT WILLIAM AUJAPIÑA GAMARRA', '09660327', '', '923402317', 'ventas@dxlapparel.com', 'Calle Julio Becerra 130', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49435', '20505239262', 'KIYABU KOHASHIGAWA KARINA KATHERINE', '', '10102845604', '987 420 708', 'karina.kiyabu@gmail.com', 'CALLE 6 NRO 127 URB CORPAC', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49436', '20505239262', 'BLAS PINTADO LUIS ANTHONY', '', '10103761048', '993 614 063', 'ventas@dxlapparel.com', '-PASAJE CAPITÁN JOSÉ QUIÑONES 196 DPTO.206', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49437', '20505239262', 'GOMEZ SALAZAR MARTHA PELAGIA', '', '10108803954', '984208554', 'marthags25@hotmail.com ', 'Av.antunez de mayolo 840', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49438', '20505239262', 'LLANOS MARQUEZ CLOTILDE MAGDALENA', '', '10153578881', '959243114', 'mariaclaudiacastaneda@gmail.com', 'Calle Juan fuentes Mz. D Lt. 11 Urb. La Calera de la Merced', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49439', '20505239262', 'NOLBERTO ULLOA VALLE', '', '10179636145', '999455128', 'ventas@dxlapparel.com', 'AV PROLONGACION VALLEJO MZ I LOTE 2 URB GALENO TRUJILLO', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49440', '20505239262', 'LUZ MARIA YUPANQUI HUAYLINOS', '', '10207212496', '958500999', 'ventas@dxlapparel.com', 'JR JUNIN 871', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49441', '20505239262', 'GIRON NAVARRO CARLOS MANUEL', '', '10404695903', '993385302', 'Carlosgiron101@gmail.com', 'Avenida canta callao mza R\' lote 20. Asociacion virgen del Rosario', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49442', '20505239262', 'Esther Irene Del Rosario Mamani', '', '10411990139', '984268779', 'Esther_delrosario@hotmail.com', 'Urb zaguan del cielo P-12', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49443', '20505239262', 'NOE AGURTO YESSICA MILAGROS', '', '10413963546', '950604826', 'ventas@dxlapparel.com', 'Jr. Apurímac 867', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49444', '20505239262', 'LOZANO SIBILA TILSA MARCELA', '', '10418473423', '', 'ventas@dxlapparel.com', 'teodosio parreño 356', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49445', '20505239262', 'Patricia Pinedo Cerrate', '', '10419987650', '961678131', 'patricia_pinedo@yahoo.com', 'Av. Manuel Cipriano Dulanto 1415 Dpto 903', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49446', '20505239262', 'JOSE ANTONIO LEZEMA CUELLAR', '', '10420127397', ' 924313953', 'ventas@dxlapparel.com', 'AV. SAN LUIS #3184 - SAN BORJA', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49447', '20505239262', 'EVELYN VARGAS RODAS', '', '10420294765', '988331060', 'ventas@dxlapparel.com', 'AV AMERICA SUR 4155 URB LOS PINOS', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49448', '20505239262', 'JOSE ELFERES SANCHEZ TORRES', '', '10428978451', '930578545', 'ventas@dxlapparel.com', 'R ALONSO DE ALVARADO 437', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49449', '20505239262', 'WILLY RICHARD PAREJA SEBEDO', '10433719', '', '993206739', 'wrpareja@yahoo.com', 'Jirón Nazca 458 Dpto 803', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49450', '20505239262', 'AMAYA CHAVEZ PAOLA MARGARITA', '', '10439637086', '997979515', 'ventas@dxlapparel.com', 'Av. Huaylas 707 ', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49451', '20505239262', 'ALVAN LEON CESAR ANTONIO', '', '10442793919', '995161201', 'ventas@dxlapparel.com', 'TRUJILLO', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49452', '20505239262', 'SILVA VASQUEZ NELLY ESTHER', '', '10447596194', '945594625', 'esther.silva1205@gmail.com', 'Calle Cinco N 505 Condominio El Manzano Bloque 3 dpto 504 ', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49453', '20505239262', 'Ruth Tinoco Nores ', '', '10451124957', '988887982', 'Abilu.blog@gmail.com ', 'Jr Alfonso Ugarte 373 dpto F Bellavista', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49454', '20505239262', 'CHAFLOQUE GAMARRA MATJORY', '', '10452249249', '987725139', 'matjory14@hotmail.com', 'Av. República de Panama 348 dpto 308', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49455', '20505239262', 'LEON ORIZANO DE LEMLEY WILMA MARIA DEL CARMEN', '', '10455872818', '936898852', 'ventas@dxlapparel.com', 'Jr Huanuco 800, Cajamarca, Cajamarca ', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49456', '20505239262', 'PAUCAR RUPAY JULIANA MARIANGELA', '', '10456315092', '953113072', 'ventas@dxlapparel.com', 'pasaje huascaran mza4 lt16 delicias de villa lima', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49457', '20505239262', 'Adriano coll cárdenas', '', '10460706306', '938006097', 'ventas@dxlapparel.com', 'SAN MIGUEL', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49458', '20505239262', 'JHONSEL GUELI PAREDES LOPEZ', '', '10463772938', '950426130', 'jhonsel.paredes@gmail.com', 'CALLE JR GAZA MZ B URB SANTIAGO INT LT8', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49459', '20505239262', 'LIU ULLOA EVELYN', '', '10470062903', '970760712', 'Violeta_jc_2@hotmail.com', 'calle monte rosa 128 Oficina 22', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49460', '20505239262', 'SANDRA MARIA BARRIOS HOYLE', '', '10479740629', '986616543', 'Smbh92@gmail.com', 'AV. Arequipa 3765 dpto 1003 San Isidro', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49461', '20505239262', 'ANA MIRELLA UEHARA SHIROMA', '10573832', '', '987929624', 'amireue4@gmail.com', 'JR ALFREDO CADENAS 285 - 102', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49462', '20505239262', 'ESTELA DEL PILAR ZAMORA REATEGUI', '10587445', '', '', 'ventas@dxlapprel.com', 'PUENTE PIEDRA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49463', '20505239262', 'GISELLA MANUELA GRADOS BAUTISTA', '10705391', '', '932407794', 'gisellagrados2015@gmail.com', 'Casapalca 1674 dpto 1109 Sí. Mirones', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49464', '20505239262', 'VANESSA VASQUEZ GARRO', '', '10760116080', '', 'ventas@dxlapparel.com', 'Calle Rubi Mz. B Lt. 14', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49465', '20505239262', 'PESANTES CAMPOMANES JHAYRA ALEJANDRA', '', '10766351315', '994 690 071', 'alejandraa2195@gmail.com', 'ENRIQUE LÓPEZ ALBUJARE 1130 ', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49466', '20505239262', 'GABRIELA ASCENZO BATTISTINI DE FUENTES', '10805504', '', '952061577', 'gabrielaab78@gmail.com', 'Calle Miguel Aljonín 115, El Rosedal Departamento 403', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49467', '20505239262', 'Juan Andrés Hurtado', '15935538', '', '+56966179266', 'ventas@dxlapparel.com', 'Gran Recreo Hotel, ubicado en Jr. Estete 460, Centro de Trujillo', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49468', '20505239262', 'NELIDA CALDERON GALINDO', '16669322', '', '979639421', 'piladoralamerced@gmail.com', 'LIBERTAD 211 STA VICTORIA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49469', '20505239262', 'FAMESA EXPLOSIVOS S.A.C.', '', '20100112214', '987960476', 'normara2890@gmail.com', 'CAR.AUTOPISTA ANCON KM. 28 (PANAMERICANA NORTE) LIMA - LIMA - PUENTE P', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49470', '20505239262', 'AMERICAN AIRLINES INC. SUCURSAL DEL PERU', '', '20101070671', '', 'jdelgado@coasconsultores.com', 'AV. CANAVAL Y MOREYRA NRO 380 DEP. 4 RES. SAN ISIDRO ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49471', '20505239262', 'EMPRESAS COMERCIALES S.A.', '', '20101951872', '', 'meyli.ramos@bata.com', 'Av. Ricardo Palma 341, interior 1101, Miraflores Oficina Piso 11', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49472', '20505239262', 'CEP INMACULADO CORAZON', '', '20107742256', '987972764', 'ycalero6@gmail.com', 'Calle Julio Becerra 130', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49473', '20505239262', 'IGLESIA ADVENTISTA DEL SEPTIMO DIA', '', '20111157058', '997542678', 'techitaeps@gmail.com', 'AV. COMANDANTE ESPINAR NRO 610 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49474', '20505239262', 'INVERSIONES NACIONALES DE TURISMO S.A.', '', '20114803228', '', 'jdelgado@coasconsultores.com', 'CAL. AMADOR MERINO REYNA NRO 551', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49475', '20505239262', 'LA GENOVESA AGROINDUSTRIAS S.A.', '', '20119873542', '', 'ventas@dxlapparel.com', 'PARQUE INDUSTRIAL MZ I LOTE 10', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49476', '20505239262', 'DISTRIBUIDORA EKAMA S.A.', '', '20123110367', '', 'compras@elpozito.com.pe', 'JR. ALVAREZ CALDERON NRO 107 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49477', '20505239262', 'MUNICIPALIDAD PUENTE PIEDRA', '', '20131366702', '', 'ventas@dxlapparel.com', 'CAL.9 DE JUNIO NRO. 100', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49478', '20505239262', 'SAFERZA IMPOREX S.A.', '', '20159927513', '999446293', 'saferza@hotmail.com', 'CALLE INKA PAHACUTEC 155', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49479', '20505239262', 'VEND S.A.C.', '', '20168805072', '96539-5332', 'cpacohuanca@arcacontal.com', 'CAL.ABELARDO QUIÑONES NRO. 186 URB. FUNDO BOCANEGRA PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49480', '20505239262', 'PACAR & CIA.S.A.', '', '20184773865', '993011565', 'ventas@dxlapparel.com', 'CAL.ARAROBA NRO. 166 DPTO. 102 URB. VALLE HERMOSO (FRENTE PARQUE CASUA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49481', '20505239262', 'ARCOR DE PERU S.A.', '', '20191308868', '', 'jaalsanche@arcor.com', 'AV. GUILLERMO PRESCOTT NRO. 325 (COLEGIO SOPHIANUM (COSTADO))', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49482', '20505239262', 'COSTA DEL SOL S A', '', '20231843460', '994632938', 'ventas@dxlapparel.com', 'AV. SALAVERRY NRO 3060 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49483', '20505239262', 'INRETAIL PHARMA S.A.', '', '20331066703', '', 'ALVARO.CESPEDES@farmaciasperuanas.pe', 'AV. DEFENSORES DEL MORRO NRO 1277', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49484', '20505239262', 'LATAM AIRLINES PERU S.A.', '', '20341841357', '', 'luisa.kuwae@latam.com', 'AV. SANTA CRUZ NRO 381 PISO 6 OFICINAS CORPORATIVAS', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49485', '20505239262', 'ASOCIACION BRAHMA KUMARIS', '', '20376724591', '992793416', 'vvargas2@gmail.com', 'Av. Paseo La Castellana 328 Surco 328', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49486', '20505239262', 'NEWREST PERU S.A.C.', '', '20381235051', '974772157', 'asist.compras6@newrest.eu', 'CALLE 1 MB L SUB LT URB BOCANEGRA ALTO ETP 1 ZONA 6', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49487', '20505239262', 'DEPOSITOS QUIMICOS MINEROS S.A.', '', '20419952461', '905 436 765', 'jan.pezo@odfjellterminals.com.pe', 'AV. ENRIQUE MEIGGS NRO 240 URB. CHACARITAS ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49488', '20505239262', 'PERU BELMOND HOTELS S.A.', '', '20424044203', '', 'richard.atayupanqui@belmond.com', 'AV ARMENDARIZ 480 INT 601', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49489', '20505239262', 'I.T.N. S.A.', '', '20429965307', '998158890', 'ventas@dxlapparel.com', 'JR LAS PLEYADAS 333 URB LA CAMPIÑA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49490', '20505239262', 'PERURAIL S.A.', '', '20431871808', '994269877', 'jguzman@fetrasa.com', 'AV. ARMENDARIZ NRO 480 INT. 601 URB. ARMENDARIZ ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49491', '20505239262', 'EMPRESA AGRARIA CAFETALERA CHANCHAMAYO HIGHLAND COFFEE ', '', '20486021773', '920 224 291', 'Central@highlandproducts.com.pe', 'CAL.CALLE 7 DE JUNIO MZA. M LOTE. 1A URB. SAN CARLOS (2 CDRA DEL C.E. ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49492', '20505239262', 'INMOBILIARIA TERRA NOSTRA S.A.C.', '', '20503232180', '', 'ventas@dxlapparel.com', 'AV. ALFREDO BENAVIDES NRO 1944 INT. 1001 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49493', '20505239262', 'HIPERMERCADOS TOTTUS S.A.', '', '20508565934', '', 'gcassaretto@tottus.com.pe', 'AV ANGAMOS ESTE 1805 INT P10', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49494', '20505239262', 'ICO LOGISTICA S.A.C.', '', '20509422444', '', 'yolanda.rengifo@ico.com.pe', 'JR. TINAJONES NRO 177 DEP. 1002 URB. TAMBO DE MONTERRICO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49495', '20505239262', 'INTEGRAL VENDING SERVICES S.A.', '', '20509507865', '989272543', 'ventas@dxlapparel.com', 'COOP UMAMARCA CALLE LOS CEDROS MZ K1 LT 17', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49496', '20505239262', 'CAPITAL HUMANO Y SOCIAL ALTERNATIVO', '', '20509528510', '', 'ventas@dxlapparel.com', 'CAL.ALFREDO SALAZAR NRO. 225 (ESP. CINEPLANET OVALO GUTIERREZ) LIMA - ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49497', '20505239262', 'CLUB SPORTING CRISTAL S.A.', '', '20510014279', '989076229', 'luis.zapata@clubsportingcristal.pe', 'CALLE 18 NRO S/N LA FLORIDA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49498', '20505239262', 'SANEXIM S.A.C.', '', '20511107904', '', 'sebastian.rubinos@saneximnutrition.com', 'JR. SALAVERRY NRO 659 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49499', '20505239262', 'PRODUCTOS AGNI S.A.C.', '', '20511932298', '', 'ventas@dxlapparel.com', 'LEONCIO PRADO 850 OF 101', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49500', '20505239262', 'KS INTERNATIONAL GROUP SAC', '', '20512253769', '', 'ventas@dxlapparel.com', 'CAL.NAYLAMP NRO. 153 URB. MARANGA (ALT. ENTRE LA AV. FAUCET Y AV. LA M', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49501', '20505239262', 'DP WORLD CALLAO S.R.L.', '', '20513462388', '', 'ventas@dxlapparel.com', 'AV. MANCO CAPAC NRO 113', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49502', '20505239262', 'ANDEAN EXPERINCE S.A.', '', '20513469129', '957798654', 'adler@aeco.pe', 'AV SAENZ PEÑA 214', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49503', '20505239262', 'CUSHMAN & WAKEFIELD PERU S.A.', '', '20513809914', '955237687', 'croble16@its.jnj.com', 'CAL.GERMAN SCHREIBER NRO. 210 INT. 701 LIMA - LIMA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49504', '20505239262', 'R Y F DISTRIBUIDORA S.A.C', '', '20514998915', '962329251', 'ventas@dxlapparel.com', 'CAL.ALFA Y OMEGA NRO. 189 DPTO. 302 URB. LA CALERA DE MONTERRICO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49505', '20505239262', 'PROMOCIONES 1021 SOCIEDAD ANONIMA CERRADA', '', '20515797123', '970194116', 'servicioalcliente@promociones1021.com', 'CAL. ENRIQUE BARRON NRO 280 INT. A URB. SAN IGNACIO ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49506', '20505239262', 'SOLUCIONES Y MERCADERIAS PARA EL HOGAR SAC', '', '20519076391', '989258171', 'smphsac@gmail.com', 'JR. INCA NRO 532 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49507', '20505239262', 'D\' COMER S.A.C.', '', '20521022354', '942083452', 'comprasdcomer@gmail.com', 'JR. EMANCIPACION NRO 231 INT. 303 URB. EL DERBY DE MONTERRICO ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49508', '20505239262', 'TAMBOPATA STILO Y BAR S.A.C.', '', '20527573123', '989156125', 'ventas@dxlapparel.com', 'AV. AEROPUERTO KM. 6 C.P. LA JOYA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49509', '20505239262', 'AG BUSINESS S.A.C', '', '20538643921', '986 617 993 ', 'informes@agbusiness.pe', 'CAL. INCA GARCILASO DE LA VEGA NRO 1879 URB. RISSO ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49510', '20505239262', 'DISTRIBUIDORA CAPISTRANO S.A.C.', '', '20543985733', '980725366', 'recepcionfacturas.capistrano@gmail.com', 'JR CAMINO REAL 1751', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49511', '20505239262', 'INMOBILIARIA LA FUNDADORA S.A.C.', '', '20544461959', '', 'ventas@dxlapparel.com', 'AV. ALFREDO BENAVIDES NRO 1944 INT. 1001 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49512', '20505239262', 'COMERCIAL DISTRIBUIDORA WATSON RAMOS S.A.C. - CODIWARA ', '', '20546641172', '959023650', 'ventas@dxlapparel.com', 'CAL. DOMINGO PONTE NRO 830 URB. JACARANDA ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49513', '20505239262', 'INMOBILIARIA SWISS CAPITALS S.A.C.', '', '20547720254', '', 'ventas@dxlapparel.com', 'AV. ALFREDO BENAVIDES NRO 1944 INT. 1001 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49514', '20505239262', 'FRESHMART S.A.C.', '', '20547839651', '', 'carla.delcarmen@freshmart.pe', 'AV NICOLAS AYLLON 2625', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49515', '20505239262', 'I & G HISPANIA S.A.C.', '', '20550025176', '', 'Manuel.Salas@hilton.com', 'AV LA PAZ 1099  MIRAFLORES', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49516', '20505239262', 'STANDPERU E.I.R.L.', '', '20551531598', '988074189', 'standperu@gmail.com', 'CAL. LAS PASIONARIAS NRO 109 URB. SANTA ISABEL ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49517', '20505239262', 'PERUVIAN VENDING S.A.C.', '', '20552043813', '', 'MFERNANDEZ@PERUVIANVENDING.COM', 'CORONEL INCLAN 135 INT 302', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49518', '20505239262', 'PESATEC PERU S.A.C.', '', '20552305443', '989327895', 'joselyn@pesatec.com', 'CAL.CONDEVILLA NRO. 1269 URB. EL OLIVAR PROV. CONST. DEL CALLAO - PROV. CONST. DEL CALLAO - CALLAO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49519', '20505239262', 'ECOGOL PERU S.A.C.', '', '20562808800', '949284828', 'ecogol.peru.sac@hotmail.com', 'JR. PISAGUA NRO 915 URB. SAN PABLO ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49520', '20505239262', 'PRODUSANA S.A.C.', '', '20563468646', '994005345', 'compras2@produsana.com', 'AV. UNIVERSITARIA NRO. 1045 URB. PANDO ET. SEIS', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49521', '20505239262', 'TIENDAS TAMBO S.AC.', '', '20563529378', '', 'ana.ventura@lindcorp.pe', 'AV JAVIER PRADO ESTE 6210 INT 1201 RIVERA DE MONTERRICO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49522', '20505239262', 'ENGLOBE SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA', '', '20565695968', '998866700', 'englobe01@gmail.com', 'PANAMERICANA NORTE 587 SUPER PUERTO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49523', '20505239262', 'BUSINESS ARELLA BERENICE S.A.C.', '', '20566301718', '', 'ventas@dxlapparel.com', 'CALLE MANUEL DE MENDIBURU 383', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49524', '20505239262', 'SOCIEDAD CREATIVA DE COMUNICACION S.A.C.', '', '20566335884', '986604140', 'jjara@qimic.pe', 'CAL. ALAMEDA MONTE UMBROSO NRO 173 DEP. 402 URB. BELLA LUZ ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49525', '20505239262', 'GRUPO DUBAI S.A.C.', '', '20574601640', ' 966000404', 'ventas@dxlapparel.com', 'MZA. E LOTE. 25 URB. MARISCAL CACERES (POR EL PARQUE INGENIEROS) AYACU', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49526', '20505239262', 'LNM LATAM S.A.C.', '', '20600124928', '947400169', 'bianca.lanaranjamedia@gmail.com', 'CAL. MALECON DE LA MARINA NRO 906 DEP. B401 URB. SANTA CRUZ ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49527', '20505239262', 'HOTEL LEXUS SOCIEDAD ANONIMA CERRADA - HOTEL LEXUS S.A.', '', '20600400780', '994174495', 'katia@lexushotel.com', 'AV. ANGAMOS OESTE NRO. 507 URB. AMERICA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49528', '20505239262', 'SOCIAL NUTRITION S.A.C.', '', '20600523318', '970165929', 'leyla@nutrico.io', 'AV LOS INCAS 172 PISO 4 URB EL OLIVAR', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49529', '20505239262', 'COMPANY SILVER GOLD S.A.', '', '20600711181', '', 'ventas@dxlapparel.com', 'JR. CRUZ DEL SUR NRO 140 INT. 1505 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49530', '20505239262', 'AHUAYRO EXPORT IMPORT S.R.L.', '', '20600986016', '', 'jdelgado@coasconsultores.com', 'AV. CORONEL FRANCISCO BOLOGNE NRO 1040 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49531', '20505239262', 'LOVE BRAND SOCIEDAD ANONIMA CERRADA - LOVE BRAND S.A.C.', '', '20601007798', '986883485', 'Sonia.bullon@lovebrand.pe', 'CAL. 24 NRO 359 DEP. 201 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49532', '20505239262', 'SILVAT S.A.C.', '', '20601092302', '941820344', 'mirko.cavenago@silvat.com', 'JR LOS CAFETEROS MZ F LOTE 20 URB VILLA LIBERTAD DE MONTERRICO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49533', '20505239262', 'IMPORTACIONES Y PROVEEDORES ANFA S.A.C.', '', '20601282471', '954546272', 'jaheherbias@gmail.com ', 'AV. JAIME BAUZATE Y MEZA NRO. 2245 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49534', '20505239262', 'LOFT CAFE S.A.C.', '', '20601422132', '994005556', 'ventas@dxlapparel.com', 'AV. MIGUEL DE UNAMUNO NRO 298 URB. SANTA FLORENCIA ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49535', '20505239262', 'UNITED NATURAL FOODS PERU SOCIEDAD ANONIMA CERRADA', '', '20601633877', '-', 'compras@ecotienda.pe', 'CAL. COLON NRO 355 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49536', '20505239262', 'CEL IMPORT INNOVA S.A.C.', '', '20601649048', '984541175', 'ventas2@celimport.com', 'AV. IGNACIO MERINO NRO 2488 DEP. 202 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49537', '20505239262', 'DANGER PRODUCCIONES E.I.R.L.', '', '20601815380', '987765782', 'Melva17@yahoo.com', 'JR. CARLOS ALAYZA Y ROEL NRO 2392 INT. 701 URB. RISSO ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49538', '20505239262', 'ALBANICO E.I.R.L.', '', '20602324371', '979283801', 'ventas@dxlapparel.com', 'PRO.LA FRAGATA NRO. 3 DPTO. 103 AGRU MARBELLA (BLOCK R)', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49539', '20505239262', 'TALBOT HOTELS S.A.C.', '', '20602490085', '', 'ventas@dxlapparel.com', 'AV. VICTOR A. BELAUNDE NRO 147 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49540', '20505239262', 'INVERSIONES GENERALES BERMALDA E.I.R.L.', '', '20602542956', '945763114', 'ventas@dxlapparel.com', 'AV EDUARDO DE HABICH 565', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49541', '20505239262', 'DISTRIBUIDORA FRANCIA S.R.L.', '', '20602853609', '938938938', 'contabilidad@dxlapparel.com', 'AV PASEO DE LA REPUBLICA 4748', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49542', '20505239262', 'CLIENTE PRUEBA', '', '20603214856', '', '', '', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49543', '20505239262', 'OLIVOS BELLATERRA S.A.C.', '', '20603492979', '987715277', 'giuliana.quezada1@gmail.com', 'AV. CAMINOS DEL INCA NRO. 288 URB. TAMBO DE MONTERRICO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49544', '20505239262', 'PROSINFER EIRL', '', '20603671261', '940 504 774', 'compras@prosinfer.com', 'CAL. JOSE CELENDON NRO 1072 URB. LIMA INDUSTRIAL ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49545', '20505239262', 'GAKRIST S.A.C.', '', '20603691581', '', 'ventas@dxlapparel.com', 'AV. HORACIO URTEAGA NRO 1405 FND. OYAGUE', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49546', '20505239262', 'SOURCING BUSINESS SOLUTION S.A.C.', '', '20603769458', '981941046', 'asistente@sbsss.com.pe', 'PRO.LOS FAISANES NRO. 259 URB. LIMATAMBO LIMA - LIMA - SURQUILLO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49547', '20505239262', 'BIOLLET GOURMET E.I.R.L.', '', '20603874413', '997237330', 'administracion@gmail.com', 'JR GUSTAVSON NRO 654', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49548', '20505239262', 'FITMARKET SOCIEDAD ANONIMA CERRADA', '', '20603901801', '999001941', 'acarbajal@fitmarketperu.com', 'CAL.LOS NOGALES NRO. 111 URB. VALLE HERMOSO', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49549', '20505239262', 'MALIKKA SALUD S.A.C.', '', '20604002070', '932935327', 'renzo.ruiz@mkseguridadysalud.com', ' JR. MONTE CAOBA MZA. M LOTE. 15 APV. RESIDENCIAL MONTERRICO LIMA - LI', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49550', '20505239262', 'LAKSHMI CASA ORGANICA S.A.C', '', '20604049866', '973644680', 'ventas@dxlapparel.com', 'AV REPUBLICA DOMINICANA 157', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49551', '20505239262', 'LA LICUADORA S.R.L.', '', '20604497494', '973581602', 'ventas@dxlapparel.com', 'CAL.CORONEL MARIN NRO. 193 URB. SAN JUAN LIMA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49552', '20505239262', 'ASGOVER S.A.C.', '', '20604840881', '942954557', 'jastotaype@gmail.com ', 'Av afranio de mello Franco 260', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49553', '20505239262', 'GRUPO IMPERIO DORADO S.A.', '', '20604860645', '', 'ventas@dxlapparel.com', 'AV. LARCO NRO 101 INT. 702 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49554', '20505239262', 'STAMP MARKETING & COMMUNICATIONS S.A.C.', '', '20604898898', '', 'ventas@dxlapparel.com', 'CAL. ALFA Y OMEGA NRO 189 DEP. 502 URB. LA CALERA DE LA MERCED', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49555', '20505239262', 'CORPORACION MENTA DEL PERU S.A.C.', '', '20605001051', '996034450', 'mentadelperu@gmail.com', 'AV JOSE SANTOS CHOCANO 1321', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49556', '20505239262', 'N&S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '', '20605191143', '982813165', 'Gerencia.comercial@yuntadistribuciones.com', 'AV PRIMAVERA 210 URB CHACARILLA DEL ESTANQUE DPTO A405', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49557', '20505239262', 'HD FRIO EIRL', '', '20605469109', '991227345', 'ventas@dxlapparel.com', 'AREQUIPA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49558', '20505239262', 'LA CAVA DE BACO S.A.C.', '', '20606117214', '900199397', 'ventas@lacavadebaco.pe', 'CAL. BLERIOT NRO 178 DEP. 502 URB. JORGE CHAVEZ ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49559', '20505239262', 'NATWASI S.A.C.', '', '20607485683', '', 'mtovar@natwasi.com.pe', 'AV. PRIMAVERA 1786-1788 URBANIZACIÓN CENTRO COMERCIAL MONTERRICO MZA. ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49560', '20505239262', 'Nogueracorp sacs', '', '20607513725', '933579729', 'lizeth.marzano@pucp.pe', 'Tomas Ramsey 975 Magdalena', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49561', '20505239262', 'EL PRADO LOGISTICA S.A.C.', '', '20607900931', '945196205', 'rosa_llerena@inversionesdelprado.com', 'AV. MANCO CAPAC NRO. 1298', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49562', '20505239262', 'AREZ COMPANY S.A.C.', '', '20608009796', '913933717', 'wilsonc@qf.com.pe', 'JR. VALENCIA NRO. 285 DPTO. 502', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49563', '20505239262', 'RUNA THANI NUTRICION SALUDABLE SOCIEDAD ANONIMA CERRADA', '', '20608340786', '949243392', 'ventas@dxlapparel.com', 'JR. TACNA NRO 496 URB. JARDIN PAZ ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49564', '20505239262', 'LAGARDERE TRAVEL RETAIL PERU S.A.C.', '', '20608357891', '', 'm.torres@lagardere-tr.com', ' AV. ELMER FAUCETT NRO. S/N AEROPUERTO INTERNACIONAL JORGE CHÁVEZ (EDI', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49565', '20505239262', 'ECOSANA BIOMARKET S.A.C.', '', '20608444921', '991764200', 'ecosanaperu24@gmail.com', 'AV. CAMINOS DEL INCA NRO. 3147 URB. PROLONGACION BENAVIDES', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49566', '20505239262', 'INVERSIONES BRAZEROS S.A.C.', '', '20608837001', '991551401', 'katy_rios_16@hotmail.com', 'AV. DEL AIRE NRO. 1232 URB. JAVIER PRADO ET. CUATRO LIMA ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49567', '20505239262', 'DISTRIBUIDORA LUCCATA S.A.C.', '', '20608862731', '920867569', 'gianpuppop@gmail.com', 'CALLE DOMINGO PONTE 830', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49568', '20505239262', 'ORGANA PERU S.A.C.', '', '20608892045', '989196843', 'comercial@organa.com.pe', 'JR. CORONEL FRANCISCO BOLOGNE NRO 395 URB. ORBEA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49569', '20505239262', 'LA GRAN FRESA PERU E.I.R.L.', '', '20608918770', '970166954', 'ventas@dxlapparel.com', 'ALAMEDA MARIA REICHE NEUMAN 386 DPTO 103 LAS TORRES DE SAN BORJA', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49570', '20505239262', 'MATHEUS BLUE MARKET S.A.C.', '', '20609174201', '970701803', 'matheus.bluemarket@gmail.com', 'JR. JOSE GALVEZ NRO 155 URB. EL CERCADO ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49571', '20505239262', 'GRUPO HACIENDA GARCIA E.I.R.L.', '', '20609661357', '997544996', 'GVASQUEZ@HACIENDAGARCIA.NET', 'AV GENERAL LUIS MIGUEL SANCH NRO 1752', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49572', '20505239262', 'MARKET PAPACHO S.A.C.', '', '20609706971', '945438339', 'admin@elpapacho.com', 'MZA. Y1 LOTE. 14 URB. ORQUIDEAS URB SANTA ROSA DE QUIVES 2DA ETAPA LIM', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49573', '20505239262', 'FG NEGOCIOS S.A.C.', '', '20609804344', '', 'comercial@sanamakina.com', 'CAL. PONTEVEDRA NRO 327 URB. LA ESTANCIA ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49574', '20505239262', 'INVERSIONES NUTRIJAMU E.I.R.L.', '', '20609847264', '915185133', 'ventas@dxlapparel.com', 'PROLONGACION PUNO 200', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49575', '20505239262', 'SELVA FORT CORP S.A.C.', '', '20609857049', '945481935', 'gimnasioselvafort@gmail.com', ':calle Plutón Urb el milagro -San Ramón', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49576', '20505239262', 'SPECIAL OPERATIONS FORCES E.I.R.L.', '', '20610201114', '934933723', 'URCARIEGUI@GMAIL.COM', 'CAL. DOÑA MERCEDES NRO 211 INT. 4 URB. LOS ROSALES ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49577', '20505239262', 'GRETA NATURAL SAC', '', '20610488227', '', 'gretaperu.productosnaturales@gmail.com', 'PRO. ARENALES NRO 990 ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49578', '20505239262', 'HOLDING E INVERSIONES CHYP E.I.R.L.', '', '20611056584', '', 'ventas@dxlapparel.com', 'av.Salaverry 2407', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49579', '20505239262', 'AXMO S.A.C.', '', '20611371234', '997581473', 'ximenaabugattas@gmail.com', 'PQ. FEDERICO BLUME NRO 142 DEP. 701 URB. SANTA CRUZ ', '0', '1', NULL, NULL, NULL, '0', '6', '2', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49580', '20505239262', 'ESPERANZA IRIS ESPINOZA DE SHOWING', '21070118', '', '964956073', 'sm_mol@hotmail.com', 'Psje Rodadero 130 - altura Cdra 4 Tomas Guido', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49581', '20505239262', 'URTI MASO RAFAEL PABLO', '', '213927690017', '00598 26183858', 'marcela@importadoradelplata.com', 'Rambla Republica de Chile 4427 Oficina 104', '0', '1', NULL, NULL, NULL, '0', '6', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49582', '20505239262', 'DANIEL FELIPA ESPINO', '21577743', '', '943691096', 'mareli.rh@gmail.com', 'AV. AURELIO GARCIA Y GARCIA 1084 (ALT. CDRA. 24 DE COLONIAL)', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49583', '20505239262', 'FELIPE RICARDO PAZOS GARCIA', '23990735', '', '942760023', 'femarepa@hotmail.com', 'Calle Jose Maria Quiroga 388 Dpto 501 Urb Higuereta Surco Alt cdra 4 d', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49584', '20505239262', 'MICHEL BUSTAMANTE VERA', '24002289', '', '946561339', 'mb901@live.com', 'Alvaro Obregon 125', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49585', '20505239262', 'LUIS HUMBERTO BALAREZO VALLEJO', '25703552', '', '989593595', 'lbalarez@gmail.com', 'Avenida Mariano H Cornejo 2256 DPTO 303', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49586', '20505239262', 'GUSTAVO CORTEZ LOYO', '25791897', '', '980927060', 'gustavocortezlo@hotmail.com', 'Tomasal 820 Dpto. 302 B Santiago de Surco Dpto. 302 B', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49587', '20505239262', 'ANGIE MARIBEL SERPA MEDRANO', '25816599', '', '980460891', 'angie.maribels@gmail.com', 'Calle Conde de Lemos 538 ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49588', '20505239262', 'ROLANDO CLAUDIO CAYAMPI CHOQUEHUANCA', '40162574', '', '926756426', 'rolandocayampi@gmail.com', 'CASUARINAS TERCERA ETAPA K4', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49589', '20505239262', 'MELISSA LESLIE ROMERO ORTEGA', '40256982', '', '987721229', 'melissaromeroortega@gmail.com', 'Calle Vizcaya 139 Higuereta Surco Dpto. 201', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49590', '20505239262', 'ROMMY RUTH TAMASHIRO ARAKAKI', '40525204', '', '994990931', 'rommytamashiro@hotmail.com', 'miguel cerna 155 san borja', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49591', '20505239262', 'GISSELA PATRICIA GRIJALVA PURIZAGA', '40740532', '', '981002668', 'gisselagrijalva@gmail.com', 'Jr teniente Jiménez Chávez 292 dpto C 101 la campiña ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49592', '20505239262', 'RICHARD JAMES LINARES CABANILLAS', '40807810', '', '998558101', 'richardlinarescabanillas@gmail.com', 'Av. Pezet 583 dpto 502 San Isidro', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49593', '20505239262', 'KARINA ARANDA TELLO', '40844786', '', '934 591 246', 'karina.aranda.t@hotmail.com', 'jr luna pizarro 803 ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49594', '20505239262', 'CARLA LILYANA ALVAREZ ARIAS', '40960613', '', '998 625 855', 'kali_aa@hotmail.com', 'Av. Jose galvez barrenechea 736', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49595', '20505239262', 'CARLOS ANDRES NORIEGA OLANO', '41090190', '', '989286315', 'cnoriega79@hotmail.com', 'av 28 de julio 346 dpto 303', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49596', '20505239262', 'OLG\'EMER ROSITA KARINA OLANO CALDERON', '41224118', '', '993458599', 'oolanoc@gmail.com', 'Calle 1, Mzna. B Lote 8, Urb. Chicmabamba 1ra Etapa', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49597', '20505239262', 'JORGE LUIS GARCIA MONTALVO', '41312553', '', '964343641', 'garciamontalvo.jorgeluis@gmail.com', 'CALLE PUQUINA 115 LOS PRADOS DE SAN MIGUEL', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49598', '20505239262', 'Yazmin Alvarado Bravo de Rueda', '41364978', '', '966683639', 'contacto@papisporprimeravez.com', 'Juan del carpio 121 ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49599', '20505239262', 'Karina Ayala Panduro ', '41581708', '', '41581708', 'ventas@dxlapparel.com', 'Calle Luna Iglesias 148 Pueblo Libre', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49600', '20505239262', 'ELIZABETH PATRICIA CHARA VELARDE', '41736542', '', '949002072', 'patriciachara@gmail.coM', ' Avenida Bolognesi 904, Departamento 103, Cayma', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49601', '20505239262', 'CATALINA ALFREDA HERBOZO MORALES', '42245996', '', '960668188', 'catalinaherbozom@gmail.com', 'Jr. Mitobamba Mz b3 lt. 61 urb los naranjos', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49602', '20505239262', 'DENISSE LISSET TORRES FERREYRA', '42262667', '', '994872545', 'denissetogyt@gmail.com', 'Calle Pablo Neruda 145 la Molina ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49603', '20505239262', 'ALBERTO RAMIREZ FERNANDEZ', '42264241', '', '924494576', 'aramirez.laa@gmail.com', 'Calle Las Cerdeñas mz g12 lote 41 Fovipol Cedros de Villa', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49604', '20505239262', 'CRISTINA ARAKAWA FERNANDEZ', '42881929', '', '96577475', 'tamiarakawa85@gmail.com', 'Manco segundo 145 dpto 803 torre C', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49605', '20505239262', 'Diana Davila', '42913512', '', '999905651', 'ddavilasilva@gmail.com', 'Jirón Los Amancaes 207 dpto 102 casuarinas Sur Surco dpto 102 L', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49606', '20505239262', 'YNES ELVIRA VILLACORTA SEBASTIAN', '43021949', '', '965021606', 'ynelvi54@gmail.com', 'Av Brasil 1188 Dpto 901', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49607', '20505239262', 'KAROL DICK PEREIRA SALGADO', '43041015', '', '942781837', 'Kalos_medic@hotmail.com', ' HOSPITAL DE LA POLICIA AV.BRASIL', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49608', '20505239262', 'CAMILA ANDREA MELGAR DELLEPIANE', '43085851', '', '987971121', 'camimd@hotmail.com', 'San Ignacio de Loyola 255 dpto 201', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49609', '20505239262', 'DARWIN ANIBAL PANCA YANQUI', '43119302', '', '921404454', 'darwin70000@gmail.com', 'CPM Cayumba', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49610', '20505239262', 'MILUZKA CINDY MABEL VASQUEZ DIAZ', '43174519', '', '987555214', 'miluzkavasquez@gmail.com', 'Alberto del Campo 468 dpto 405 Torre C', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49611', '20505239262', 'MARIA ELIZABETH PANTA SANDOVAL', '43237104', '', '973701834', 'maria.pantas@gmail.com', 'Jr. Santo Tomas Mz. L Lote 26. Urb Santa rosa Los Olivos Cercado de Li', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49612', '20505239262', 'KATHERINE PALOVA CASTILLO REYNA', '43346841', '', '969601396', 'ventas@dxlapparel.com', 'AV TUPAC AMARU S/N', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49613', '20505239262', 'PAULA CAROLINA VELASQUEZ CASTILLO', '43481075', '', '988801518', 'carolinav1@hotmail.com', 'Tomas Ramsey 915. Dpto 1302 Peru ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49614', '20505239262', 'RAUL LOZANO JARA', '43534153', '', '960668188', 'ventas@dxlapparel.com', 'JR. PASTOR SEVILLA 207 ALT CDRA 11 AV. BOLIVAR ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49615', '20505239262', 'LUIS ANGELO HERNANDEZ CENTTI', '43896581', '', '949152407', 'luishernandezbass@gmail.com', 'JR DANIEL ALOMIA ROBLES 274 COND LAS COLINAS DEL PRADO', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49616', '20505239262', 'MARYURI CATIUSCA FALEN SANCHEZ', '44042622', '', '955411640', 'marcyrios2015@gmail.com', 'Calle Antonio garland 610', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49617', '20505239262', 'KATHERINE DEL PILAR ALCANTARA MENDEZ', '44339215', '', '989744117', 'Katty1205@hotmail.com', 'Calle los morochucos 185 dpto: 101 Dpto 101', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49618', '20505239262', 'ROSA MARIA MENDOZA MIRABAL', '44412627', '', '954779300', 'mendozamrosa@gmail.com', 'CALLE MARISCAL LA MAR 200, SAN LUIS', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49619', '20505239262', 'HECTOR SAENZ HUIZA', '44749067', '', '989501722', 'Hectorsaenz402@gmail.com', 'CalleSanta mercedes n° 430 smp 2da de palao', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49620', '20505239262', 'LEONCIO EIRAN ALVAREZ TOCTO', '44864391', '', '951549397', 'ventas@dxlapparel.com', 'PUENTE PIEDRA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49621', '20505239262', 'JUANA MILAGROS VILLANUEVA DOMINGUEZ', '45092227', '', '977719176', 'milyss723@gmail.com', 'JR.cailloma 458', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49622', '20505239262', 'KATHERIN LISETTE RAMOS MENDOZA', '45147281', '', '996002331', 'kalisrm21@gmail.com', 'jr Bolognesi 275 1', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49623', '20505239262', 'LUCAS ABUGATTAS SALEM', '45218304', '', '', 'ventas@dxlapparel.com', '-', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49624', '20505239262', 'JUAN ROJAS DIAZ', '45306033', '', '949400840', 'juandarojasdiaz@gmail.com', 'Av. San luis 2919, san borja Lima Lima San Borja', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49625', '20505239262', 'BRAULIO RENAN BUENDIA RAMIREZ', '45670110', '', '942410794', 'brauliobr28@gmail.com', 'Av. Dionisio Derteano Nro. 184', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49626', '20505239262', 'MARIANA BISSET PUMAYAULI BRAVO', '45738475', '', '982764112', 'cymariana1978@hotmail.com', 'PASAJE LOS GRANADOS MZ D LOTE 9', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49627', '20505239262', 'ADA CAROLINA YAÑEZ HUERTA', '46086749', '', '988039874', 'carolinayh8@gmail.com', 'calle 51 N 225 dpto 402', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49628', '20505239262', 'Patricia Gudelia Rojas Torrejon', '46236940', '', '924408466', ' patyrtorrejon33@gmail.com', 'Av. Micaela Bastidas 371, Villa el salvador', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49629', '20505239262', 'SARA GISELA BRAVO ORIHUELA', '46374448', '', '989830014', 'beam_32_@hotmail.com', 'JR GANIMEDES MZ A3 LOTE 8 URB SAGITARIO ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49630', '20505239262', 'KATIA SOLANGE PALOMINO AGUILAR', '46459154', '', '949140808', 'katiapalomino8@gmail.com', 'Avenida paso de los andes 1172 Dpto 401 Lima Pueblo Libre', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49631', '20505239262', 'ANA MARIA GUTIERREZ GOMEZ', '46568629', '', '913115868', 'am.gg@outlook.es', 'Nogales 116 piso 4 Carmen de la legua callao', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49632', '20505239262', 'SARITA AMELIA CHAVEZ VALQUI', '46575932', '', '951861819', 'saritachv13@hotmail.com', 'Avenida Brasil 3068, Magdalena Departamento 1207', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49633', '20505239262', 'EVA LUCIA LLANCAY SIERRA', '46577314', '', '974614219', 'evalullansie88@gmail.com', 'APV CHICHERO', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49634', '20505239262', 'ALEXANDRA MARIA ORTEGA MASIAS', '46843467', '', '934065071', 'ale.ortega.masias@gmail.com', 'Jiron madreselva 283 dpto 201', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49635', '20505239262', 'STEFANY FATIMA VALVERDE VERASTEGUI', '47096354', '', '947358839', 'stvalverdev@gmail.com', 'av Ollanta 148 - Callao Callao (Cond. Ciudad Nueva) Puerta 4', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49636', '20505239262', 'CRISTIAN CARLOS GARRO CUZCANO', '47112965', '', '970833387', 'cristian.garro.cg@gmail.com', 'Calle stephen crane 102 Edificio', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49637', '20505239262', 'SANCHEZ MONICA ASTRID OLIVERA ALCANTARA', '47195199', '', '933357864', 'a.oliveralcantara.s@gmail.com', 'Calle El Rancho 298, dpto. 202', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49638', '20505239262', 'SAMANTHA MILAGROS FIGUEROA CARBAJAL', '47263535', '', '941 461 892', 'sama.mfca@gmail.com', 'Las Camelias 845 San Isidro Dpto 102', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49639', '20505239262', 'LIZ DE LA CRUZ', '546458775', '', '996208860', 'lizperu@hotmail.com', 'Av. Manuel Villaran 213 dpto 302', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49640', '20505239262', 'MARIA JOSE FLORES BURGOS', '70023438', '', '955241611', 'majo.flores.b@gmail.com', 'Parque Guatemala 120 dpto 503', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49641', '20505239262', 'CARLOS TETSUO YSHIDA RIVA', '70436824', '', '975177751', 'carlosyshida@gmail.com', 'Jr. Julio C. Tello 421', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49642', '20505239262', 'NAOMY EFIGENIA YUPANQUI FERNANDEZ', '70599056', '', '952608042', 'Nefy.fer@gmail.com', 'Calle Yasila 268 Salamanca', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49643', '20505239262', 'ROXANA PIERINA DEL CARMEN ROJO CANEPA', '70655804', '', '940158317', 'pierinarojo16@gmail.com', 'Av. 28 de julio 150', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49644', '20505239262', 'CRISTHIAN ARMANDO MUÑANTE MALPARTIDA', '70917811', '', '941313857', 'cristhian.1052@gmail.com', 'Av. Alto Venezuela 5355 torre D dpto 502', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49645', '20505239262', 'RAMON ALEJANDRO ALFONZO ROSADO', '71395806', '', '934573141', 'ralfonzo96@gmail.com', 'Av. Jirón Alcides Vigo Hurtado con calle los girasoles mzC lote 3 ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49646', '20505239262', 'PIERO ABEL YAÑEZ CHILE', '71838394', '', '987463205', 'piero-abel@hotmail.com', 'Calle San Camilo 125, edificio touch dpto 807', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49647', '20505239262', 'FIORELLA JIMENA CALDERON JAYO', '71908842', '', '936761812', 'fiorejimena@gmail.com', 'DISTRITO SAN JOSE DE LOS MOLINOS', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49648', '20505239262', 'ARACELI GENSOLLEN CASTILLO', '71961995', '', '961630493', 'andreagensollen@gmail.com', 'CALLE ARAGÓN 366 SEGUNDO PISO', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49649', '20505239262', 'DIANA CAROLINA DIEZ NOBLECILLA', '72001577', '', '985852175', 'dianita10no@hotmail.com', 'Av. Angamos Oeste 651 Oficina 205', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49650', '20505239262', 'ESTEFANY PALOMINO PARIONA', '72005381', '', '924313953', 'ventas@dxlapparel.com', 'AV. SAN LUIS 3184 - SAN BORJA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49651', '20505239262', 'GRACIA ALESSANDRA RUILOBA QUIROS', '72208185', '', '922971945', 'alessandraruilobaq@hotmail.com', ' AV. CERROS DE CAMACHO 620, DPTO 101', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49652', '20505239262', 'GIANELLA DEL CARMEN CHILET TIJERO', '72299948', '', '922793033', 'gianellachilet@outlook.com', 'José Leal 1192, Lince 1004 Lima Lince', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49653', '20505239262', 'JUAN JOSE CRUZADO CHAVEZ', '72783767', '', '926 689 182', 'jjcruzado124@gmail.com', 'Iams Cuya Roque Av universitaria 1965 Torre 2 - Apartamento 406 Lima P', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49654', '20505239262', 'KENN SEBASTIAN TONG PEREZ', '72876548', '', '962610002', 'kennytong2003@gmail.com', 'AV. CUBA 1249', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49655', '20505239262', 'DIEGO SEBASTIAN ROJAS ARENAS', '72899017', '', '965772526', 'ds.rojasa17@gmail.com', 'Avenida Paseo de la República 3905 departamento 203', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49656', '20505239262', 'MILAGROS CHAVEZ GUEVARA', '73015507', '', '947779118', 'christophercruz13@gmail.com', 'Talara 163 Jesus Maria', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49657', '20505239262', 'CLAUDIA SARITA ARAUJO REYES', '76001713', '', '983747266', 'csar230297@gmail.com', 'Barrio Chaquila Pasaje Pacae #109 ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49658', '20505239262', 'SERNA VICTORIA ALEJANDRA PUMA LA', '76356942', '', '977301254', 'victoria_puma_2000@hotmail.com', 'CALLE ELEAZAR BLANCO 216 INTERIOR 8', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49659', '20505239262', 'Rafaella Benavides', '77326283', '', '937153853', 'Rafaellabeub1298@gmail.com', 'Bolognesi 709 miraflores ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49660', '20505239262', 'DIANA CARRERA SARAVIA', '41909183', '', '986663363', 'dianacarrerasaravia83@gmail.com', 'PASAJE AUGUSTO LOPEZ RODRIGUEZ MZ P LT 11 URB HONOR Y LEALTAD', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49661', '20505239262', 'DONNA MENDIVIL', '40680185', '', '992797965', 'nmedvila@gmail.com', 'AV TINGO MARIA 353', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49662', '20505239262', 'PAMELA LAZARTE', '09646362', '', '987714176', 'PLAZART@HOTMAIL.COM', 'JR HUAMAN POMA DE AYALA 257', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49663', '20505239262', 'JENNY ARONES GOMEZ', '21556269', '', '998264244', 'jenny160176@hotmail.com', 'AV JUAN DE ALIAGA 579', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49664', '20505239262', 'RICARDO FLORES PONCE', '73217258', '', '966481064', 'serolfponcericardo@gmail.com', 'JUAN DE LA FUENTE 144', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49665', '20505239262', 'LUCIA JEANETTE DUCLOS RIOS', '07762446', '', '997900532', 'jeanette.duclos@gmail.com', 'JR MOORE 151 DPTO 501', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49666', '20505239262', 'STEFANY PINEDO DEL AGUILA', '42290984', '', '987707321', 'stefanypda@gmail.com', 'JR ALDEBARAN 420 CONDOMINIO ROCIO DEL GOLF BLOCK V DPT 102', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49667', '20505239262', 'KARLA GIANELLA GARCIA ESCALANTE', '74392367', '', '994307614', 'ventas@dxlapparel.com', 'PUENTE PIEDRA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49668', '20505239262', 'LEXICARE S.A.', '8853370-0', '', '5630 0128, 2215 0314', 'ventas@dxlapparel.com', '2 calle A, 12-37 zona 15 colonia Tecun Uman, Ciudad Guatemala, Guatema', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49669', '20505239262', 'Katia Casusol', '70390466', '', '70390466', 'Katia.casusol@dxlapparel.com', 'Puente piedra ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49670', '20505239262', 'KATHERINE ESTHER LOZADA FLORES', '10714786', '', '998750728', 'klozadaf@hotmail.com', 'Av separadora industrial 3110 DPTO 101', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49671', '20505239262', 'LORENA ISABEL ESPEJO GARCIA', '72020014', '', 'LIMA', 'lorena.isaes@gmail.com', 'AV. MALACHOWSKY 190', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49672', '20505239262', 'XIMENA ABUGGATAS', '43365631', '', '', 'ventas@dxlapparel.com', 'MIRAFLORES', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49673', '20505239262', 'ARIADNA JAQUELINE ESPINOZA SOTELO', '44066875', '', '', 'ventas@dxlapparel.com', 'PUENTE PIEDRA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49674', '20505239262', 'DONALD HILDEBRANDO IVAN CASTILLO GALLEGOS', '42173498', '', '942897531', 'cacerolita2004@outlook.com', 'HUSARES DE JUNIN 815', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49675', '20505239262', 'Verónica Valverde Vargas', '43561420', '', '914334052', 'ventas@dxlapparel.com', 'Andahuasi - sayan', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49676', '20505239262', 'YULIANA LISSETTE CALERO ALEMAN', '42891203', '', '987972764', 'ycalero6@gmail.com', 'Calle Julio Becerra 130', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49677', '20505239262', 'Miguel Angel Lozano De la Vega', '43113463', '', '', 'ventas@dxlapparel.com', 'Urb santa rosa mz L lote 35 Vipol', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49678', '20505239262', 'JESUS EMANUEL GUERRERO RAMIREZ', '46366435', '', '954306276', 'jesugr2011@gmail.com', 'Jirón zorritos 1399 block 60 dpto 202', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49679', '20505239262', 'MELISSA AKEMI MAEDA JERI', '43857536', '', '980708558', 'Melissamaedajeri@gmail.com', 'Argenta 185 san borja DPTO 301', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49680', '20505239262', 'SARA KATHERINE ALCOCER TAPIA', '42042697', '', '989390407', 'Tomas Ramsey 834 1006', 'Tomas Ramsey 834 DPTO 1006', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49681', '20505239262', 'JESSICA MARIELLA DULANTO MANRIQUE', '07751646', '', '992277871', 'jessicadulanto@hotmail.com', 'CALLE MENDIBURO 438 DPTO 302', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49682', '20505239262', 'MARIA CAROLINA CASTRO CASTILLO', '03661671', '', '998199278', 'ventas@dxlapparel.com', 'CALLE CUZCO N469', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49683', '20505239262', 'PAOLA VANESSA PEREZ TORERO', '41151063', '', '993115136', 'Paopereztorero@gmail.com', 'CALLE BOLIVAR 338 DPTO 305', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49684', '20505239262', 'KARY RAQUEL DAVILA RIEGA', '76650341', '', '997024880', 'kary_dar10@hotmail.com', 'JR MARISCAL MILLER 1030 DPTO 1604', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49685', '20505239262', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '07827893', '', '', 'ventas@dxlapparel.com', 'MIRAFLORES', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49686', '20505239262', 'JUDITH CORNEJO FIGUEROA', '42308222', '', '984501170', 'ventas@dxlapparel.com', 'Av. Circunvalación O-1. Ayuda Mutua', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49687', '20505239262', 'MUESTAS COMERICALES', '88888888', '', '', 'ventas@dxlapparel.com', 'PUENTE PIEDRA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49688', '20505239262', 'MARIA LUISA ANZUALDO VASQUEZ', '06794178', '', '988458885', 'malu3012av@hotmail.com', 'Av. La Universidad 200', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49689', '20505239262', 'ALMENDRA SALAZAR RAGUZ', '42988169', '', '941101722', 'Almendrasalazarr@gmail.com', 'Calle San Fernando 246 Dpto 203', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49690', '20505239262', 'NICOLAS SIFUENTES PERACCHIO', '76454287', '', '936056072', 'nico6794@gmail.com', 'Los Bodegones 371 Surco', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49691', '20505239262', 'PERLA ISABEL CHAVEZ TELLO', '40791061', '', '922266139', 'perla.chavez360@gmail.com', 'Calle Segovia 176 Dpto 401', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49692', '20505239262', 'GESTION EN CONDOMINIOS VILDOSOLA SPA', '77120573-9', '', '', 'notificaciones:gestionencondominios@gmail.com', 'SAN NICOLAS 1385 DP 2102 COMUNA SAN MIGUEL', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49693', '20505239262', 'LUIS FERNANDO SUITO CARRASCO', '40656637', '', '994287886', 'aimeefoguel@hotmail.com', 'Calle el rosario 338 DPTO 701', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49694', '20505239262', 'JHARITZA FIORELLA ROJAS VEGA', '72715717', '', '923154190', 'jharitzarojas@gmail.com', 'av jorge chavez 160', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49695', '20505239262', 'PAVEL TINEO ALARCON', '41039168', '', '981875432', 'paveltineo@outlook.com', 'Jr. Bartolomé Herrera - 255', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49696', '20505239262', 'SEGERSBOL SALOMON NIELS JONATHAN', '40999801', '', '', 'ventas@dxlapparel.com', '-', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49697', '20505239262', 'MIRELLA TORRES RIVERO', '09936322', '', '996501014', 'mirellatorresr@hotmail.com', 'Jr. Puerto etén 245 ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49698', '20505239262', 'MARITZA ASTOCONDOR ZUÑIGA', '10501642', '', '980718104', 'ventas@dxlapparel.com', 'Calle sacsayhuaman184 urb 27 de abril ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49699', '20505239262', 'MANUEL AGUIRRE GUTIERREZ', '02833272', '', '969996776', 'manuel.oficial@gmail.com', 'Calle Ignacio Merino 160', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49700', '20505239262', 'ALEJANDRA MERCEDES ECHEVARRIA REYES', '46078867', '', '993094316', 'alemer1211@gmail.com', 'Jiron bolognesi 160 4 piso', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49701', '20505239262', 'ADRIANA ISABEL BURNEO HURTADO', '40494052', '', '996685977', 'adrianaburneo@gmail.com', 'Franz Liszt 179, Dpto 201', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49702', '20505239262', 'JULIO NICOLAS MORALES DORA', '07797088', '', '', 'ventas@dxlapparel.com', 'PUENTE PIEDRA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49703', '20505239262', 'PAMELA BARBARA PUPPO SANDOVAL', '44229750', '', '949826706', 'pamelapuppo@gmail.com', 'Av. Brasil 863 Dpto 2001A', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49704', '20505239262', 'MARIA CECILIA ZAPATA CALENZANI', '71869262', '', '963709581', 'calenzani.mc@gmail.com', 'Av bielovucic cavalier 375 Dpto 102 ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49705', '20505239262', 'Ana Luz Vasquez Bustamante', '10137902', '', '990065747', 'anilu811@hotmail.com', 'Calle Gaddi 146', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49706', '20505239262', 'ALBERTO PACHACUTEC GONZALES CASTILLO', '41090200', '', '0031657225732', 'albertopgc@hotmail.com', 'PARQUE AYACUCHO 126, LIMA21', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49707', '20505239262', 'Jose Manuel Trigoso Gonzales', '42327120', '', '996668311', 'jtrigoso@gmail.com', 'Calle 50 DPTO 155', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49708', '20505239262', 'ANA CECILIA GARIZA SOLANO', '44668572', '', '979179900', 'anita.gariza@gmail.com', 'Jirón General Varela 1752 Dpto 706', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49709', '20505239262', 'GUADALUPE RENEE INES SERPA PONCE DE BACA', '70439920', '', '996471974', 'gri.serpa@gmail.com', 'Avenida Del Parque Sur 738 DPTO 501', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49710', '20505239262', 'CARLOS EDUARDO VALCARCEL VUKOVIC', '10789689', '', '989874858', 'eduva55@hotmail.com', 'Calle Colón 110 Dpto. 1203', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49711', '20505239262', 'CARMEN AURORA MUÑOZ FOSTER', '41180948', '', '953489455', 'camycamy@live.com', 'Calle La Cascada 256', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49712', '20505239262', 'JORGE ANDRES AYALA BALBOA', '28480156', '', '966051042', 'ventas@dxlapparel.com', 'Chalhuanca - Aymaráes', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49713', '20505239262', 'CELSO ANDRES SOTOMARINO BRAVO', '42347661', '', '970112989', 'aleycelso@gmail.com', 'AVENIDA JORGE CHAVEZ 370 DPTO 501 TORRE A', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49714', '20505239262', 'MAYTE RAQUEL ARIAS SANCHEZ', '71337338', '', '971334165', 'ventas@dxlapparel.com', 'AV BUENOS AIRES N°106 INT 1 ', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49715', '20505239262', 'Adriana Zabala', '53099135', '', '984397847', 'adri_zabala@hotmail.com', 'Grimaldo Solar 428 401', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49716', '20505239262', 'LOURDES MAGDALENA YANAC ACEDO', '06781841', '', '976839916', 'lourdes.yanac@upagu.edu.pe', 'Calle Luis Aldana 122 Urb. Las Leyendas San Miguel', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49717', '20505239262', 'NATALIA ESPINOSA MONCLOA', '09874555', '', '989444173', 'nem51@hotmail.com', 'Calle San Ignacio de Loyola 136, dpto 501', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49718', '20505239262', 'DIANA VICTORIA DE LA CRUZ GOMEZ', '42984562', '', '982123212', 'dianadelacruzg30@gmail.com', 'jiron los forestales 105 departamento 403', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49719', '20505239262', 'LIZBETH NORIEGA RODRIGUEZ DE POBLETE', '40700244', '', '999203710', 'liz.poblete80@gmail.com', 'Jr. Toquepala 233', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49720', '20505239262', 'MERY MIRIAM MAU CHAN', '10543549', '', '997360806', 'memimau@yahoo.com', 'Fray Luis de Leon 719', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49721', '20505239262', 'GABRIELA MORALES ROSAS', '40658872', '', '979019411', 'gmorales@pasteleriamariate.com.pe', 'calle el monticulo 146 casa 204', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49722', '20505239262', 'BANESA DEL PILAR NECIOSUP TORRES', '40606504', '', '997102526', 'maria.margibu2434@gmail.com', 'Calle delos manzana A8 lote 13 urbanización sagitario surco 301', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49723', '20505239262', 'HERNAN MENDIVIL FERRECCIO', '41941373', '', '957823841', 'hernan824@hotmail.com', 'Calle Dos de Mayo 1375 Dpto 301', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49724', '20505239262', 'VALERIE ALESSANDRA JARA CHACON', '76004428', '', '995852944', 'vjara38@gmail.com', 'Jr Alexander Fleming 188', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49725', '20505239262', 'MARIA FE TENORIO GOICOCHEA', '74611515', '', '990917277', 'mafecancer2000@gmail.com', 'Carlos Ferreyros 1058 1', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49726', '20505239262', 'INGRID MILAGROS DIAZ NAVARRO', '48054234', '', '980542716', 'milee2812@gmail.com', 'Jr. tambo real N°264, Urb. Matellini', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49727', '20505239262', 'DIANA LOURDES BENITES ZEVALLOS', '41394133', '', '984129866', 'dianabz48@hotmail.com', 'Calle Braganza 174', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49728', '20505239262', 'MAGALI DORIS PINTO FLORIAN', '10308926', '', '997352649', 'magapintof@gmail.com', 'Jr. Fray Luis De Leon, 251 urb COVIMA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49729', '20505239262', 'ARTURO RAFAEL GARCIA REGAL MARTICORENA', '09750995', '', '966140271', 'argarema@gmail.com', 'Calle Los Medanos 145 Casa 1 Urb. La Planicie', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49730', '20505239262', 'CRISTINA FARAH GIHA', '08245971', '', '999966013', 'Cristinafarahg@hotmail.com', 'Guillermo Marconi 273 san Isidro', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49731', '20505239262', 'SANDY BRAVO CORDOVA', '48056493', '', '914549354', 'sandybravo26@gmail.com', 'Jr. Capac Yupanqui 967', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49732', '20505239262', 'Nicole Caro Rios', '73122449', '', '944251949', 'nicolecaro.1099@gmail.com', 'Calle la campiña 154', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49733', '20505239262', 'DANIELA ALEXANDRA UBILLUS CELI', '46294040', '', '974686965', 'aleubillusceli22@gmail.com', 'Avenida Angamos Oeste 120 - 160', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49734', '20505239262', 'CRISTHIAN ALEXANDER LAMAS MATOS', '48149798', '', '945517959', 'cristhian.lamas@gmail.com', 'Calle Tutupaca 156 , depto 301.', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49735', '20505239262', 'RICHARD JONATAN CARDENAS GARCIA', '44264365', '', '954650113', 'damicaconstructoressac@gmail.com', 'Calle Pichincha # 699 - Breña Apartamento 401', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49736', '20505239262', 'ELIZABETH LILIANA CALLAN BABILON', '45902662', '', '981591929', 'CALLANELIZABETH9@GMAIL.COM', '1292 AV PETIT THOUARS PISO 1', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49737', '20505239262', 'DIEGO ALBERTO RUBIÑOS DAVILA', '45337620', '', '955076095', 'diego16_2005@hotmail.com', 'Avenida del pacifico 135 Edificio 1 dpto. 501', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49738', '20505239262', 'CHARLES MAVERICK VIDAL ESTRADA', '43786096', '', '996271858', 'charly_ve@hotmail.com', 'Av. emilio cavenecia 225 416', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49739', '20505239262', 'ERIKA LOZANO DE LA VEGA', '40857389', '', '991103277', 'beki1301@gmail.com', 'jiron chamaya 276 condominio Las magnolias torre 4 torre 4 departament', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49740', '20505239262', 'Trent Patrick VanHoose', '001349030', '', '975091692', 'Tmvanhoose.imh@gmail.com', 'Pasaje Bolognesi #12 Loreto,Maynas,Iquitos', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49741', '20505239262', 'ANGEL JULIAN LA CRUZ DIAZ', '10007921', '', '00000000', 'ventas@dxlapparel.com', 'PUENTE PIEDRA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49742', '20505239262', 'CLAUDIA VERONICA CRUZ NUÑEZ', '71463867', '', '996483923', 'cvcn1104@gmail.com', 'Pasaje austro 162 La Victoria', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49743', '20505239262', 'CESAR JAVIER FLORES LOPEZ', '41677668', '', '961754834', 'cjfloreslopez@gmail.com', 'Avenida tomás marsano #2175 - depa 1304', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49744', '20505239262', 'PETRONILA ANTON DE HORNA', '16609872', '', '960153415', 'denisanton18.10@gmail.com', 'Av. Wilson 1358 galeria plaza tec tienda 231 042', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49745', '20505239262', 'VANESSA AYDEE MEDINA MUÑOZ', '41528493', '', '957798666', 'vanessamedinam@gmail.com', 'Av. Santa Cruz 880 Dpto. 302', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49746', '20505239262', 'RICARDO JAVIER VERA PEÑA', '70437281', '', '955034511', 'rvera@outlook.com.pe', 'calle las hiedras 136 dpt 501', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49747', '20505239262', 'LUIS ZACNICH', '46587607', '', '987800727', 'zacnich.luis@gmail.com', 'CALLEALFAYOMEGA', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49748', '20505239262', 'GUILLERMO JOSE CASTILLA DEL CARPIO', '09871276', '', '923862464', 'amarillo.tres@gmail.com', '138 segovia dpto 401', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49749', '20505239262', 'DIANA KARINA APAZA MAMANI', '70679607', '', '970834534', 'kari.apaza.mamani@gmail.com', 'Block D, Int 504, Referencia: Al frente de la universidad de las ameri', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49750', '20505239262', 'NELIDA MAGDA GUTIERREZ FERNANDEZ', '08868767', '', '000000000', 'ventas@dxlapparel.com', 'MIRAFLORES', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49751', '20505239262', 'CARLOS ALEJANDRO VILLADEZA VILLAVICENCIO', '09799372', '', '964860020', 'cvilladeza@gmail.com', 'Av. Mello Franco 630 Dpto. 306', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49752', '20505239262', 'CINTHIA DIAZ PORTUGAL', '41766007', '', '984151988', 'Cinthiadiazportugal@hotmail.com', 'Jirón Toquepala 200. Dpto 201', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49753', '20505239262', 'MIGUEL ANGEL CALLA PALOMINO', '41627054', '', '986454870', 'ventas@dxlapparel.com', 'urubamba cusco', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49754', '20505239262', 'LORENA GARCIA MOREL', '10303309', '', '988343657', 'Lore0111@hotmail.com', 'Victor maurtua 229 DPTO 202', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49755', '20505239262', 'GIULIANA IVANA CUZQUEN NUÑEZ', '07877712', '', '980674650', 'gcuzquen@gmail.com', 'Av. De La Floresta 713 Dpto 201 Chacarilla del Estanque', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49756', '20505239262', 'ANTONIO FRIAS MANNUCCI', '70149131', '', '987485731', 'antoniofrias96@gmail.com', 'Medrano Silva 397 Dpto 105', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49757', '20505239262', 'CLAUDIA DEL PILAR RODRIGUEZ AGUINAGA', '44354500', '', '955151449', 'Claud.ra31@gmail.com', 'Calle madrid 426 DPTO 403', '0', '1', NULL, NULL, NULL, '0', '1', '1', '0', '0.00');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49758', '10123456781', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '', '20544105494', '938490474', '', 'AV. TOMAS MARSANO NRO. 4163 URB. VISTA ALEGRE - LIMA LIMA SANTIAGO DE SURCO', '0', '1', '1', '2023-10-31 04:10:14', '2023-10-31 04:10:45', '1', '2', '6', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49759', '10123456781', 'POLO QUIÑONEZ MARIA TERESA', '10009561', '', '', '', '', '0', '1', NULL, '2023-10-31 04:10:37', NULL, '1', '1', '1', '0', NULL);
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49760', '10123456781', 'Alexander\'\'\' Ponte', '71034296', '', '', 'alexponte@gmail.com', 'La lomita', '1', '1', NULL, '2023-10-31 11:10:42', NULL, '1', '1', '1', '1', '0.20');
INSERT INTO `tec_customers` (`id`, `ruc`, `name`, `cf1`, `cf2`, `phone`, `email`, `direccion`, `customers_type_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`, `person_type`, `document_type_id`, `is_retainer`, `retainer_percentage`) VALUES ('49761', '10123456781', 'Alexander\'\'´´\' Ponte', '71034290', '', '', 'alexponte@gmail.com', 'La lomita', '1', '1', NULL, '2023-10-31 11:10:00', NULL, '1', '1', '1', '1', '0.20');


#
# TABLE STRUCTURE FOR: tec_customers_type
#

DROP TABLE IF EXISTS `tec_customers_type`;

CREATE TABLE `tec_customers_type` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ruc` varchar(15) NOT NULL,
  `customers_type` varchar(250) CHARACTER SET latin1 DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `status` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;

INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('1', '10123456781', 'Cliente comprador nacional', NULL, NULL, NULL, '2023-09-08 21:15:18', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('2', '10123456781', 'probando el registro lkfldkjfldkjfljdslfjdlsjfldsjfldjslfjdslfjldskjflsdjflkdsjlfjdslfjdlsjfldskjfldksjflkdsjlfjdfl lfdjlfj lsjflsdkjf ldskjf lkdjf lkjd lkjdfsl kjdslkf jdlskj flkdsjflkdsjf lkdsjf lkdsjf lkdsjf ldksjf lkdsjfl dskjf lsdkjf ldskjfl dsk', NULL, '1', NULL, '2023-10-16 17:22:23', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('3', '10123456781', 'Cliente comprador intermo', '1', '1', '2023-09-08 06:09:29', '2023-10-16 17:07:27', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('4', '10123456781', 'nuevo tipo de cliente', '1', NULL, '2023-09-22 04:09:44', NULL, '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('5', '10123456781', 'nuevo tipo de cliente', '1', NULL, '2023-09-22 04:09:23', NULL, '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('6', '10123456781', 'nuevo tipo de cliente', '1', NULL, '2023-09-22 04:09:52', NULL, '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('7', '10123456781', 'Cliente comprador intermo', '1', NULL, '2023-09-22 04:09:21', NULL, '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('8', '10123456781', 'nuevo tipo de cliente', '1', NULL, '2023-09-22 04:09:44', NULL, '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('9', '10123456781', 'Cliente comprador intermo', '1', NULL, '2023-09-22 04:09:56', NULL, '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('10', '10123456781', 'Cliente comprador intermo', '1', NULL, '2023-09-22 04:09:15', NULL, '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('11', '10123456781', 'Cliente comprador intermo', '1', NULL, '2023-09-22 04:09:11', '2023-09-22 16:56:19', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('12', '10123456781', 'nuevo tipo de cliente 1', '1', '1', '2023-09-22 04:09:36', '2023-10-16 05:10:35', '1');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('13', '10123456781', 'probando el registro', '1', NULL, '2023-10-16 04:10:49', NULL, '1');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('14', '10123456781', 'esds', '1', NULL, '2023-10-16 06:10:09', NULL, '1');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('15', '10123456781', 'w', '1', NULL, '2023-10-16 06:10:15', '2023-10-31 02:01:25', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('16', '10123456781', 'w', '1', NULL, '2023-10-16 06:10:19', '2023-10-31 02:01:28', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('17', '10123456781', 'w', '1', NULL, '2023-10-16 06:10:25', '2023-10-31 02:01:31', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('18', '10123456781', 'w', '1', NULL, '2023-10-16 06:10:29', '2023-10-31 02:01:34', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('19', '10123456781', 'w', '1', NULL, '2023-10-16 06:10:34', '2023-10-31 02:01:36', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('20', '10123456781', 'w', '1', NULL, '2023-10-16 06:10:42', '2023-10-31 02:01:40', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('21', '10123456781', 'w', '1', NULL, '2023-10-16 06:10:46', NULL, '1');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('22', '10123456781', 'w', '1', NULL, '2023-10-16 06:10:59', '2023-10-31 02:01:21', '0');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('23', '10123456781', 'Tipo de cliente de prueba', '1', '1', '2023-10-31 04:10:16', '2023-10-31 04:10:33', '1');
INSERT INTO `tec_customers_type` (`id`, `ruc`, `customers_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('24', '10123456781', 'probando', '1', NULL, '2023-10-31 08:10:08', NULL, '1');


#
# TABLE STRUCTURE FOR: tec_doctors
#

DROP TABLE IF EXISTS `tec_doctors`;

CREATE TABLE `tec_doctors` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(300) NOT NULL,
  `cmp` varchar(50) NOT NULL,
  `speciality` varchar(300) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_document_type
#

DROP TABLE IF EXISTS `tec_document_type`;

CREATE TABLE `tec_document_type` (
  `id` int(11) NOT NULL,
  `document_type` varchar(50) NOT NULL,
  `abreviatura` varchar(15) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `tec_document_type` (`id`, `document_type`, `abreviatura`) VALUES ('0', 'DOC.TRIB.NO.DOM.SIN.RUC', NULL);
INSERT INTO `tec_document_type` (`id`, `document_type`, `abreviatura`) VALUES ('1', 'DOCUMENTO NACIONAL DE IDENTIDAD', 'DNI');
INSERT INTO `tec_document_type` (`id`, `document_type`, `abreviatura`) VALUES ('4', 'CARNET DE EXTRANJERIA', 'CARNET EXT.');
INSERT INTO `tec_document_type` (`id`, `document_type`, `abreviatura`) VALUES ('6', 'REGISTRO  UNICO DE CONTRIBUYENTES', 'RUC');
INSERT INTO `tec_document_type` (`id`, `document_type`, `abreviatura`) VALUES ('7', 'PASAPORTE', 'PASAPORTE');
INSERT INTO `tec_document_type` (`id`, `document_type`, `abreviatura`) VALUES ('8', 'por definir', NULL);


#
# TABLE STRUCTURE FOR: tec_exchange
#

DROP TABLE IF EXISTS `tec_exchange`;

CREATE TABLE `tec_exchange` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `buy` decimal(25,3) NOT NULL,
  `sell` decimal(25,3) NOT NULL,
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` datetime DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` datetime DEFAULT NULL,
  `estado` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=210 DEFAULT CHARSET=utf8;

INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('1', '2020-08-24', 'USD', '3.579', '3.584', '1', '2020-08-24 19:59:20', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('2', '2020-08-25', 'USD', '3.579', '3.584', '1', '2020-08-25 02:09:33', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('3', '2020-08-27', 'USD', '3.582', '3.586', '1', '2020-08-27 14:33:28', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('4', '2020-08-28', 'USD', '3.582', '3.586', '1', '2020-08-28 02:53:28', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('5', '2020-08-29', 'USD', '3.568', '3.573', '1', '2020-08-29 12:56:02', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('6', '2020-08-30', 'USD', '3.568', '3.573', '1', '2020-08-30 00:33:30', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('7', '2021-01-19', 'USD', '0.000', '0.000', '1', '2021-01-19 12:20:48', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('8', '2021-01-20', 'USD', '0.000', '0.000', '1', '2021-01-20 10:07:38', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('9', '2021-01-26', 'USD', '0.000', '0.000', '1', '2021-01-26 16:17:15', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('10', '2021-01-27', 'USD', '0.000', '0.000', '1', '2021-01-27 10:12:04', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('11', '2021-01-28', 'USD', '0.000', '0.000', '2', '2021-01-28 10:43:03', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('12', '2021-01-29', 'USD', '0.000', '0.000', '2', '2021-01-29 08:24:18', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('13', '2021-01-30', 'USD', '0.000', '0.000', '1', '2021-01-30 11:26:00', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('14', '2021-02-01', 'USD', '0.000', '0.000', '2', '2021-02-01 09:32:33', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('15', '2021-02-02', 'USD', '0.000', '0.000', '2', '2021-02-02 07:40:03', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('16', '2021-02-03', 'USD', '0.000', '0.000', '2', '2021-02-03 08:18:03', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('17', '2021-02-04', 'USD', '0.000', '0.000', '2', '2021-02-04 07:41:21', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('18', '2021-02-05', 'USD', '0.000', '0.000', '2', '2021-02-05 07:41:49', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('19', '2021-02-08', 'USD', '0.000', '0.000', '2', '2021-02-08 07:45:42', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('20', '2021-02-09', 'USD', '0.000', '0.000', '2', '2021-02-09 07:51:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('21', '2021-02-10', 'USD', '0.000', '0.000', '2', '2021-02-10 15:54:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('22', '2021-02-11', 'USD', '0.000', '0.000', '2', '2021-02-11 07:43:45', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('23', '2021-02-12', 'USD', '0.000', '0.000', '2', '2021-02-12 08:24:20', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('24', '2021-02-13', 'USD', '0.000', '0.000', '2', '2021-02-13 05:25:50', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('25', '2021-02-14', 'USD', '0.000', '0.000', '2', '2021-02-14 03:23:26', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('26', '2021-02-15', 'USD', '0.000', '0.000', '2', '2021-02-15 08:12:34', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('27', '2021-02-16', 'USD', '0.000', '0.000', '2', '2021-02-16 11:31:37', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('28', '2021-02-17', 'USD', '0.000', '0.000', '2', '2021-02-17 09:28:49', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('29', '2021-02-18', 'USD', '0.000', '0.000', '2', '2021-02-18 08:06:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('30', '2021-02-19', 'USD', '0.000', '0.000', '2', '2021-02-19 08:50:38', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('31', '2021-02-21', 'USD', '0.000', '0.000', '2', '2021-02-21 04:55:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('32', '2021-02-22', 'USD', '0.000', '0.000', '2', '2021-02-22 08:57:10', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('33', '2021-02-23', 'USD', '0.000', '0.000', '2', '2021-02-23 07:25:28', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('34', '2021-02-24', 'USD', '0.000', '0.000', '2', '2021-02-24 08:27:16', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('35', '2021-02-25', 'USD', '0.000', '0.000', '2', '2021-02-25 10:15:36', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('36', '2021-02-26', 'USD', '0.000', '0.000', '2', '2021-02-26 08:12:53', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('37', '2021-02-27', 'USD', '0.000', '0.000', '2', '2021-02-27 09:53:05', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('38', '2021-02-28', 'USD', '0.000', '0.000', '2', '2021-02-28 21:51:52', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('39', '2021-03-01', 'USD', '3.647', '3.651', '1', '2021-03-01 10:06:19', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('40', '2021-03-02', 'USD', '3.651', '3.656', '2', '2021-03-02 08:46:57', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('41', '2021-03-03', 'USD', '3.661', '3.665', '2', '2021-03-03 06:33:57', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('42', '2021-03-04', 'USD', '3.672', '3.675', '2', '2021-03-04 10:03:48', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('43', '2021-03-05', 'USD', '3.672', '3.676', '2', '2021-03-05 10:53:34', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('44', '2021-03-07', 'USD', '3.688', '3.693', '2', '2021-03-07 06:13:24', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('45', '2021-03-08', 'USD', '3.688', '3.693', '2', '2021-03-08 08:31:00', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('46', '2021-03-09', 'USD', '3.699', '3.704', '2', '2021-03-09 08:28:29', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('47', '2021-03-10', 'USD', '0.000', '0.000', '2', '2021-03-10 10:58:31', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('48', '2021-03-11', 'USD', '3.693', '3.696', '2', '2021-03-11 08:48:46', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('49', '2021-03-12', 'USD', '3.690', '3.695', '1', '2021-03-12 08:42:32', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('50', '2021-03-15', 'USD', '3.698', '3.705', '2', '2021-03-15 10:20:07', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('51', '2021-03-16', 'USD', '0.000', '0.000', '2', '2021-03-16 08:33:51', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('52', '2021-03-17', 'USD', '0.000', '0.000', '2', '2021-03-17 13:03:42', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('53', '2021-03-18', 'USD', '3.704', '3.709', '2', '2021-03-18 10:35:19', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('54', '2021-03-19', 'USD', '3.702', '3.707', '2', '2021-03-19 10:06:30', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('55', '2021-03-22', 'USD', '3.710', '3.715', '2', '2021-03-22 08:25:45', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('56', '2021-03-24', 'USD', '0.000', '0.000', '2', '2021-03-24 10:28:25', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('57', '2021-03-25', 'USD', '0.000', '0.000', '2', '2021-03-25 09:30:45', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('58', '2021-03-26', 'USD', '3.729', '3.734', '2', '2021-03-26 08:27:59', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('59', '2021-03-27', 'USD', '3.734', '3.739', '2', '2021-03-27 07:17:20', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('60', '2021-03-28', 'USD', '0.000', '0.000', '2', '2021-03-28 19:42:49', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('61', '2021-03-29', 'USD', '0.000', '0.000', '2', '2021-03-29 08:25:54', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('62', '2021-03-30', 'USD', '0.000', '0.000', '2', '2021-03-30 09:24:32', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('63', '2021-03-31', 'USD', '0.000', '0.000', '2', '2021-03-31 08:25:30', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('64', '2021-04-01', 'USD', '0.000', '0.000', '2', '2021-04-01 09:01:25', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('65', '2021-04-02', 'USD', '3.754', '3.758', '1', '2021-04-02 16:23:39', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('66', '2021-04-03', 'USD', '0.000', '0.000', '1', '2021-04-03 15:52:30', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('67', '2021-04-05', 'USD', '0.000', '0.000', '2', '2021-04-05 08:31:59', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('68', '2021-04-06', 'USD', '3.714', '3.721', '2', '2021-04-06 08:16:37', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('69', '2021-04-07', 'USD', '3.652', '3.661', '2', '2021-04-07 08:19:42', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('70', '2021-04-08', 'USD', '3.612', '3.625', '2', '2021-04-08 08:22:41', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('71', '2021-04-09', 'USD', '0.000', '0.000', '2', '2021-04-09 08:00:32', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('72', '2021-04-10', 'USD', '0.000', '0.000', '2', '2021-04-10 08:46:29', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('73', '2021-04-12', 'USD', '3.614', '3.624', '2', '2021-04-12 08:25:26', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('74', '2021-04-13', 'USD', '0.000', '0.000', '2', '2021-04-13 09:54:53', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('75', '2021-04-14', 'USD', '0.000', '0.000', '2', '2021-04-14 09:27:14', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('76', '2021-04-15', 'USD', '0.000', '0.000', '1', '2021-04-15 11:11:31', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('77', '2021-04-16', 'USD', '0.000', '0.000', '2', '2021-04-16 10:32:33', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('78', '2021-04-19', 'USD', '3.624', '3.633', '2', '2021-04-19 08:44:32', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('79', '2021-04-20', 'USD', '0.000', '0.000', '2', '2021-04-20 13:19:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('80', '2021-04-21', 'USD', '3.680', '3.686', '2', '2021-04-21 09:45:09', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('81', '2021-04-22', 'USD', '0.000', '0.000', '1', '2021-04-22 15:18:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('82', '2021-04-23', 'USD', '3.753', '3.763', '2', '2021-04-23 09:47:24', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('83', '2021-04-26', 'USD', '0.000', '0.000', '2', '2021-04-26 08:33:06', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('84', '2021-04-27', 'USD', '0.000', '0.000', '2', '2021-04-27 09:29:04', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('85', '2021-04-28', 'USD', '0.000', '0.000', '2', '2021-04-28 08:46:24', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('86', '2021-04-29', 'USD', '0.000', '0.000', '1', '2021-04-29 12:36:31', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('87', '2021-04-30', 'USD', '0.000', '0.000', '2', '2021-04-30 08:30:58', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('88', '2021-05-01', 'USD', '0.000', '0.000', '1', '2021-05-01 15:30:00', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('89', '2021-05-02', 'USD', '0.000', '0.000', '1', '2021-05-02 11:42:28', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('90', '2021-05-03', 'USD', '0.000', '0.000', '2', '2021-05-03 09:39:39', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('91', '2021-05-04', 'USD', '0.000', '0.000', '1', '2021-05-04 09:20:54', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('92', '2021-05-05', 'USD', '0.000', '0.000', '2', '2021-05-05 09:07:45', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('93', '2021-05-06', 'USD', '0.000', '0.000', '1', '2021-05-06 14:55:52', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('94', '2021-05-07', 'USD', '0.000', '0.000', '1', '2021-05-07 09:52:39', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('95', '2021-05-10', 'USD', '0.000', '0.000', '2', '2021-05-10 08:39:59', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('96', '2021-05-11', 'USD', '0.000', '0.000', '2', '2021-05-11 09:32:18', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('97', '2021-05-12', 'USD', '0.000', '0.000', '2', '2021-05-12 11:18:41', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('98', '2021-05-13', 'USD', '0.000', '0.000', '2', '2021-05-13 10:10:03', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('99', '2021-05-14', 'USD', '0.000', '0.000', '2', '2021-05-14 08:55:50', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('100', '2021-05-17', 'USD', '3.720', '0.000', '2', '2021-05-17 09:02:51', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('101', '2021-05-19', 'USD', '3.778', '0.000', '2', '2021-05-19 10:05:35', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('102', '2021-05-20', 'USD', '3.764', '0.000', '2', '2021-05-20 09:39:00', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('103', '2021-05-21', 'USD', '3.795', '0.000', '2', '2021-05-21 08:44:18', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('104', '2021-05-22', 'USD', '3.776', '0.000', '1', '2021-05-22 09:24:45', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('105', '2021-05-27', 'USD', '0.000', '0.000', '1', '2021-05-27 11:09:25', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('106', '2021-05-28', 'USD', '0.000', '0.000', '1', '2021-05-28 09:07:05', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('107', '2021-05-31', 'USD', '0.000', '0.000', '1', '2021-05-31 17:34:55', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('108', '2021-06-01', 'USD', '0.000', '0.000', '1', '2021-06-01 09:13:22', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('109', '2021-06-02', 'USD', '0.000', '0.000', '1', '2021-06-02 11:08:06', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('110', '2021-06-04', 'USD', '0.000', '0.000', '1', '2021-06-04 09:21:04', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('111', '2021-06-07', 'USD', '0.000', '0.000', '1', '2021-06-07 10:32:02', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('112', '2021-06-08', 'USD', '0.000', '0.000', '1', '2021-06-08 08:33:28', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('113', '2021-06-09', 'USD', '0.000', '0.000', '1', '2021-06-09 10:25:34', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('114', '2021-06-10', 'USD', '0.000', '0.000', '1', '2021-06-10 08:32:25', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('115', '2021-06-11', 'USD', '0.000', '0.000', '1', '2021-06-11 07:57:22', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('116', '2021-06-12', 'USD', '0.000', '0.000', '1', '2021-06-12 20:14:16', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('117', '2021-06-14', 'USD', '0.000', '0.000', '1', '2021-06-14 12:33:44', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('118', '2021-06-28', 'USD', '0.000', '0.000', '1', '2021-06-28 16:13:02', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('119', '2021-06-29', 'USD', '0.000', '0.000', '1', '2021-06-29 22:50:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('120', '2021-06-30', 'USD', '0.000', '0.000', '1', '2021-06-30 08:44:35', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('121', '2021-07-01', 'USD', '0.000', '0.000', '1', '2021-07-01 09:45:54', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('122', '2021-07-06', 'USD', '0.000', '0.000', '1', '2021-07-06 12:14:48', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('123', '2021-07-09', 'USD', '0.000', '0.000', '1', '2021-07-09 11:40:42', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('124', '2021-07-11', 'USD', '0.000', '0.000', '1', '2021-07-11 16:30:27', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('125', '2021-07-13', 'USD', '0.000', '0.000', '1', '2021-07-13 23:02:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('126', '2021-07-23', 'USD', '0.000', '0.000', '1', '2021-07-23 23:59:22', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('127', '2021-07-30', 'USD', '0.000', '0.000', '1', '2021-07-30 01:31:54', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('128', '2021-08-07', 'USD', '0.000', '0.000', '1', '2021-08-07 13:47:57', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('129', '2021-08-13', 'USD', '0.000', '0.000', '1', '2021-08-13 10:55:01', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('130', '2021-08-17', 'USD', '0.000', '0.000', '1', '2021-08-17 08:54:44', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('131', '2021-08-30', 'USD', '0.000', '0.000', '1', '2021-08-30 21:39:02', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('132', '2021-08-31', 'USD', '0.000', '0.000', '1', '2021-08-31 10:39:56', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('133', '2021-09-26', 'USD', '0.000', '0.000', '1', '2021-09-26 18:30:12', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('134', '2021-09-27', 'USD', '0.000', '0.000', '1', '2021-09-27 12:27:42', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('135', '2021-10-16', 'USD', '0.000', '0.000', '1', '2021-10-16 15:07:44', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('136', '2021-10-18', 'USD', '0.000', '0.000', '1', '2021-10-18 12:41:58', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('137', '2021-10-26', 'USD', '0.000', '0.000', '1', '2021-10-26 10:45:37', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('138', '2021-11-01', 'USD', '0.000', '0.000', '1', '2021-11-01 15:09:29', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('139', '2021-11-22', 'USD', '0.000', '0.000', '1', '2021-11-22 09:30:28', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('140', '2021-11-24', 'USD', '0.000', '0.000', '1', '2021-11-24 10:38:59', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('141', '2022-05-12', 'USD', '0.000', '0.000', '1', '2022-05-12 10:24:51', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('142', '2022-05-13', 'USD', '0.000', '0.000', '1', '2022-05-13 09:11:32', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('143', '2022-05-16', 'USD', '0.000', '0.000', '1', '2022-05-16 13:34:11', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('144', '2022-05-18', 'USD', '0.000', '0.000', '1', '2022-05-18 11:45:02', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('145', '2022-05-30', 'USD', '0.000', '0.000', '1', '2022-05-30 19:07:14', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('146', '2022-06-03', 'USD', '0.000', '0.000', '1', '2022-06-03 16:35:13', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('147', '2022-06-05', 'USD', '0.000', '0.000', '1', '2022-06-05 19:06:23', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('148', '2022-12-12', 'USD', '3.830', '3.851', '1', '2022-12-12 14:48:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('149', '2022-12-13', 'USD', '3.828', '3.840', '1', '2022-12-13 09:54:53', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('150', '2022-12-14', 'USD', '3.826', '3.835', '1', '2022-12-14 21:27:23', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('151', '2022-12-16', 'USD', '3.841', '3.849', '1', '2022-12-16 10:04:21', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('152', '2022-12-17', 'USD', '3.842', '3.853', '1', '2022-12-17 00:05:17', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('153', '2022-12-18', 'USD', '3.842', '3.853', '1', '2022-12-18 19:46:21', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('154', '2022-12-20', 'USD', '3.828', '3.842', '1', '2022-12-20 09:38:24', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('155', '2022-12-21', 'USD', '3.826', '3.839', '1', '2022-12-21 11:31:46', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('156', '2022-12-22', 'USD', '3.815', '3.825', '1', '2022-12-22 12:41:04', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('157', '2022-12-26', 'USD', '3.809', '3.827', '1', '2022-12-26 22:37:48', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('158', '2022-12-27', 'USD', '3.814', '3.823', '1', '2022-12-27 11:45:43', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('159', '2022-12-28', 'USD', '3.815', '3.822', '1', '2022-12-28 16:48:53', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('160', '2022-12-29', 'USD', '3.807', '3.817', '1', '2022-12-29 02:01:16', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('161', '2022-12-30', 'USD', '3.807', '3.817', '1', '2022-12-30 10:08:08', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('162', '2023-01-03', 'USD', '3.808', '3.820', '1', '2023-01-03 19:44:20', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('163', '2023-01-04', 'USD', '3.812', '3.823', '1', '2023-01-04 21:12:22', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('164', '2023-01-05', 'USD', '3.822', '3.827', '1', '2023-01-05 11:40:17', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('165', '2023-01-09', 'USD', '3.800', '3.806', '1', '2023-01-09 09:23:44', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('166', '2023-01-13', 'USD', '3.779', '3.784', '1', '2023-01-13 17:14:20', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('167', '2023-01-16', 'USD', '3.802', '3.806', '1', '2023-01-16 09:26:09', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('168', '2023-01-17', 'USD', '3.815', '3.822', '1', '2023-01-17 13:22:07', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('169', '2023-01-24', 'USD', '3.866', '3.873', '1', '2023-01-24 09:14:05', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('170', '2023-01-26', 'USD', '3.892', '3.900', '1', '2023-01-26 18:45:10', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('171', '2023-01-27', 'USD', '3.861', '3.867', '1', '2023-01-27 12:57:22', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('172', '2023-01-28', 'USD', '3.824', '3.829', '1', '2023-01-28 11:17:53', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('173', '2023-01-30', 'USD', '3.824', '3.829', '1', '2023-01-30 19:53:17', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('174', '2023-01-31', 'USD', '3.853', '3.859', '1', '2023-01-31 09:04:09', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('175', '2023-02-01', 'USD', '3.844', '3.851', '1', '2023-02-01 11:04:23', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('176', '2023-02-05', 'USD', '3.843', '3.847', '1', '2023-02-05 15:03:28', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('177', '2023-02-07', 'USD', '3.849', '3.855', '1', '2023-02-07 08:54:18', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('178', '2023-02-08', 'USD', '3.843', '3.848', '1', '2023-02-08 10:39:13', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('179', '2023-02-15', 'USD', '3.858', '3.861', '1', '2023-02-15 10:46:58', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('180', '2023-02-16', 'USD', '3.858', '3.865', '1', '2023-02-16 16:40:51', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('181', '2023-02-17', 'USD', '3.862', '3.868', '1', '2023-02-17 10:51:38', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('182', '2023-02-25', 'USD', '3.810', '3.820', '1', '2023-02-25 09:10:03', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('183', '2023-04-13', 'USD', '3.773', '3.780', '1', '2023-04-13 14:52:30', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('184', '2023-04-17', 'USD', '3.778', '3.784', '1', '2023-04-17 20:29:43', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('185', '2023-04-19', 'USD', '3.774', '3.781', '1', '2023-04-19 09:00:22', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('186', '2023-05-15', 'USD', '3.649', '3.659', '1', '2023-05-15 22:39:05', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('187', '2023-05-23', 'USD', '3.686', '3.695', '1', '2023-05-23 11:55:24', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('188', '2023-05-30', 'USD', '3.667', '3.680', '1', '2023-05-30 12:11:11', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('189', '2023-06-27', 'USD', '3.635', '3.642', '1', '2023-06-27 23:23:55', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('190', '2023-06-28', 'USD', '3.635', '3.642', '1', '2023-06-28 11:02:10', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('191', '2023-06-29', 'USD', '3.635', '3.642', '1', '2023-06-29 21:40:44', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('192', '2023-06-30', 'USD', '3.635', '3.642', '1', '2023-06-30 10:51:41', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('193', '2023-07-03', 'USD', '3.635', '3.642', '1', '2023-07-03 21:28:05', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('194', '2023-07-05', 'USD', '3.635', '3.642', '1', '2023-07-05 21:05:47', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('195', '2023-07-06', 'USD', '3.635', '3.642', '1', '2023-07-06 21:09:51', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('196', '2023-07-07', 'USD', '3.641', '3.648', '1', '2023-07-07 11:19:08', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('197', '2023-07-11', 'USD', '3.636', '3.643', '1', '2023-07-11 00:03:22', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('198', '2023-08-09', 'USD', '3.704', '3.710', '1', '2023-08-09 01:58:50', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('199', '2023-08-25', 'USD', '3.695', '3.701', '1', '2023-08-25 09:30:17', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('200', '2023-09-13', 'USD', '3.701', '3.708', '1', '2023-09-13 19:56:33', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('201', '2023-09-22', 'USD', '3.738', '3.744', '1', '2023-09-22 10:50:11', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('202', '2023-09-25', 'USD', '3.744', '3.748', '1', '2023-09-25 11:15:33', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('203', '2023-10-10', 'USD', '3.826', '3.837', '1', '2023-10-10 21:04:44', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('204', '2023-10-16', 'USD', '3.842', '3.850', '1', '2023-10-16 11:25:15', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('205', '2023-10-27', 'USD', '3.865', '3.872', '1', '2023-10-27 16:51:32', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('206', '2023-10-30', 'USD', '3.856', '3.863', '1', '2023-10-30 21:00:06', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('207', '2023-10-31', 'USD', '3.840', '3.851', '1', '2023-10-31 15:43:51', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('208', '2023-11-01', 'USD', '3.832', '3.842', '1', '2023-11-01 14:21:02', NULL, NULL, '1');
INSERT INTO `tec_exchange` (`id`, `date`, `currency`, `buy`, `sell`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('209', '2023-11-02', 'USD', '3.832', '3.842', '1', '2023-11-02 12:22:47', NULL, NULL, '1');


#
# TABLE STRUCTURE FOR: tec_expenses
#

DROP TABLE IF EXISTS `tec_expenses`;

CREATE TABLE `tec_expenses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `reference` varchar(50) NOT NULL,
  `amount` decimal(25,2) NOT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `exchange` decimal(25,3) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `created_by` varchar(55) NOT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_gift_cards
#

DROP TABLE IF EXISTS `tec_gift_cards`;

CREATE TABLE `tec_gift_cards` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `card_no` varchar(20) NOT NULL,
  `value` decimal(25,2) NOT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `balance` decimal(25,2) NOT NULL,
  `expiry` date DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `card_no` (`card_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_groups
#

DROP TABLE IF EXISTS `tec_groups`;

CREATE TABLE `tec_groups` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(20) NOT NULL,
  `description` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `tec_groups` (`id`, `name`, `description`) VALUES ('1', 'Admin', 'Administrator');
INSERT INTO `tec_groups` (`id`, `name`, `description`) VALUES ('2', 'Staff', 'Staff');
INSERT INTO `tec_groups` (`id`, `name`, `description`) VALUES ('3', 'Caja', 'Caja');


#
# TABLE STRUCTURE FOR: tec_locals
#

DROP TABLE IF EXISTS `tec_locals`;

CREATE TABLE `tec_locals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(250) NOT NULL,
  `address` varchar(250) DEFAULT NULL,
  `cod_sunat` char(4) NOT NULL,
  `default_warehouse` int(11) DEFAULT NULL,
  `invoice_format` varchar(50) DEFAULT NULL,
  `bill_format` varchar(50) DEFAULT NULL,
  `invoice_number` int(11) DEFAULT NULL,
  `bill_number` int(11) DEFAULT NULL,
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` datetime DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` datetime DEFAULT NULL,
  `estado` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `tec_locals` (`id`, `code`, `name`, `address`, `cod_sunat`, `default_warehouse`, `invoice_format`, `bill_format`, `invoice_number`, `bill_number`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('1', 'Principal', 'Local Principal', '', '0000', '0', NULL, NULL, '0', '0', '1', '2019-03-22 21:01:56', '1', '2021-04-02 16:23:58', '1');


#
# TABLE STRUCTURE FOR: tec_login_attempts
#

DROP TABLE IF EXISTS `tec_login_attempts`;

CREATE TABLE `tec_login_attempts` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `ip_address` varbinary(16) NOT NULL,
  `login` varchar(100) NOT NULL,
  `time` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_makers
#

DROP TABLE IF EXISTS `tec_makers`;

CREATE TABLE `tec_makers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `maker` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;

INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('1', 'SIN FABRICANTE');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('2', 'AGRO INTERNATIONAL BUSINESS A & C S.A.C.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('3', 'APOLO PLAST S.A.C.\r\n');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('4', 'AROMAS DEL PERU');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('5', 'AROMAS DEL PERU SA');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('6', 'CHOCOLATES GURE S.A.C.\r\n');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('7', 'COMFRUTTI');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('8', 'CORPORACION INALTA S.A.C.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('9', 'DRESDEN FOOD INGREDIENTS S.A.\r\n');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('10', 'FOOD SOLUTIONS\r\n');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('11', 'GIRASOL\r\n');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('12', 'INDUSTRIAS COMFRUTTIPERU E.I.R.L.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('13', 'INTERCOMPANY Y SEÑOR DE HUANCA S.A.C.\r\n');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('14', 'INVERSIONES VIRGEN INMACULADA E.I.R.L.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('15', 'LUMERSA S.A.C.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('16', 'PACKAGING INDUSTRY SAC');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('17', 'PLASTICOS BASICOS DE EXPORTACION S.A.C.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('18', 'REPRESENTACIONES AYMARA PERU S.A.C.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('19', 'S & C NEGOCIACIONES S.A.C.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('20', 'SAN MIGUEL INDUSTRIAS PET S.A.');
INSERT INTO `tec_makers` (`id`, `maker`) VALUES ('21', 'UNIONPLAST S A');


#
# TABLE STRUCTURE FOR: tec_mesas
#

DROP TABLE IF EXISTS `tec_mesas`;

CREATE TABLE `tec_mesas` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `mesa` varchar(45) NOT NULL,
  `estado` varchar(45) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_models
#

DROP TABLE IF EXISTS `tec_models`;

CREATE TABLE `tec_models` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `id_brand` int(10) unsigned NOT NULL,
  `code` varchar(10) NOT NULL,
  `model` varchar(250) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;

INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '1', '213', 'wqe wq s', '2021-06-28 22:15:30', '2021-06-28 22:16:42', '2021-06-28 22:16:42');
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '1', '214', 'X001', '2021-06-28 22:16:33', '2021-06-30 04:03:53', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', '1', '0001', 'adsfasdfasd', '2021-11-24 18:18:37', '2021-11-24 18:58:03', '2021-11-24 18:58:03');
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', '1', '215', 'x002', '2021-11-24 22:05:03', '2021-11-24 22:05:03', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('5', '4', '003', 'Laptop AIR', '2023-09-14 16:12:40', '2023-09-14 16:12:40', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('6', '3', '004', 'Pc', '2023-09-14 16:50:18', '2023-09-14 16:50:18', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('7', '5', '005', 'Teclado', '2023-09-14 16:50:33', '2023-09-14 16:50:33', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('8', '3', '006', 'Monitor', '2023-09-14 16:51:44', '2023-09-14 16:51:44', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('9', '4', '007', 'Mouse', '2023-09-14 16:52:58', '2023-09-14 16:52:58', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('10', '1', '008', 'lampara', '2023-09-14 16:53:19', '2023-09-14 16:53:19', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('11', '4', '010', 'Celular', '2023-09-14 16:53:29', '2023-09-14 16:53:29', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('12', '5', '011', 'RAM', '2023-09-14 16:53:38', '2023-09-14 16:53:38', NULL);
INSERT INTO `tec_models` (`id`, `id_brand`, `code`, `model`, `created_at`, `updated_at`, `deleted_at`) VALUES ('13', '5', '012', 'Disco duro', '2023-09-14 16:53:55', '2023-09-14 16:53:55', NULL);


#
# TABLE STRUCTURE FOR: tec_motive_referral_guide
#

DROP TABLE IF EXISTS `tec_motive_referral_guide`;

CREATE TABLE `tec_motive_referral_guide` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(20) NOT NULL,
  `description` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;

INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('1', '01', 'Venta');
INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('2', '14', 'Venta sujeta a confirmación del comprador');
INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('3', '02', 'Compra');
INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('4', '04', 'Traslado entre establecimientos de la misma empresa');
INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('5', '18', 'Traslado emisor itinerante cp');
INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('6', '08', 'Importación');
INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('7', '09', 'Exportación');
INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('8', '19', 'Traslado a zona primaria');
INSERT INTO `tec_motive_referral_guide` (`id`, `code`, `description`) VALUES ('9', '13', 'Otros');


#
# TABLE STRUCTURE FOR: tec_mov_motive
#

DROP TABLE IF EXISTS `tec_mov_motive`;

CREATE TABLE `tec_mov_motive` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(10) NOT NULL,
  `motive` varchar(250) NOT NULL,
  `alias` char(10) NOT NULL,
  `type` varchar(10) NOT NULL,
  `purchase` varchar(1) NOT NULL,
  `billable` varchar(1) NOT NULL,
  `code_sunat` varchar(8) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;

INSERT INTO `tec_mov_motive` (`id`, `code`, `motive`, `alias`, `type`, `purchase`, `billable`, `code_sunat`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '', ' Ingreso por compra de productos', 'ICP', '', '', '', '', NULL, NULL, NULL);
INSERT INTO `tec_mov_motive` (`id`, `code`, `motive`, `alias`, `type`, `purchase`, `billable`, `code_sunat`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '', 'Ingreso por devoluciÃ³n de productos', 'IDP', '', '', '', '', NULL, NULL, NULL);
INSERT INTO `tec_mov_motive` (`id`, `code`, `motive`, `alias`, `type`, `purchase`, `billable`, `code_sunat`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', '', 'Ingreso por anulaciÃ³n de venta', 'IAV', '', '', '', '', NULL, NULL, NULL);
INSERT INTO `tec_mov_motive` (`id`, `code`, `motive`, `alias`, `type`, `purchase`, `billable`, `code_sunat`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', '', 'Ingreso por traslado', 'IT', '', '', '', '', NULL, NULL, NULL);
INSERT INTO `tec_mov_motive` (`id`, `code`, `motive`, `alias`, `type`, `purchase`, `billable`, `code_sunat`, `created_at`, `updated_at`, `deleted_at`) VALUES ('5', '', 'Salida por venta', 'SV', '', '', '', '', NULL, NULL, NULL);
INSERT INTO `tec_mov_motive` (`id`, `code`, `motive`, `alias`, `type`, `purchase`, `billable`, `code_sunat`, `created_at`, `updated_at`, `deleted_at`) VALUES ('6', '', 'Salida por traslado', 'ST', '', '', '', '', NULL, NULL, NULL);
INSERT INTO `tec_mov_motive` (`id`, `code`, `motive`, `alias`, `type`, `purchase`, `billable`, `code_sunat`, `created_at`, `updated_at`, `deleted_at`) VALUES ('8', '', 'Salida por anulaciÃ³n de compra', 'SAC', '', '', '', '', NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: tec_payment_methods
#

DROP TABLE IF EXISTS `tec_payment_methods`;

CREATE TABLE `tec_payment_methods` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ruc_number` varchar(50) DEFAULT NULL,
  `code` varchar(10) DEFAULT NULL,
  `description` varchar(250) DEFAULT NULL,
  `type` varchar(10) DEFAULT NULL,
  `days` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

#
# TABLE STRUCTURE FOR: tec_payments
#

DROP TABLE IF EXISTS `tec_payments`;

CREATE TABLE `tec_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `sale_id` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `paid_by` varchar(20) NOT NULL,
  `cheque_no` varchar(20) DEFAULT NULL,
  `cc_no` varchar(20) DEFAULT NULL,
  `cc_holder` varchar(25) DEFAULT NULL,
  `cc_month` varchar(2) DEFAULT NULL,
  `cc_year` varchar(4) DEFAULT NULL,
  `cc_type` varchar(20) DEFAULT NULL,
  `amount` decimal(25,2) NOT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `pos_paid` decimal(25,2) DEFAULT '0.00',
  `pos_balance` decimal(25,2) DEFAULT '0.00',
  `gc_no` varchar(20) DEFAULT NULL,
  `reference` varchar(50) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `status` int(1) DEFAULT '0' COMMENT '0:Pendiente|1:Pagado',
  `due_date` date DEFAULT NULL,
  `note_cuota` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8;

INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('2', '2021-02-04 14:29:00', '30', '22', NULL, 'other', '', NULL, NULL, NULL, NULL, NULL, '351.00', 'PEN', '2', NULL, '', '0.00', '0.00', '', '', NULL, NULL, '0', NULL, NULL);
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('4', '2021-02-04 14:30:00', '24', '13', NULL, 'cash', '', NULL, NULL, NULL, NULL, NULL, '6753.60', 'PEN', '2', NULL, '', '0.00', '0.00', '', '', NULL, NULL, '0', NULL, NULL);
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('5', '2021-07-06 20:00:26', '444', '1', NULL, 'cash', '', '', '', '', '', '', '25.00', NULL, '1', NULL, '', '25.00', '0.00', '', NULL, NULL, NULL, '0', NULL, NULL);
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('6', NULL, '447', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '10.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2021-10-16', 'Cuota001');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('7', NULL, '447', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '10.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2021-10-30', 'Cuota002');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('8', NULL, '448', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '10.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2021-10-16', 'Cuota001');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('9', NULL, '448', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '10.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2021-10-30', 'Cuota002');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('10', NULL, '451', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '250.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2021-10-18', 'Cuota001');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('11', NULL, '451', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '250.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2021-10-28', 'Cuota002');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('12', NULL, '451', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '220.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2021-10-30', 'Cuota003');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('13', '2021-10-26 10:50:57', '453', '1', NULL, 'cash', '', '', '', '', '', '', '28.00', NULL, '1', NULL, '', '28.00', '0.00', '', NULL, NULL, NULL, '1', '2021-10-26', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('14', '2022-05-16 13:36:04', '455', '6', NULL, 'cc_debit', '', '', '', '', '', '', '529.00', NULL, '1', NULL, '', '529.00', '0.00', '', NULL, NULL, NULL, '1', '2022-05-16', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('15', '2022-12-16 11:17:03', '2546', '10', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '125.86', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2022-12-16', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('16', '2022-12-29 02:21:53', '2565', '21', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '223.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2022-12-29', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('17', '2022-12-29 22:35:49', '2578', '148', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '75.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2022-12-29', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('18', NULL, '2581', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '50.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2022-12-30', 'Cuota001');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('19', NULL, '2581', '6', NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, '50.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '0', '2023-01-06', 'Cuota002');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('20', '2022-12-29 22:56:00', '2581', '6', NULL, 'cash', '', NULL, NULL, NULL, NULL, NULL, '50.00', 'PEN', '1', NULL, '', '0.00', '0.00', '', '', NULL, NULL, '0', NULL, NULL);
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('21', '2023-01-04 22:16:54', '2585', '148', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '75.00', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-01-04', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('22', '2023-01-04 23:58:51', '2586', '21', NULL, 'cash', '', '', '', '', '', '', '8.00', NULL, '1', NULL, '', '8.00', '0.00', '', NULL, NULL, NULL, '1', '2023-01-04', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('23', '2023-01-05 00:00:00', '2587', '21', NULL, 'cash', '', '', '', '', '', '', '8.00', NULL, '1', NULL, '', '16.00', '8.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('24', '2023-01-05 00:00:36', '2588', '20', NULL, 'cash', '', '', '', '', '', '', '1.00', NULL, '1', NULL, '', '1.00', '0.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('25', '2023-01-05 00:01:36', '2589', '20', NULL, 'cash', '', '', '', '', '', '', '1.00', NULL, '1', NULL, '', '1.00', '0.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('26', '2023-01-05 00:02:30', '2590', '18', NULL, 'cash', '', '', '', '', '', '', '126.00', NULL, '1', NULL, '', '127.00', '1.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('27', '2023-01-05 00:03:00', '2591', '18', NULL, 'cash', '', '', '', '', '', '', '126.00', NULL, '1', NULL, '', '126.00', '0.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('28', '2023-01-05 00:03:34', '2592', '18', NULL, 'cash', '', '', '', '', '', '', '24.30', NULL, '1', NULL, '', '24.30', '0.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('29', '2023-01-05 11:40:54', '2593', '148', NULL, 'cc_debit', '', '', '', '', '', '', '200.00', NULL, '1', NULL, '', '200.00', '0.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('30', '2023-01-05 19:07:21', '2594', '148', NULL, 'cash', '', '', '', '', '', '', '200.00', NULL, '1', NULL, '', '200.00', '0.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('31', '2023-01-05 19:08:24', '2596', '148', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '162.30', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('32', '2023-01-05 20:58:09', '2597', '21', NULL, 'cash', '', '', '', '', '', '', '24.30', NULL, '1', NULL, '', '24.30', '0.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('33', '2023-01-05 21:07:34', '2598', '148', NULL, 'cash', '', '', '', '', '', '', '200.00', NULL, '1', NULL, '', '200.00', '0.00', '', NULL, NULL, NULL, '1', '2023-01-05', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('34', '2023-01-27 14:40:52', '2603', '275', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '652.60', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-01-27', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('35', '2023-01-27 14:41:27', '2604', '275', NULL, 'cash', '', '', '', '', '', '', '5.00', NULL, '1', NULL, '', '5.00', '0.00', '', NULL, NULL, NULL, '1', '2023-01-27', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('36', '2023-01-27 14:42:38', '2605', '275', NULL, 'cash', '', '', '', '', '', '', '99.80', NULL, '1', NULL, '', '99.80', '0.00', '', NULL, NULL, NULL, '1', '2023-01-27', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('37', '2023-06-28 17:51:14', '2621', '4', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '15.44', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-06-28', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('38', '2023-06-28 17:56:49', '2622', '4', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '15.44', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-06-28', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('39', '2023-06-28 17:58:35', '2623', '4', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '11.90', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-06-28', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('40', '2023-06-28 18:41:23', '2627', '6', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '464431.28', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-06-28', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('41', '2023-08-09 02:04:39', '2640', '6', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '0.04', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-08-09', 'contado');
INSERT INTO `tec_payments` (`id`, `date`, `sale_id`, `customer_id`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `note`, `pos_paid`, `pos_balance`, `gc_no`, `reference`, `updated_by`, `updated_at`, `status`, `due_date`, `note_cuota`) VALUES ('42', '2023-08-09 02:05:12', '2641', '4', NULL, 'cash', NULL, NULL, NULL, NULL, NULL, NULL, '15.73', 'PEN', '1', NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, '1', '2023-08-09', 'contado');


#
# TABLE STRUCTURE FOR: tec_product_details
#

DROP TABLE IF EXISTS `tec_product_details`;

CREATE TABLE `tec_product_details` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` int(10) unsigned NOT NULL,
  `lote` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `serie_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `production_date` date DEFAULT NULL,
  `expiration_date` date DEFAULT NULL,
  `estado` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `warehouseguide_detail_in_id` int(10) unsigned DEFAULT NULL,
  `warehouseguide_detail_out_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '208', '', 'HTRP-80210923071', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '208', '', 'HTRP-80210923072', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', '208', '', 'HTRP-80210923073', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', '208', '', 'HTRP-80210923074', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('5', '208', '', 'HTRP-80210923075', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('6', '208', '', 'HTRP-80210923076', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('7', '208', '', 'HTRP-80210923077', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('8', '208', '', 'HTRP-80210923078', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('9', '208', '', 'HTRP-80210923079', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_product_details` (`id`, `product_id`, `lote`, `serie_number`, `production_date`, `expiration_date`, `estado`, `warehouseguide_detail_in_id`, `warehouseguide_detail_out_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('10', '208', '', 'HTRP-80210923080', '0000-00-00', '0000-00-00', '1', '10', '0', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);


#
# TABLE STRUCTURE FOR: tec_product_mov
#

DROP TABLE IF EXISTS `tec_product_mov`;

CREATE TABLE `tec_product_mov` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `origin_id` int(11) NOT NULL,
  `local_id` int(11) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `cant` int(11) DEFAULT NULL,
  `tipo` char(1) DEFAULT NULL,
  `idMotivo` int(11) DEFAULT NULL,
  `ref` char(50) DEFAULT NULL,
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` timestamp NULL DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` timestamp NULL DEFAULT NULL,
  `estado` int(11) DEFAULT NULL,
  `warehouseguide_detail_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1716 DEFAULT CHARSET=utf8;

INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1', '1', '1', '1', '145', '4', 'S', '5', 'B001-0000001', '2', '2021-01-28 10:50:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('2', '1', '1', '1', '21', '4', 'S', '5', 'B001-0000001', '2', '2021-01-28 10:50:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('3', '1', '1', '1', '20', '4', 'S', '5', 'B001-0000001', '2', '2021-01-28 10:50:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('4', '2', '1', '1', '19', '6', 'S', '5', 'B001-0000002', '2', '2021-01-28 13:58:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('5', '2', '1', '1', '21', '6', 'S', '5', 'B001-0000002', '2', '2021-01-28 13:58:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('6', '2', '1', '1', '22', '6', 'S', '5', 'B001-0000002', '2', '2021-01-28 13:58:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('7', '2', '1', '1', '20', '6', 'S', '5', 'B001-0000002', '2', '2021-01-28 13:58:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('8', '3', '1', '1', '155', '1', 'S', '5', 'F001-0000001', '2', '2021-01-28 14:07:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('9', '3', '1', '1', '154', '2', 'S', '5', 'F001-0000001', '2', '2021-01-28 14:07:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('10', '4', '1', '1', '24', '6', 'S', '5', 'B001-0000003', '2', '2021-01-28 14:09:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('11', '5', '1', '1', '155', '3', 'S', '5', 'F001-0000002', '2', '2021-01-28 14:14:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('12', '5', '1', '1', '154', '3', 'S', '5', 'F001-0000002', '2', '2021-01-28 14:14:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('13', '6', '1', '1', '19', '6', 'S', '5', 'F001-0000003', '2', '2021-01-28 14:44:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('14', '6', '1', '1', '21', '12', 'S', '5', 'F001-0000003', '2', '2021-01-28 14:44:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('15', '6', '1', '1', '22', '12', 'S', '5', 'F001-0000003', '2', '2021-01-28 14:44:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('16', '6', '1', '1', '20', '12', 'S', '5', 'F001-0000003', '2', '2021-01-28 14:44:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('17', '7', '1', '1', '21', '6', 'S', '5', 'F001-0000004', '2', '2021-01-28 15:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('18', '7', '1', '1', '22', '6', 'S', '5', 'F001-0000004', '2', '2021-01-28 15:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('19', '8', '1', '1', '155', '2', 'S', '5', 'F001-0000005', '2', '2021-01-28 15:03:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('20', '9', '1', '1', '155', '1', 'S', '5', 'B001-0000004', '2', '2021-01-28 15:06:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('21', '10', '1', '1', '155', '4', 'S', '5', 'B001-0000005', '2', '2021-01-28 15:07:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('22', '11', '1', '1', '155', '2', 'S', '5', 'B001-0000006', '2', '2021-01-28 15:18:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('23', '11', '1', '1', '154', '2', 'S', '5', 'B001-0000006', '2', '2021-01-28 15:18:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('24', '11', '1', '1', '152', '6', 'S', '5', 'B001-0000006', '2', '2021-01-28 15:18:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('25', '12', '1', '1', '155', '2', 'S', '5', 'B001-0000007', '2', '2021-01-28 15:22:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('26', '12', '1', '1', '21', '4', 'S', '5', 'B001-0000007', '2', '2021-01-28 15:22:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('27', '12', '1', '1', '152', '4', 'S', '5', 'B001-0000007', '2', '2021-01-28 15:22:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('28', '12', '1', '1', '23', '3', 'S', '5', 'B001-0000007', '2', '2021-01-28 15:22:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('29', '13', '1', '1', '152', '13', 'S', '5', 'B001-0000008', '2', '2021-01-28 16:50:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('30', '14', '1', '1', '22', '6', 'S', '5', 'B001-0000009', '2', '2021-01-28 16:57:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('31', '14', '1', '1', '21', '6', 'S', '5', 'B001-0000009', '2', '2021-01-28 16:57:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('32', '14', '1', '1', '19', '6', 'S', '5', 'B001-0000009', '2', '2021-01-28 16:57:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('33', '14', '1', '1', '20', '6', 'S', '5', 'B001-0000009', '2', '2021-01-28 16:57:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('34', '15', '1', '1', '22', '9648', 'S', '5', 'F001-0000006', '2', '2021-01-28 17:26:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('35', '16', '1', '1', '148', '9648', 'S', '5', 'F001-0000007', '2', '2021-01-28 17:35:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('36', '17', '1', '1', '155', '4', 'S', '5', 'B001-0000010', '2', '2021-01-29 09:28:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('37', '17', '1', '1', '151', '12', 'S', '5', 'B001-0000010', '2', '2021-01-29 09:28:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('38', '17', '1', '1', '155', '4', 'I', '3', 'B001-0000010', '2', '2021-01-29 09:40:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('39', '17', '1', '1', '151', '12', 'I', '3', 'B001-0000010', '2', '2021-01-29 09:40:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('40', '15', '1', '1', '22', '9648', 'I', '3', 'F001-0000006', '2', '2021-01-29 09:42:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('41', '18', '1', '1', '155', '4', 'S', '5', 'F001-0000008', '2', '2021-01-29 09:50:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('42', '18', '1', '1', '151', '12', 'S', '5', 'F001-0000008', '2', '2021-01-29 09:50:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('43', '1', '1', '1', '145', '4', 'I', '3', 'B001-0000001', '2', '2021-01-29 12:44:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('44', '1', '1', '1', '21', '4', 'I', '3', 'B001-0000001', '2', '2021-01-29 12:44:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('45', '1', '1', '1', '20', '4', 'I', '3', 'B001-0000001', '2', '2021-01-29 12:44:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('46', '2', '1', '1', '19', '6', 'I', '3', 'B001-0000002', '2', '2021-01-29 12:44:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('47', '2', '1', '1', '21', '6', 'I', '3', 'B001-0000002', '2', '2021-01-29 12:44:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('48', '2', '1', '1', '22', '6', 'I', '3', 'B001-0000002', '2', '2021-01-29 12:44:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('49', '2', '1', '1', '20', '6', 'I', '3', 'B001-0000002', '2', '2021-01-29 12:44:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('50', '3', '1', '1', '155', '1', 'I', '3', 'F001-0000001', '2', '2021-01-29 12:44:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('51', '3', '1', '1', '154', '2', 'I', '3', 'F001-0000001', '2', '2021-01-29 12:44:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('52', '4', '1', '1', '24', '6', 'I', '3', 'B001-0000003', '2', '2021-01-29 12:44:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('53', '5', '1', '1', '155', '3', 'I', '3', 'F001-0000002', '2', '2021-01-29 12:51:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('54', '5', '1', '1', '154', '3', 'I', '3', 'F001-0000002', '2', '2021-01-29 12:51:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('55', '6', '1', '1', '19', '6', 'I', '3', 'F001-0000003', '2', '2021-01-29 12:51:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('56', '6', '1', '1', '21', '12', 'I', '3', 'F001-0000003', '2', '2021-01-29 12:51:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('57', '6', '1', '1', '22', '12', 'I', '3', 'F001-0000003', '2', '2021-01-29 12:51:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('58', '6', '1', '1', '20', '12', 'I', '3', 'F001-0000003', '2', '2021-01-29 12:51:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('59', '7', '1', '1', '21', '6', 'I', '3', 'F001-0000004', '2', '2021-01-29 12:51:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('60', '7', '1', '1', '22', '6', 'I', '3', 'F001-0000004', '2', '2021-01-29 12:51:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('61', '8', '1', '1', '155', '2', 'I', '3', 'F001-0000005', '2', '2021-01-29 12:51:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('62', '9', '1', '1', '155', '1', 'I', '3', 'B001-0000004', '2', '2021-01-29 12:51:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('63', '10', '1', '1', '155', '4', 'I', '3', 'B001-0000005', '2', '2021-01-29 12:52:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('64', '16', '1', '1', '148', '9648', 'I', '3', 'F001-0000007', '2', '2021-01-29 12:52:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('65', '18', '1', '1', '155', '4', 'I', '3', 'F001-0000008', '2', '2021-01-29 12:52:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('66', '18', '1', '1', '151', '12', 'I', '3', 'F001-0000008', '2', '2021-01-29 12:52:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('67', '19', '1', '1', '155', '1', 'S', '5', 'F001-0000508', '2', '2021-01-29 13:37:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('68', '19', '1', '1', '154', '2', 'S', '5', 'F001-0000508', '2', '2021-01-29 13:37:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('69', '20', '1', '1', '155', '3', 'S', '5', 'F001-0000509', '2', '2021-01-29 13:39:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('70', '20', '1', '1', '154', '3', 'S', '5', 'F001-0000509', '2', '2021-01-29 13:39:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('71', '21', '1', '1', '145', '6', 'S', '5', 'F001-0000510', '2', '2021-01-29 13:44:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('72', '21', '1', '1', '147', '12', 'S', '5', 'F001-0000510', '2', '2021-01-29 13:44:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('73', '21', '1', '1', '148', '12', 'S', '5', 'F001-0000510', '2', '2021-01-29 13:44:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('74', '21', '1', '1', '146', '12', 'S', '5', 'F001-0000510', '2', '2021-01-29 13:44:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('75', '22', '1', '1', '147', '6', 'S', '5', 'F001-0000511', '2', '2021-01-29 13:46:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('76', '22', '1', '1', '148', '6', 'S', '5', 'F001-0000511', '2', '2021-01-29 13:46:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('77', '23', '1', '1', '182', '1', 'S', '5', 'B001-0000011', '2', '2021-01-29 15:20:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('78', '24', '1', '1', '148', '9648', 'S', '5', 'F001-0000512', '2', '2021-02-01 10:36:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('79', '25', '1', '1', '22', '2', 'S', '5', 'B001-0000012', '2', '2021-02-01 10:55:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('80', '26', '1', '1', '155', '2', 'S', '5', 'B001-0000013', '2', '2021-02-03 08:23:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('81', '27', '1', '1', '151', '1', 'S', '5', 'B001-0000014', '2', '2021-02-03 08:25:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('82', '28', '1', '1', '148', '9648', 'S', '5', 'F001-0000513', '2', '2021-02-03 08:28:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('83', '26', '1', '1', '155', '2', 'I', '3', 'B001-0000013', '2', '2021-02-03 09:10:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('84', '29', '1', '1', '155', '2', 'S', '5', 'F001-0000514', '2', '2021-02-03 09:12:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('85', '30', '1', '1', '152', '30', 'S', '5', 'F001-0000515', '2', '2021-02-04 07:44:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('86', '30', '1', '1', '154', '36', 'S', '5', 'F001-0000515', '2', '2021-02-04 07:44:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('87', '30', '1', '1', '155', '24', 'S', '5', 'F001-0000515', '2', '2021-02-04 07:44:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('88', '30', '1', '1', '151', '30', 'S', '5', 'F001-0000515', '2', '2021-02-04 07:44:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('89', '31', '1', '1', '150', '6', 'S', '5', 'F001-0000516', '2', '2021-02-04 09:21:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('90', '31', '1', '1', '147', '6', 'S', '5', 'F001-0000516', '2', '2021-02-04 09:21:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('91', '31', '1', '1', '148', '6', 'S', '5', 'F001-0000516', '2', '2021-02-04 09:21:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('92', '31', '1', '1', '146', '6', 'S', '5', 'F001-0000516', '2', '2021-02-04 09:21:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('93', '31', '1', '1', '151', '7', 'S', '5', 'F001-0000516', '2', '2021-02-04 09:21:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('94', '32', '1', '1', '149', '4', 'S', '5', 'B001-0000015', '2', '2021-02-04 09:28:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('95', '32', '1', '1', '150', '8', 'S', '5', 'B001-0000015', '2', '2021-02-04 09:28:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('96', '33', '1', '1', '149', '60', 'S', '5', 'B001-0000016', '2', '2021-02-04 14:22:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('97', '34', '1', '1', '154', '70', 'S', '5', 'F001-0000517', '2', '2021-02-05 09:26:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('98', '34', '1', '1', '155', '20', 'S', '5', 'F001-0000517', '2', '2021-02-05 09:26:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('99', '34', '1', '1', '146', '30', 'S', '5', 'F001-0000517', '2', '2021-02-05 09:26:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('100', '34', '1', '1', '145', '20', 'S', '5', 'F001-0000517', '2', '2021-02-05 09:26:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('101', '34', '1', '1', '152', '20', 'S', '5', 'F001-0000517', '2', '2021-02-05 09:26:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('102', '35', '1', '1', '153', '100', 'S', '5', 'F001-0000518', '2', '2021-02-05 09:45:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('103', '35', '1', '1', '183', '456', 'S', '5', 'F001-0000518', '2', '2021-02-05 09:45:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('104', '36', '1', '1', '152', '20', 'S', '5', 'F002-0000001', '1', '2021-02-05 18:17:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('105', '36', '1', '1', '145', '20', 'S', '5', 'F002-0000001', '1', '2021-02-05 18:17:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('106', '36', '1', '1', '146', '30', 'S', '5', 'F002-0000001', '1', '2021-02-05 18:17:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('107', '36', '1', '1', '155', '20', 'S', '5', 'F002-0000001', '1', '2021-02-05 18:17:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('108', '36', '1', '1', '154', '70', 'S', '5', 'F002-0000001', '1', '2021-02-05 18:17:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('109', '36', '1', '1', '152', '20', 'I', '3', 'F002-0000001', '2', '2021-02-08 10:14:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('110', '36', '1', '1', '145', '20', 'I', '3', 'F002-0000001', '2', '2021-02-08 10:14:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('111', '36', '1', '1', '146', '30', 'I', '3', 'F002-0000001', '2', '2021-02-08 10:14:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('112', '36', '1', '1', '155', '20', 'I', '3', 'F002-0000001', '2', '2021-02-08 10:14:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('113', '36', '1', '1', '154', '70', 'I', '3', 'F002-0000001', '2', '2021-02-08 10:14:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('114', '37', '1', '1', '154', '70', 'S', '5', 'F002-0000002', '2', '2021-02-08 10:43:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('115', '37', '1', '1', '155', '20', 'S', '5', 'F002-0000002', '2', '2021-02-08 10:43:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('116', '37', '1', '1', '146', '30', 'S', '5', 'F002-0000002', '2', '2021-02-08 10:43:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('117', '37', '1', '1', '145', '20', 'S', '5', 'F002-0000002', '2', '2021-02-08 10:43:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('118', '37', '1', '1', '152', '20', 'S', '5', 'F002-0000002', '2', '2021-02-08 10:43:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('119', '38', '1', '1', '183', '456', 'S', '5', 'F002-0000003', '2', '2021-02-08 10:45:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('120', '38', '1', '1', '153', '100', 'S', '5', 'F002-0000003', '2', '2021-02-08 10:45:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('121', '39', '1', '1', '145', '6', 'S', '5', 'B001-0000017', '2', '2021-02-08 10:50:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('122', '39', '1', '1', '150', '12', 'S', '5', 'B001-0000017', '2', '2021-02-08 10:50:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('123', '40', '1', '1', '145', '6', 'S', '5', 'F002-0000004', '2', '2021-02-08 15:34:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('124', '40', '1', '1', '150', '6', 'S', '5', 'F002-0000004', '2', '2021-02-08 15:34:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('125', '40', '1', '1', '147', '6', 'S', '5', 'F002-0000004', '2', '2021-02-08 15:34:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('126', '40', '1', '1', '148', '6', 'S', '5', 'F002-0000004', '2', '2021-02-08 15:34:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('127', '40', '1', '1', '146', '6', 'S', '5', 'F002-0000004', '2', '2021-02-08 15:34:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('128', '41', '1', '1', '150', '6', 'S', '5', 'F002-0000005', '2', '2021-02-08 15:37:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('129', '42', '1', '1', '150', '6', 'S', '5', 'F002-0000006', '2', '2021-02-08 16:23:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('130', '42', '1', '1', '146', '6', 'S', '5', 'F002-0000006', '2', '2021-02-08 16:23:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('131', '43', '1', '1', '155', '1', 'S', '5', 'B001-0000018', '2', '2021-02-09 08:02:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('132', '43', '1', '1', '154', '1', 'S', '5', 'B001-0000018', '2', '2021-02-09 08:02:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('133', '44', '1', '1', '148', '2', 'S', '5', 'B001-0000019', '2', '2021-02-09 08:03:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('134', '45', '1', '1', '155', '6', 'S', '5', 'B001-0000020', '2', '2021-02-09 08:04:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('135', '46', '1', '1', '148', '2160', 'S', '5', 'F002-0000007', '2', '2021-02-09 08:48:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('136', '47', '1', '1', '148', '2', 'S', '5', 'B001-0000021', '2', '2021-02-09 14:09:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('137', '48', '1', '1', '145', '5', 'S', '5', 'B001-0000022', '2', '2021-02-11 07:57:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('138', '48', '1', '1', '150', '4', 'S', '5', 'B001-0000022', '2', '2021-02-11 07:57:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('139', '48', '1', '1', '147', '5', 'S', '5', 'B001-0000022', '2', '2021-02-11 07:57:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('140', '48', '1', '1', '148', '5', 'S', '5', 'B001-0000022', '2', '2021-02-11 07:57:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('141', '48', '1', '1', '146', '4', 'S', '5', 'B001-0000022', '2', '2021-02-11 07:57:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('142', '49', '1', '1', '152', '1', 'S', '5', 'B001-0000023', '2', '2021-02-11 08:00:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('143', '50', '1', '1', '154', '480', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('144', '50', '1', '1', '155', '480', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('145', '50', '1', '1', '145', '3312', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('146', '50', '1', '1', '148', '1440', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('147', '50', '1', '1', '146', '1584', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('148', '50', '1', '1', '147', '2448', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('149', '50', '1', '1', '150', '720', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('150', '50', '1', '1', '149', '144', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('151', '50', '1', '1', '152', '42', 'S', '5', 'F002-0000008', '2', '2021-02-11 08:21:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('152', '51', '1', '1', '154', '6', 'S', '5', 'F002-0000009', '2', '2021-02-11 08:39:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('153', '51', '1', '1', '155', '11', 'S', '5', 'F002-0000009', '2', '2021-02-11 08:39:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('154', '51', '1', '1', '146', '30', 'S', '5', 'F002-0000009', '2', '2021-02-11 08:39:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('155', '51', '1', '1', '152', '80', 'S', '5', 'F002-0000009', '2', '2021-02-11 08:39:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('156', '51', '1', '1', '147', '30', 'S', '5', 'F002-0000009', '2', '2021-02-11 08:39:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('157', '51', '1', '1', '148', '30', 'S', '5', 'F002-0000009', '2', '2021-02-11 08:39:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('158', '51', '1', '1', '149', '12', 'S', '5', 'F002-0000009', '2', '2021-02-11 08:39:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('159', '51', '1', '1', '150', '12', 'S', '5', 'F002-0000009', '2', '2021-02-11 08:39:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('160', '52', '1', '1', '150', '7', 'S', '5', 'F002-0000010', '2', '2021-02-11 09:04:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('161', '52', '1', '1', '149', '8', 'S', '5', 'F002-0000010', '2', '2021-02-11 09:04:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('162', '52', '1', '1', '146', '20', 'S', '5', 'F002-0000010', '2', '2021-02-11 09:04:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('163', '52', '1', '1', '145', '30', 'S', '5', 'F002-0000010', '2', '2021-02-11 09:04:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('164', '52', '1', '1', '148', '30', 'S', '5', 'F002-0000010', '2', '2021-02-11 09:04:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('165', '52', '1', '1', '147', '30', 'S', '5', 'F002-0000010', '2', '2021-02-11 09:04:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('166', '53', '1', '1', '150', '6', 'S', '5', 'B001-0000024', '2', '2021-02-11 09:09:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('167', '53', '1', '1', '149', '6', 'S', '5', 'B001-0000024', '2', '2021-02-11 09:09:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('168', '54', '1', '1', '150', '4', 'S', '5', 'B001-0000025', '2', '2021-02-11 09:14:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('169', '54', '1', '1', '149', '4', 'S', '5', 'B001-0000025', '2', '2021-02-11 09:14:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('170', '54', '1', '1', '155', '2', 'S', '5', 'B001-0000025', '2', '2021-02-11 09:14:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('171', '54', '1', '1', '154', '2', 'S', '5', 'B001-0000025', '2', '2021-02-11 09:14:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('172', '54', '1', '1', '152', '6', 'S', '5', 'B001-0000025', '2', '2021-02-11 09:14:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('173', '54', '1', '1', '148', '5', 'S', '5', 'B001-0000025', '2', '2021-02-11 09:14:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('174', '54', '1', '1', '146', '5', 'S', '5', 'B001-0000025', '2', '2021-02-11 09:14:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('175', '54', '1', '1', '147', '5', 'S', '5', 'B001-0000025', '2', '2021-02-11 09:14:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('176', '55', '1', '1', '150', '1', 'S', '5', 'B001-0000026', '2', '2021-02-11 09:17:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('177', '55', '1', '1', '155', '1', 'S', '5', 'B001-0000026', '2', '2021-02-11 09:17:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('178', '55', '1', '1', '154', '1', 'S', '5', 'B001-0000026', '2', '2021-02-11 09:17:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('179', '55', '1', '1', '152', '3', 'S', '5', 'B001-0000026', '2', '2021-02-11 09:17:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('180', '55', '1', '1', '145', '1', 'S', '5', 'B001-0000026', '2', '2021-02-11 09:17:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('181', '56', '1', '1', '155', '1', 'S', '5', 'B001-0000027', '2', '2021-02-11 09:19:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('182', '56', '1', '1', '148', '18', 'S', '5', 'B001-0000027', '2', '2021-02-11 09:19:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('183', '56', '1', '1', '152', '3', 'S', '5', 'B001-0000027', '2', '2021-02-11 09:19:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('184', '57', '1', '1', '155', '1', 'S', '5', 'B001-0000028', '2', '2021-02-11 09:22:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('185', '57', '1', '1', '154', '1', 'S', '5', 'B001-0000028', '2', '2021-02-11 09:22:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('186', '57', '1', '1', '145', '3', 'S', '5', 'B001-0000028', '2', '2021-02-11 09:22:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('187', '57', '1', '1', '147', '3', 'S', '5', 'B001-0000028', '2', '2021-02-11 09:22:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('188', '57', '1', '1', '146', '3', 'S', '5', 'B001-0000028', '2', '2021-02-11 09:22:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('189', '57', '1', '1', '148', '3', 'S', '5', 'B001-0000028', '2', '2021-02-11 09:22:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('190', '57', '1', '1', '155', '1', 'I', '3', 'B001-0000028', '2', '2021-02-11 09:22:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('191', '57', '1', '1', '154', '1', 'I', '3', 'B001-0000028', '2', '2021-02-11 09:22:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('192', '57', '1', '1', '145', '3', 'I', '3', 'B001-0000028', '2', '2021-02-11 09:22:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('193', '57', '1', '1', '147', '3', 'I', '3', 'B001-0000028', '2', '2021-02-11 09:22:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('194', '57', '1', '1', '146', '3', 'I', '3', 'B001-0000028', '2', '2021-02-11 09:22:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('195', '57', '1', '1', '148', '3', 'I', '3', 'B001-0000028', '2', '2021-02-11 09:22:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('196', '58', '1', '1', '155', '1', 'S', '5', 'B001-0000029', '2', '2021-02-11 09:25:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('197', '58', '1', '1', '154', '1', 'S', '5', 'B001-0000029', '2', '2021-02-11 09:25:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('198', '58', '1', '1', '145', '3', 'S', '5', 'B001-0000029', '2', '2021-02-11 09:25:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('199', '58', '1', '1', '147', '3', 'S', '5', 'B001-0000029', '2', '2021-02-11 09:25:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('200', '58', '1', '1', '146', '3', 'S', '5', 'B001-0000029', '2', '2021-02-11 09:25:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('201', '58', '1', '1', '148', '3', 'S', '5', 'B001-0000029', '2', '2021-02-11 09:25:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('202', '59', '1', '1', '155', '48', 'S', '5', 'F002-0000011', '2', '2021-02-11 09:29:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('203', '59', '1', '1', '154', '48', 'S', '5', 'F002-0000011', '2', '2021-02-11 09:29:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('204', '59', '1', '1', '145', '24', 'S', '5', 'F002-0000011', '2', '2021-02-11 09:29:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('205', '59', '1', '1', '147', '24', 'S', '5', 'F002-0000011', '2', '2021-02-11 09:29:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('206', '59', '1', '1', '146', '24', 'S', '5', 'F002-0000011', '2', '2021-02-11 09:29:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('207', '59', '1', '1', '148', '24', 'S', '5', 'F002-0000011', '2', '2021-02-11 09:29:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('208', '59', '1', '1', '152', '36', 'S', '5', 'F002-0000011', '2', '2021-02-11 09:29:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('209', '60', '1', '1', '155', '2', 'S', '5', 'B002-0000001', '2', '2021-02-11 11:26:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('210', '60', '1', '1', '154', '2', 'S', '5', 'B002-0000001', '2', '2021-02-11 11:26:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('211', '60', '1', '1', '152', '6', 'S', '5', 'B002-0000001', '2', '2021-02-11 11:26:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('212', '61', '1', '1', '155', '2', 'S', '5', 'B002-0000002', '2', '2021-02-11 11:28:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('213', '61', '1', '1', '147', '4', 'S', '5', 'B002-0000002', '2', '2021-02-11 11:28:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('214', '61', '1', '1', '152', '4', 'S', '5', 'B002-0000002', '2', '2021-02-11 11:28:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('215', '61', '1', '1', '149', '3', 'S', '5', 'B002-0000002', '2', '2021-02-11 11:28:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('216', '62', '1', '1', '152', '13', 'S', '5', 'B002-0000003', '2', '2021-02-11 11:29:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('217', '63', '1', '1', '148', '6', 'S', '5', 'B002-0000004', '2', '2021-02-11 11:31:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('218', '63', '1', '1', '147', '6', 'S', '5', 'B002-0000004', '2', '2021-02-11 11:31:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('219', '63', '1', '1', '145', '6', 'S', '5', 'B002-0000004', '2', '2021-02-11 11:31:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('220', '63', '1', '1', '146', '6', 'S', '5', 'B002-0000004', '2', '2021-02-11 11:31:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('221', '64', '1', '1', '154', '6', 'S', '5', 'F002-0000012', '2', '2021-02-11 11:45:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('222', '64', '1', '1', '155', '11', 'S', '5', 'F002-0000012', '2', '2021-02-11 11:45:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('223', '64', '1', '1', '146', '30', 'S', '5', 'F002-0000012', '2', '2021-02-11 11:45:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('224', '64', '1', '1', '152', '80', 'S', '5', 'F002-0000012', '2', '2021-02-11 11:45:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('225', '64', '1', '1', '147', '30', 'S', '5', 'F002-0000012', '2', '2021-02-11 11:45:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('226', '64', '1', '1', '148', '30', 'S', '5', 'F002-0000012', '2', '2021-02-11 11:45:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('227', '64', '1', '1', '149', '12', 'S', '5', 'F002-0000012', '2', '2021-02-11 11:45:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('228', '64', '1', '1', '150', '12', 'S', '5', 'F002-0000012', '2', '2021-02-11 11:45:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('229', '65', '1', '1', '182', '1', 'S', '5', 'B002-0000005', '2', '2021-02-11 12:00:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('230', '66', '1', '1', '148', '2', 'S', '5', 'B002-0000006', '2', '2021-02-11 12:01:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('231', '67', '1', '1', '151', '1', 'S', '5', 'B002-0000007', '2', '2021-02-11 12:02:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('232', '68', '1', '1', '150', '8', 'S', '5', 'B002-0000008', '2', '2021-02-11 12:03:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('233', '68', '1', '1', '149', '4', 'S', '5', 'B002-0000008', '2', '2021-02-11 12:03:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('234', '69', '1', '1', '149', '60', 'S', '5', 'B002-0000009', '2', '2021-02-11 12:03:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('235', '70', '1', '1', '145', '6', 'S', '5', 'B002-0000010', '2', '2021-02-11 12:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('236', '70', '1', '1', '150', '12', 'S', '5', 'B002-0000010', '2', '2021-02-11 12:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('237', '71', '1', '1', '155', '1', 'S', '5', 'B002-0000011', '2', '2021-02-11 12:05:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('238', '71', '1', '1', '154', '1', 'S', '5', 'B002-0000011', '2', '2021-02-11 12:05:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('239', '72', '1', '1', '148', '2', 'S', '5', 'B002-0000012', '2', '2021-02-11 12:05:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('240', '73', '1', '1', '155', '6', 'S', '5', 'B002-0000013', '2', '2021-02-11 12:06:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('241', '74', '1', '1', '148', '2', 'S', '5', 'B002-0000014', '2', '2021-02-11 12:06:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('242', '75', '1', '1', '145', '5', 'S', '5', 'B002-0000015', '2', '2021-02-11 12:10:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('243', '75', '1', '1', '150', '4', 'S', '5', 'B002-0000015', '2', '2021-02-11 12:10:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('244', '75', '1', '1', '147', '5', 'S', '5', 'B002-0000015', '2', '2021-02-11 12:10:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('245', '75', '1', '1', '148', '5', 'S', '5', 'B002-0000015', '2', '2021-02-11 12:10:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('246', '75', '1', '1', '146', '4', 'S', '5', 'B002-0000015', '2', '2021-02-11 12:10:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('247', '76', '1', '1', '152', '1', 'S', '5', 'B002-0000016', '2', '2021-02-11 12:10:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('248', '77', '1', '1', '150', '6', 'S', '5', 'B002-0000017', '2', '2021-02-11 12:11:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('249', '77', '1', '1', '149', '6', 'S', '5', 'B002-0000017', '2', '2021-02-11 12:11:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('250', '77', '1', '1', '188', '1', 'S', '5', 'B002-0000017', '2', '2021-02-11 12:11:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('251', '78', '1', '1', '150', '4', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('252', '78', '1', '1', '149', '4', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('253', '78', '1', '1', '155', '2', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('254', '78', '1', '1', '154', '2', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('255', '78', '1', '1', '152', '6', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('256', '78', '1', '1', '148', '5', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('257', '78', '1', '1', '146', '5', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('258', '78', '1', '1', '147', '5', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('259', '78', '1', '1', '188', '1', 'S', '5', 'B002-0000018', '2', '2021-02-11 12:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('260', '79', '1', '1', '150', '1', 'S', '5', 'B002-0000019', '2', '2021-02-11 12:16:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('261', '79', '1', '1', '155', '1', 'S', '5', 'B002-0000019', '2', '2021-02-11 12:16:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('262', '79', '1', '1', '154', '1', 'S', '5', 'B002-0000019', '2', '2021-02-11 12:16:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('263', '79', '1', '1', '152', '3', 'S', '5', 'B002-0000019', '2', '2021-02-11 12:16:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('264', '79', '1', '1', '145', '1', 'S', '5', 'B002-0000019', '2', '2021-02-11 12:16:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('265', '79', '1', '1', '188', '1', 'S', '5', 'B002-0000019', '2', '2021-02-11 12:16:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('266', '80', '1', '1', '155', '1', 'S', '5', 'B002-0000020', '2', '2021-02-11 12:18:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('267', '80', '1', '1', '148', '18', 'S', '5', 'B002-0000020', '2', '2021-02-11 12:18:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('268', '80', '1', '1', '152', '3', 'S', '5', 'B002-0000020', '2', '2021-02-11 12:18:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('269', '80', '1', '1', '188', '1', 'S', '5', 'B002-0000020', '2', '2021-02-11 12:18:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('270', '81', '1', '1', '155', '1', 'S', '5', 'B002-0000021', '2', '2021-02-11 12:19:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('271', '81', '1', '1', '154', '1', 'S', '5', 'B002-0000021', '2', '2021-02-11 12:19:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('272', '81', '1', '1', '145', '3', 'S', '5', 'B002-0000021', '2', '2021-02-11 12:19:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('273', '81', '1', '1', '147', '3', 'S', '5', 'B002-0000021', '2', '2021-02-11 12:19:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('274', '81', '1', '1', '146', '3', 'S', '5', 'B002-0000021', '2', '2021-02-11 12:19:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('275', '81', '1', '1', '148', '3', 'S', '5', 'B002-0000021', '2', '2021-02-11 12:19:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('276', '81', '1', '1', '188', '1', 'S', '5', 'B002-0000021', '2', '2021-02-11 12:19:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('277', '58', '1', '1', '155', '1', 'I', '3', 'B001-0000029', '2', '2021-02-11 12:21:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('278', '58', '1', '1', '154', '1', 'I', '3', 'B001-0000029', '2', '2021-02-11 12:21:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('279', '58', '1', '1', '145', '3', 'I', '3', 'B001-0000029', '2', '2021-02-11 12:21:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('280', '58', '1', '1', '147', '3', 'I', '3', 'B001-0000029', '2', '2021-02-11 12:21:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('281', '58', '1', '1', '146', '3', 'I', '3', 'B001-0000029', '2', '2021-02-11 12:21:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('282', '58', '1', '1', '148', '3', 'I', '3', 'B001-0000029', '2', '2021-02-11 12:21:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('283', '56', '1', '1', '155', '1', 'I', '3', 'B001-0000027', '2', '2021-02-11 12:21:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('284', '56', '1', '1', '148', '18', 'I', '3', 'B001-0000027', '2', '2021-02-11 12:21:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('285', '56', '1', '1', '152', '3', 'I', '3', 'B001-0000027', '2', '2021-02-11 12:21:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('286', '55', '1', '1', '150', '1', 'I', '3', 'B001-0000026', '2', '2021-02-11 12:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('287', '55', '1', '1', '155', '1', 'I', '3', 'B001-0000026', '2', '2021-02-11 12:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('288', '55', '1', '1', '154', '1', 'I', '3', 'B001-0000026', '2', '2021-02-11 12:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('289', '55', '1', '1', '152', '3', 'I', '3', 'B001-0000026', '2', '2021-02-11 12:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('290', '55', '1', '1', '145', '1', 'I', '3', 'B001-0000026', '2', '2021-02-11 12:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('291', '54', '1', '1', '150', '4', 'I', '3', 'B001-0000025', '2', '2021-02-11 12:21:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('292', '54', '1', '1', '149', '4', 'I', '3', 'B001-0000025', '2', '2021-02-11 12:21:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('293', '54', '1', '1', '155', '2', 'I', '3', 'B001-0000025', '2', '2021-02-11 12:21:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('294', '54', '1', '1', '154', '2', 'I', '3', 'B001-0000025', '2', '2021-02-11 12:21:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('295', '54', '1', '1', '152', '6', 'I', '3', 'B001-0000025', '2', '2021-02-11 12:21:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('296', '54', '1', '1', '148', '5', 'I', '3', 'B001-0000025', '2', '2021-02-11 12:21:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('297', '54', '1', '1', '146', '5', 'I', '3', 'B001-0000025', '2', '2021-02-11 12:21:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('298', '54', '1', '1', '147', '5', 'I', '3', 'B001-0000025', '2', '2021-02-11 12:21:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('299', '53', '1', '1', '150', '6', 'I', '3', 'B001-0000024', '2', '2021-02-11 12:21:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('300', '53', '1', '1', '149', '6', 'I', '3', 'B001-0000024', '2', '2021-02-11 12:21:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('301', '49', '1', '1', '152', '1', 'I', '3', 'B001-0000023', '2', '2021-02-11 12:21:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('302', '48', '1', '1', '145', '5', 'I', '3', 'B001-0000022', '2', '2021-02-11 12:22:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('303', '48', '1', '1', '150', '4', 'I', '3', 'B001-0000022', '2', '2021-02-11 12:22:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('304', '48', '1', '1', '147', '5', 'I', '3', 'B001-0000022', '2', '2021-02-11 12:22:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('305', '48', '1', '1', '148', '5', 'I', '3', 'B001-0000022', '2', '2021-02-11 12:22:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('306', '48', '1', '1', '146', '4', 'I', '3', 'B001-0000022', '2', '2021-02-11 12:22:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('307', '47', '1', '1', '148', '2', 'I', '3', 'B001-0000021', '2', '2021-02-11 12:29:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('308', '45', '1', '1', '155', '6', 'I', '3', 'B001-0000020', '2', '2021-02-11 12:29:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('309', '44', '1', '1', '148', '2', 'I', '3', 'B001-0000019', '2', '2021-02-11 12:30:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('310', '43', '1', '1', '155', '1', 'I', '3', 'B001-0000018', '2', '2021-02-11 12:30:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('311', '43', '1', '1', '154', '1', 'I', '3', 'B001-0000018', '2', '2021-02-11 12:30:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('312', '43', '1', '1', '155', '1', 'I', '3', 'B001-0000018', '2', '2021-02-11 12:30:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('313', '43', '1', '1', '154', '1', 'I', '3', 'B001-0000018', '2', '2021-02-11 12:30:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('314', '39', '1', '1', '145', '6', 'I', '3', 'B001-0000017', '2', '2021-02-11 12:30:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('315', '39', '1', '1', '150', '12', 'I', '3', 'B001-0000017', '2', '2021-02-11 12:30:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('316', '34', '1', '1', '154', '70', 'I', '3', 'F001-0000517', '2', '2021-02-11 12:31:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('317', '34', '1', '1', '155', '20', 'I', '3', 'F001-0000517', '2', '2021-02-11 12:31:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('318', '34', '1', '1', '146', '30', 'I', '3', 'F001-0000517', '2', '2021-02-11 12:31:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('319', '34', '1', '1', '145', '20', 'I', '3', 'F001-0000517', '2', '2021-02-11 12:31:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('320', '34', '1', '1', '152', '20', 'I', '3', 'F001-0000517', '2', '2021-02-11 12:31:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('321', '33', '1', '1', '149', '60', 'I', '3', 'B001-0000016', '2', '2021-02-11 12:31:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('322', '32', '1', '1', '149', '4', 'I', '3', 'B001-0000015', '2', '2021-02-11 12:32:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('323', '32', '1', '1', '150', '8', 'I', '3', 'B001-0000015', '2', '2021-02-11 12:32:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('324', '27', '1', '1', '151', '1', 'I', '3', 'B001-0000014', '2', '2021-02-11 12:33:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('325', '25', '1', '1', '22', '2', 'I', '3', 'B001-0000012', '2', '2021-02-11 12:33:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('326', '23', '1', '1', '182', '1', 'I', '3', 'B001-0000011', '2', '2021-02-11 12:33:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('327', '14', '1', '1', '22', '6', 'I', '3', 'B001-0000009', '2', '2021-02-11 12:34:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('328', '14', '1', '1', '21', '6', 'I', '3', 'B001-0000009', '2', '2021-02-11 12:34:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('329', '14', '1', '1', '19', '6', 'I', '3', 'B001-0000009', '2', '2021-02-11 12:34:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('330', '14', '1', '1', '20', '6', 'I', '3', 'B001-0000009', '2', '2021-02-11 12:34:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('331', '13', '1', '1', '152', '13', 'I', '3', 'B001-0000008', '2', '2021-02-11 12:34:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('332', '12', '1', '1', '155', '2', 'I', '3', 'B001-0000007', '2', '2021-02-11 12:34:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('333', '12', '1', '1', '21', '4', 'I', '3', 'B001-0000007', '2', '2021-02-11 12:34:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('334', '12', '1', '1', '152', '4', 'I', '3', 'B001-0000007', '2', '2021-02-11 12:34:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('335', '12', '1', '1', '23', '3', 'I', '3', 'B001-0000007', '2', '2021-02-11 12:34:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('336', '11', '1', '1', '155', '2', 'I', '3', 'B001-0000006', '2', '2021-02-11 12:34:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('337', '11', '1', '1', '154', '2', 'I', '3', 'B001-0000006', '2', '2021-02-11 12:34:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('338', '11', '1', '1', '152', '6', 'I', '3', 'B001-0000006', '2', '2021-02-11 12:34:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('339', '82', '1', '1', '146', '10', 'S', '5', 'B002-0000022', '2', '2021-02-12 08:29:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('340', '83', '1', '1', '152', '12', 'S', '5', 'B002-0000023', '2', '2021-02-12 08:29:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('341', '84', '1', '1', '148', '9648', 'S', '5', 'F002-0000013', '2', '2021-02-12 08:36:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('342', '85', '1', '1', '151', '6', 'S', '5', 'F002-0000014', '2', '2021-02-12 15:31:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('343', '86', '1', '1', '152', '6', 'S', '5', 'F002-0000015', '2', '2021-02-12 15:39:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('344', '86', '1', '1', '152', '6', 'I', '3', 'F002-0000015', '2', '2021-02-12 16:08:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('345', '87', '1', '1', '152', '6', 'S', '5', 'F002-0000016', '2', '2021-02-12 16:11:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('346', '87', '1', '1', '154', '2', 'S', '5', 'F002-0000016', '2', '2021-02-12 16:11:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('347', '87', '1', '1', '155', '6', 'S', '5', 'F002-0000016', '2', '2021-02-12 16:11:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('348', '88', '1', '1', '155', '5', 'S', '5', 'B002-0000024', '2', '2021-02-12 16:18:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('349', '88', '1', '1', '154', '5', 'S', '5', 'B002-0000024', '2', '2021-02-12 16:18:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('350', '89', '1', '1', '151', '6', 'S', '5', 'F002-0000017', '2', '2021-02-12 16:22:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('351', '88', '1', '1', '155', '5', 'I', '3', 'B002-0000024', '2', '2021-02-12 16:25:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('352', '88', '1', '1', '154', '5', 'I', '3', 'B002-0000024', '2', '2021-02-12 16:25:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('353', '90', '1', '1', '155', '5', 'S', '5', 'F002-0000018', '2', '2021-02-12 16:26:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('354', '90', '1', '1', '154', '5', 'S', '5', 'F002-0000018', '2', '2021-02-12 16:26:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('355', '91', '1', '1', '155', '2', 'S', '5', 'F002-0000019', '2', '2021-02-14 03:45:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('356', '91', '1', '1', '154', '3', 'S', '5', 'F002-0000019', '2', '2021-02-14 03:45:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('357', '92', '1', '1', '155', '3', 'S', '5', 'F002-0000020', '2', '2021-02-14 03:52:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('358', '92', '1', '1', '154', '3', 'S', '5', 'F002-0000020', '2', '2021-02-14 03:52:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('359', '93', '1', '1', '145', '6', 'S', '5', 'B002-0000025', '2', '2021-02-15 16:29:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('360', '93', '1', '1', '147', '6', 'S', '5', 'B002-0000025', '2', '2021-02-15 16:29:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('361', '93', '1', '1', '146', '6', 'S', '5', 'B002-0000025', '2', '2021-02-15 16:29:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('362', '93', '1', '1', '148', '6', 'S', '5', 'B002-0000025', '2', '2021-02-15 16:29:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('363', '93', '1', '1', '150', '6', 'S', '5', 'B002-0000025', '2', '2021-02-15 16:29:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('364', '94', '1', '1', '145', '6', 'S', '5', 'B002-0000026', '2', '2021-02-15 16:34:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('365', '94', '1', '1', '146', '6', 'S', '5', 'B002-0000026', '2', '2021-02-15 16:34:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('366', '94', '1', '1', '147', '3', 'S', '5', 'B002-0000026', '2', '2021-02-15 16:34:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('367', '94', '1', '1', '148', '6', 'S', '5', 'B002-0000026', '2', '2021-02-15 16:34:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('368', '94', '1', '1', '145', '6', 'I', '3', 'B002-0000026', '2', '2021-02-15 16:35:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('369', '94', '1', '1', '146', '6', 'I', '3', 'B002-0000026', '2', '2021-02-15 16:35:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('370', '94', '1', '1', '147', '3', 'I', '3', 'B002-0000026', '2', '2021-02-15 16:35:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('371', '94', '1', '1', '148', '6', 'I', '3', 'B002-0000026', '2', '2021-02-15 16:35:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('372', '95', '1', '1', '145', '6', 'S', '5', 'F002-0000021', '2', '2021-02-15 16:37:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('373', '95', '1', '1', '146', '6', 'S', '5', 'F002-0000021', '2', '2021-02-15 16:37:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('374', '95', '1', '1', '147', '3', 'S', '5', 'F002-0000021', '2', '2021-02-15 16:37:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('375', '95', '1', '1', '148', '6', 'S', '5', 'F002-0000021', '2', '2021-02-15 16:37:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('376', '96', '1', '1', '155', '1', 'S', '5', 'B002-0000027', '2', '2021-02-15 16:38:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('377', '96', '1', '1', '154', '1', 'S', '5', 'B002-0000027', '2', '2021-02-15 16:38:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('378', '97', '1', '1', '150', '8', 'S', '5', 'F002-0000022', '2', '2021-02-15 16:41:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('379', '98', '1', '1', '145', '6', 'S', '5', 'B002-0000028', '2', '2021-02-16 16:37:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('380', '98', '1', '1', '147', '6', 'S', '5', 'B002-0000028', '2', '2021-02-16 16:37:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('381', '98', '1', '1', '148', '6', 'S', '5', 'B002-0000028', '2', '2021-02-16 16:37:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('382', '99', '1', '1', '155', '2', 'S', '5', 'F002-0000023', '2', '2021-02-16 16:46:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('383', '100', '1', '1', '151', '40', 'S', '5', 'B002-0000029', '2', '2021-02-17 15:05:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('384', '100', '1', '1', '152', '50', 'S', '5', 'B002-0000029', '2', '2021-02-17 15:05:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('385', '100', '1', '1', '145', '160', 'S', '5', 'B002-0000029', '2', '2021-02-17 15:05:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('386', '101', '1', '1', '155', '2', 'S', '5', 'B002-0000030', '2', '2021-02-17 15:35:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('387', '101', '1', '1', '147', '18', 'S', '5', 'B002-0000030', '2', '2021-02-17 15:35:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('388', '101', '1', '1', '152', '4', 'S', '5', 'B002-0000030', '2', '2021-02-17 15:35:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('389', '101', '1', '1', '150', '1', 'S', '5', 'B002-0000030', '2', '2021-02-17 15:35:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('390', '101', '1', '1', '188', '1', 'S', '5', 'B002-0000030', '2', '2021-02-17 15:35:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('391', '102', '1', '1', '154', '5', 'S', '5', 'B002-0000031', '2', '2021-02-17 15:36:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('392', '102', '1', '1', '188', '1', 'S', '5', 'B002-0000031', '2', '2021-02-17 15:36:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('393', '103', '1', '1', '145', '8', 'S', '5', 'B002-0000032', '2', '2021-02-17 15:37:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('394', '103', '1', '1', '155', '1', 'S', '5', 'B002-0000032', '2', '2021-02-17 15:37:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('395', '103', '1', '1', '154', '1', 'S', '5', 'B002-0000032', '2', '2021-02-17 15:37:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('396', '103', '1', '1', '188', '1', 'S', '5', 'B002-0000032', '2', '2021-02-17 15:37:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('397', '104', '1', '1', '145', '6', 'S', '5', 'B002-0000033', '2', '2021-02-17 15:41:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('398', '104', '1', '1', '146', '12', 'S', '5', 'B002-0000033', '2', '2021-02-17 15:41:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('399', '104', '1', '1', '150', '2', 'S', '5', 'B002-0000033', '2', '2021-02-17 15:41:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('400', '104', '1', '1', '188', '1', 'S', '5', 'B002-0000033', '2', '2021-02-17 15:41:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('401', '105', '1', '1', '150', '24', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('402', '105', '1', '1', '149', '24', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('403', '105', '1', '1', '147', '24', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('404', '105', '1', '1', '146', '24', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('405', '105', '1', '1', '145', '24', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('406', '105', '1', '1', '148', '24', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('407', '105', '1', '1', '155', '5', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('408', '105', '1', '1', '154', '5', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('409', '105', '1', '1', '152', '10', 'S', '5', 'F002-0000024', '2', '2021-02-18 08:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('410', '106', '1', '1', '155', '2', 'S', '5', 'B002-0000034', '2', '2021-02-18 10:28:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('411', '106', '1', '1', '154', '2', 'S', '5', 'B002-0000034', '2', '2021-02-18 10:28:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('412', '107', '1', '1', '152', '6', 'S', '5', 'B002-0000035', '2', '2021-02-21 05:04:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('413', '107', '1', '1', '155', '1', 'S', '5', 'B002-0000035', '2', '2021-02-21 05:04:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('414', '107', '1', '1', '154', '1', 'S', '5', 'B002-0000035', '2', '2021-02-21 05:04:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('415', '108', '1', '1', '152', '12', 'S', '5', 'B002-0000036', '2', '2021-02-21 05:07:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('416', '109', '1', '1', '155', '6', 'S', '5', 'B002-0000037', '2', '2021-02-21 05:10:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('417', '110', '1', '1', '145', '6', 'S', '5', 'B002-0000038', '2', '2021-02-21 05:16:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('418', '110', '1', '1', '146', '6', 'S', '5', 'B002-0000038', '2', '2021-02-21 05:16:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('419', '110', '1', '1', '147', '6', 'S', '5', 'B002-0000038', '2', '2021-02-21 05:16:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('420', '110', '1', '1', '148', '6', 'S', '5', 'B002-0000038', '2', '2021-02-21 05:16:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('421', '110', '1', '1', '150', '6', 'S', '5', 'B002-0000038', '2', '2021-02-21 05:16:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('422', '111', '1', '1', '145', '6', 'S', '5', 'B002-0000039', '2', '2021-02-21 05:21:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('423', '111', '1', '1', '147', '6', 'S', '5', 'B002-0000039', '2', '2021-02-21 05:21:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('424', '111', '1', '1', '148', '6', 'S', '5', 'B002-0000039', '2', '2021-02-21 05:21:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('425', '111', '1', '1', '155', '3', 'S', '5', 'B002-0000039', '2', '2021-02-21 05:21:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('426', '111', '1', '1', '154', '3', 'S', '5', 'B002-0000039', '2', '2021-02-21 05:21:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('427', '112', '1', '1', '145', '3', 'S', '5', 'F002-0000025', '2', '2021-02-21 05:31:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('428', '112', '1', '1', '146', '3', 'S', '5', 'F002-0000025', '2', '2021-02-21 05:31:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('429', '112', '1', '1', '147', '3', 'S', '5', 'F002-0000025', '2', '2021-02-21 05:31:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('430', '112', '1', '1', '148', '3', 'S', '5', 'F002-0000025', '2', '2021-02-21 05:31:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('431', '112', '1', '1', '155', '2', 'S', '5', 'F002-0000025', '2', '2021-02-21 05:31:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('432', '112', '1', '1', '154', '2', 'S', '5', 'F002-0000025', '2', '2021-02-21 05:31:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('433', '113', '1', '1', '155', '2', 'S', '5', 'B002-0000040', '2', '2021-02-21 05:35:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('434', '114', '1', '1', '145', '1296', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('435', '114', '1', '1', '148', '1584', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('436', '114', '1', '1', '146', '1008', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('437', '114', '1', '1', '147', '1008', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('438', '114', '1', '1', '149', '144', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('439', '114', '1', '1', '150', '288', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('440', '114', '1', '1', '152', '210', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('441', '114', '1', '1', '155', '240', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('442', '114', '1', '1', '154', '240', 'S', '5', 'F002-0000026', '2', '2021-02-22 11:37:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('443', '115', '1', '1', '154', '1', 'S', '5', 'B002-0000041', '2', '2021-02-22 15:26:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('444', '116', '1', '1', '152', '3', 'S', '5', 'B002-0000042', '2', '2021-02-22 15:38:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('445', '116', '1', '1', '145', '3', 'S', '5', 'B002-0000042', '2', '2021-02-22 15:38:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('446', '116', '1', '1', '146', '3', 'S', '5', 'B002-0000042', '2', '2021-02-22 15:38:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('447', '116', '1', '1', '147', '3', 'S', '5', 'B002-0000042', '2', '2021-02-22 15:38:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('448', '116', '1', '1', '148', '3', 'S', '5', 'B002-0000042', '2', '2021-02-22 15:38:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('449', '116', '1', '1', '155', '2', 'S', '5', 'B002-0000042', '2', '2021-02-22 15:38:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('450', '116', '1', '1', '154', '2', 'S', '5', 'B002-0000042', '2', '2021-02-22 15:38:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('451', '117', '1', '1', '150', '6', 'S', '5', 'F002-0000027', '2', '2021-02-22 15:41:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('452', '118', '1', '1', '151', '50', 'S', '5', 'F002-0000028', '2', '2021-02-23 08:39:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('453', '118', '1', '1', '152', '50', 'S', '5', 'F002-0000028', '2', '2021-02-23 08:39:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('454', '118', '1', '1', '145', '200', 'S', '5', 'F002-0000028', '2', '2021-02-23 08:39:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('455', '118', '1', '1', '146', '100', 'S', '5', 'F002-0000028', '2', '2021-02-23 08:39:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('456', '118', '1', '1', '149', '10', 'S', '5', 'F002-0000028', '2', '2021-02-23 08:39:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('457', '118', '1', '1', '150', '10', 'S', '5', 'F002-0000028', '2', '2021-02-23 08:39:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('458', '118', '1', '1', '155', '12', 'S', '5', 'F002-0000028', '2', '2021-02-23 08:39:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('459', '118', '1', '1', '148', '100', 'S', '5', 'F002-0000028', '2', '2021-02-23 08:39:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('460', '119', '1', '1', '145', '6', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('461', '119', '1', '1', '148', '6', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('462', '119', '1', '1', '146', '6', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('463', '119', '1', '1', '147', '6', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('464', '119', '1', '1', '149', '12', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('465', '119', '1', '1', '150', '12', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('466', '119', '1', '1', '152', '24', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('467', '119', '1', '1', '155', '24', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('468', '119', '1', '1', '154', '24', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('469', '119', '1', '1', '151', '24', 'S', '5', 'F002-0000029', '2', '2021-02-23 10:34:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('470', '120', '1', '1', '151', '15', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('471', '120', '1', '1', '152', '12', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('472', '120', '1', '1', '145', '10', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('473', '120', '1', '1', '147', '8', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('474', '120', '1', '1', '148', '12', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('475', '120', '1', '1', '150', '6', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('476', '120', '1', '1', '155', '6', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('477', '120', '1', '1', '154', '10', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('478', '120', '1', '1', '146', '12', 'S', '5', 'F002-0000030', '2', '2021-02-23 15:59:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('479', '121', '1', '1', '145', '6', 'S', '5', 'B002-0000043', '2', '2021-02-24 08:44:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('480', '121', '1', '1', '146', '6', 'S', '5', 'B002-0000043', '2', '2021-02-24 08:44:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('481', '121', '1', '1', '147', '6', 'S', '5', 'B002-0000043', '2', '2021-02-24 08:44:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('482', '121', '1', '1', '148', '6', 'S', '5', 'B002-0000043', '2', '2021-02-24 08:44:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('483', '122', '1', '1', '145', '6', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('484', '122', '1', '1', '148', '6', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('485', '122', '1', '1', '146', '6', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('486', '122', '1', '1', '147', '6', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('487', '122', '1', '1', '149', '4', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('488', '122', '1', '1', '150', '4', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('489', '122', '1', '1', '152', '6', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('490', '122', '1', '1', '155', '3', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('491', '122', '1', '1', '154', '3', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('492', '122', '1', '1', '151', '4', 'S', '5', 'F002-0000031', '2', '2021-02-24 16:11:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('493', '123', '1', '1', '155', '2', 'S', '5', 'B002-0000044', '2', '2021-02-25 14:54:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('494', '123', '1', '1', '154', '2', 'S', '5', 'B002-0000044', '2', '2021-02-25 14:54:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('495', '124', '1', '1', '155', '3', 'S', '5', 'B002-0000045', '2', '2021-02-25 14:56:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('496', '124', '1', '1', '154', '2', 'S', '5', 'B002-0000045', '2', '2021-02-25 14:56:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('497', '125', '1', '1', '155', '5', 'S', '5', 'F002-0000032', '2', '2021-02-25 14:59:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('498', '125', '1', '1', '154', '5', 'S', '5', 'F002-0000032', '2', '2021-02-25 14:59:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('499', '126', '1', '1', '147', '1', 'S', '5', 'B002-0000046', '2', '2021-02-25 15:03:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('500', '126', '1', '1', '148', '1', 'S', '5', 'B002-0000046', '2', '2021-02-25 15:03:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('501', '127', '1', '1', '148', '1728', 'S', '5', 'F002-0000033', '2', '2021-02-25 17:02:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('502', '128', '1', '1', '147', '10', 'S', '5', 'B002-0000047', '2', '2021-02-26 08:18:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('503', '128', '1', '1', '152', '8', 'S', '5', 'B002-0000047', '2', '2021-02-26 08:18:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('504', '128', '1', '1', '155', '2', 'S', '5', 'B002-0000047', '2', '2021-02-26 08:18:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('505', '128', '1', '1', '151', '6', 'S', '5', 'B002-0000047', '2', '2021-02-26 08:18:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('506', '128', '1', '1', '188', '1', 'S', '5', 'B002-0000047', '2', '2021-02-26 08:18:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('507', '129', '1', '1', '155', '2', 'S', '5', 'B002-0000048', '2', '2021-02-26 08:26:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('508', '129', '1', '1', '154', '2', 'S', '5', 'B002-0000048', '2', '2021-02-26 08:26:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('509', '129', '1', '1', '150', '6', 'S', '5', 'B002-0000048', '2', '2021-02-26 08:26:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('510', '129', '1', '1', '149', '6', 'S', '5', 'B002-0000048', '2', '2021-02-26 08:26:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('511', '129', '1', '1', '148', '6', 'S', '5', 'B002-0000048', '2', '2021-02-26 08:26:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('512', '129', '1', '1', '145', '6', 'S', '5', 'B002-0000048', '2', '2021-02-26 08:26:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('513', '129', '1', '1', '147', '6', 'S', '5', 'B002-0000048', '2', '2021-02-26 08:26:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('514', '129', '1', '1', '146', '6', 'S', '5', 'B002-0000048', '2', '2021-02-26 08:26:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('515', '130', '1', '1', '145', '19', 'S', '5', 'B002-0000049', '2', '2021-02-26 08:27:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('516', '131', '1', '1', '182', '4', 'S', '5', 'B002-0000050', '2', '2021-02-26 14:33:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('517', '132', '1', '1', '145', '3', 'S', '5', 'B002-0000051', '2', '2021-02-26 16:12:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('518', '132', '1', '1', '146', '3', 'S', '5', 'B002-0000051', '2', '2021-02-26 16:12:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('519', '132', '1', '1', '147', '3', 'S', '5', 'B002-0000051', '2', '2021-02-26 16:12:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('520', '132', '1', '1', '148', '3', 'S', '5', 'B002-0000051', '2', '2021-02-26 16:12:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('521', '133', '1', '1', '155', '6', 'S', '5', 'B002-0000052', '2', '2021-02-28 22:02:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('522', '133', '1', '1', '154', '6', 'S', '5', 'B002-0000052', '2', '2021-02-28 22:02:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('523', '134', '1', '1', '155', '2', 'S', '5', 'F002-0000034', '2', '2021-02-28 22:06:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('524', '134', '1', '1', '154', '3', 'S', '5', 'F002-0000034', '2', '2021-02-28 22:06:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('525', '133', '1', '1', '155', '6', 'I', '3', 'B002-0000052', '2', '2021-02-28 22:07:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('526', '133', '1', '1', '154', '6', 'I', '3', 'B002-0000052', '2', '2021-02-28 22:07:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('527', '135', '1', '1', '155', '6', 'S', '5', 'F002-0000035', '2', '2021-02-28 22:08:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('528', '135', '1', '1', '154', '6', 'S', '5', 'F002-0000035', '2', '2021-02-28 22:08:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('529', '136', '1', '1', '154', '2', 'S', '5', 'B002-0000053', '2', '2021-02-28 22:10:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('530', '137', '1', '1', '147', '1', 'S', '5', 'B002-0000054', '2', '2021-02-28 22:13:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('531', '138', '1', '1', '154', '1', 'S', '5', 'B002-0000055', '2', '2021-02-28 22:15:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('532', '139', '1', '1', '148', '8784', 'S', '5', 'B002-0000056', '2', '2021-03-02 09:29:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('533', '140', '1', '1', '148', '8784', 'S', '5', 'F002-0000036', '2', '2021-03-02 09:31:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('534', '141', '1', '1', '148', '8784', 'S', '5', 'F002-0000037', '2', '2021-03-02 09:34:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('535', '142', '1', '1', '148', '8784', 'S', '5', 'F002-0000038', '2', '2021-03-02 09:36:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('536', '144', '1', '1', '145', '3', 'S', '5', 'B002-0000058', '2', '2021-03-03 06:37:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('537', '144', '1', '1', '146', '3', 'S', '5', 'B002-0000058', '2', '2021-03-03 06:37:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('538', '144', '1', '1', '147', '3', 'S', '5', 'B002-0000058', '2', '2021-03-03 06:37:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('539', '144', '1', '1', '148', '3', 'S', '5', 'B002-0000058', '2', '2021-03-03 06:37:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('540', '144', '1', '1', '155', '2', 'S', '5', 'B002-0000058', '2', '2021-03-03 06:37:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('541', '144', '1', '1', '152', '3', 'S', '5', 'B002-0000058', '2', '2021-03-03 06:37:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('542', '145', '1', '1', '155', '3', 'S', '5', 'F002-0000039', '2', '2021-03-03 06:40:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('543', '146', '1', '1', '151', '12', 'S', '5', 'F002-0000040', '2', '2021-03-03 06:45:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('544', '147', '1', '1', '154', '6', 'S', '5', 'B002-0000059', '2', '2021-03-03 06:48:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('545', '148', '1', '1', '145', '8', 'S', '5', 'B002-0000060', '2', '2021-03-03 06:52:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('546', '148', '1', '1', '147', '7', 'S', '5', 'B002-0000060', '2', '2021-03-03 06:52:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('547', '148', '1', '1', '146', '2', 'S', '5', 'B002-0000060', '2', '2021-03-03 06:52:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('548', '148', '1', '1', '148', '7', 'S', '5', 'B002-0000060', '2', '2021-03-03 06:52:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('549', '149', '1', '1', '154', '4', 'S', '5', 'F002-0000041', '2', '2021-03-03 07:20:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('550', '149', '1', '1', '188', '1', 'S', '5', 'F002-0000041', '2', '2021-03-03 07:20:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('551', '150', '1', '1', '155', '4', 'S', '5', 'B002-0000061', '2', '2021-03-03 07:54:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('552', '150', '1', '1', '152', '6', 'S', '5', 'B002-0000061', '2', '2021-03-03 07:54:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('553', '150', '1', '1', '188', '1', 'S', '5', 'B002-0000061', '2', '2021-03-03 07:54:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('554', '151', '1', '1', '145', '36', 'S', '5', 'F002-0000042', '2', '2021-03-03 07:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('555', '151', '1', '1', '148', '36', 'S', '5', 'F002-0000042', '2', '2021-03-03 07:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('556', '151', '1', '1', '149', '24', 'S', '5', 'F002-0000042', '2', '2021-03-03 07:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('557', '151', '1', '1', '150', '24', 'S', '5', 'F002-0000042', '2', '2021-03-03 07:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('558', '151', '1', '1', '151', '36', 'S', '5', 'F002-0000042', '2', '2021-03-03 07:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('559', '151', '1', '1', '155', '16', 'S', '5', 'F002-0000042', '2', '2021-03-03 07:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('560', '151', '1', '1', '154', '16', 'S', '5', 'F002-0000042', '2', '2021-03-03 07:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('561', '152', '1', '1', '148', '40', 'S', '5', 'B002-0000062', '2', '2021-03-03 08:19:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('562', '152', '1', '1', '145', '40', 'S', '5', 'B002-0000062', '2', '2021-03-03 08:19:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('563', '152', '1', '1', '147', '40', 'S', '5', 'B002-0000062', '2', '2021-03-03 08:19:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('564', '152', '1', '1', '146', '40', 'S', '5', 'B002-0000062', '2', '2021-03-03 08:19:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('565', '152', '1', '1', '152', '36', 'S', '5', 'B002-0000062', '2', '2021-03-03 08:19:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('566', '152', '1', '1', '155', '24', 'S', '5', 'B002-0000062', '2', '2021-03-03 08:19:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('567', '152', '1', '1', '154', '24', 'S', '5', 'B002-0000062', '2', '2021-03-03 08:19:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('568', '153', '1', '1', '155', '216', 'S', '5', 'F002-0000043', '2', '2021-03-03 08:31:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('569', '153', '1', '1', '154', '108', 'S', '5', 'F002-0000043', '2', '2021-03-03 08:31:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('570', '153', '1', '1', '145', '2016', 'S', '5', 'F002-0000043', '2', '2021-03-03 08:31:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('571', '153', '1', '1', '148', '1872', 'S', '5', 'F002-0000043', '2', '2021-03-03 08:31:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('572', '153', '1', '1', '146', '1152', 'S', '5', 'F002-0000043', '2', '2021-03-03 08:31:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('573', '153', '1', '1', '147', '1584', 'S', '5', 'F002-0000043', '2', '2021-03-03 08:31:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('574', '153', '1', '1', '152', '84', 'S', '5', 'F002-0000043', '2', '2021-03-03 08:31:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('575', '154', '1', '1', '155', '10', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('576', '154', '1', '1', '154', '10', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('577', '154', '1', '1', '148', '50', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('578', '154', '1', '1', '145', '50', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('579', '154', '1', '1', '147', '50', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('580', '154', '1', '1', '146', '50', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('581', '154', '1', '1', '152', '50', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('582', '154', '1', '1', '149', '15', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('583', '154', '1', '1', '150', '15', 'S', '5', 'F002-0000044', '2', '2021-03-03 08:44:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('584', '152', '1', '1', '148', '40', 'I', '3', 'B002-0000062', '2', '2021-03-04 10:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('585', '152', '1', '1', '145', '40', 'I', '3', 'B002-0000062', '2', '2021-03-04 10:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('586', '152', '1', '1', '147', '40', 'I', '3', 'B002-0000062', '2', '2021-03-04 10:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('587', '152', '1', '1', '146', '40', 'I', '3', 'B002-0000062', '2', '2021-03-04 10:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('588', '152', '1', '1', '152', '36', 'I', '3', 'B002-0000062', '2', '2021-03-04 10:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('589', '152', '1', '1', '155', '24', 'I', '3', 'B002-0000062', '2', '2021-03-04 10:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('590', '152', '1', '1', '154', '24', 'I', '3', 'B002-0000062', '2', '2021-03-04 10:04:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('591', '155', '1', '1', '148', '40', 'S', '5', 'F002-0000045', '2', '2021-03-04 10:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('592', '155', '1', '1', '145', '40', 'S', '5', 'F002-0000045', '2', '2021-03-04 10:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('593', '155', '1', '1', '147', '40', 'S', '5', 'F002-0000045', '2', '2021-03-04 10:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('594', '155', '1', '1', '146', '40', 'S', '5', 'F002-0000045', '2', '2021-03-04 10:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('595', '155', '1', '1', '152', '36', 'S', '5', 'F002-0000045', '2', '2021-03-04 10:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('596', '155', '1', '1', '155', '24', 'S', '5', 'F002-0000045', '2', '2021-03-04 10:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('597', '155', '1', '1', '154', '24', 'S', '5', 'F002-0000045', '2', '2021-03-04 10:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('598', '156', '1', '1', '155', '12', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('599', '156', '1', '1', '154', '12', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('600', '156', '1', '1', '148', '12', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('601', '156', '1', '1', '145', '12', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('602', '156', '1', '1', '152', '24', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('603', '156', '1', '1', '147', '12', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('604', '156', '1', '1', '146', '12', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('605', '156', '1', '1', '150', '12', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('606', '156', '1', '1', '149', '12', 'S', '5', 'B002-0000063', '2', '2021-03-04 10:18:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('607', '156', '1', '1', '155', '12', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('608', '156', '1', '1', '154', '12', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('609', '156', '1', '1', '148', '12', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('610', '156', '1', '1', '145', '12', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('611', '156', '1', '1', '152', '24', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('612', '156', '1', '1', '147', '12', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('613', '156', '1', '1', '146', '12', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('614', '156', '1', '1', '150', '12', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('615', '156', '1', '1', '149', '12', 'I', '3', 'B002-0000063', '2', '2021-03-04 10:19:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('616', '157', '1', '1', '155', '12', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('617', '157', '1', '1', '154', '12', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('618', '157', '1', '1', '148', '12', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('619', '157', '1', '1', '145', '12', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('620', '157', '1', '1', '152', '24', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('621', '157', '1', '1', '147', '12', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('622', '157', '1', '1', '146', '12', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('623', '157', '1', '1', '150', '12', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('624', '157', '1', '1', '149', '12', 'S', '5', 'F002-0000046', '2', '2021-03-04 10:21:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('625', '158', '1', '1', '155', '1', 'S', '5', 'B002-0000064', '2', '2021-03-04 10:26:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('626', '158', '1', '1', '154', '1', 'S', '5', 'B002-0000064', '2', '2021-03-04 10:26:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('627', '158', '1', '1', '148', '2', 'S', '5', 'B002-0000064', '2', '2021-03-04 10:26:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('628', '158', '1', '1', '145', '4', 'S', '5', 'B002-0000064', '2', '2021-03-04 10:26:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('629', '158', '1', '1', '188', '1', 'S', '5', 'B002-0000064', '2', '2021-03-04 10:26:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('630', '159', '1', '1', '155', '12', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('631', '159', '1', '1', '154', '12', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('632', '159', '1', '1', '148', '144', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('633', '159', '1', '1', '145', '144', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('634', '159', '1', '1', '146', '144', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('635', '159', '1', '1', '147', '144', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('636', '159', '1', '1', '150', '144', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('637', '159', '1', '1', '149', '144', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('638', '159', '1', '1', '152', '42', 'S', '5', 'F002-0000047', '2', '2021-03-05 11:07:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('639', '160', '1', '1', '155', '48', 'S', '5', 'F002-0000048', '2', '2021-03-05 11:15:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('640', '160', '1', '1', '154', '48', 'S', '5', 'F002-0000048', '2', '2021-03-05 11:15:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('641', '160', '1', '1', '148', '60', 'S', '5', 'F002-0000048', '2', '2021-03-05 11:15:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('642', '160', '1', '1', '145', '60', 'S', '5', 'F002-0000048', '2', '2021-03-05 11:15:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('643', '160', '1', '1', '146', '60', 'S', '5', 'F002-0000048', '2', '2021-03-05 11:15:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('644', '160', '1', '1', '147', '60', 'S', '5', 'F002-0000048', '2', '2021-03-05 11:15:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('645', '160', '1', '1', '151', '60', 'S', '5', 'F002-0000048', '2', '2021-03-05 11:15:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('646', '160', '1', '1', '152', '36', 'S', '5', 'F002-0000048', '2', '2021-03-05 11:15:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('647', '161', '1', '1', '155', '36', 'S', '5', 'F002-0000049', '2', '2021-03-05 11:22:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('648', '161', '1', '1', '148', '120', 'S', '5', 'F002-0000049', '2', '2021-03-05 11:22:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('649', '161', '1', '1', '145', '48', 'S', '5', 'F002-0000049', '2', '2021-03-05 11:22:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('650', '161', '1', '1', '146', '24', 'S', '5', 'F002-0000049', '2', '2021-03-05 11:22:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('651', '161', '1', '1', '147', '48', 'S', '5', 'F002-0000049', '2', '2021-03-05 11:22:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('652', '161', '1', '1', '151', '24', 'S', '5', 'F002-0000049', '2', '2021-03-05 11:22:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('653', '161', '1', '1', '152', '60', 'S', '5', 'F002-0000049', '2', '2021-03-05 11:22:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('654', '162', '1', '1', '147', '6', 'S', '5', 'F002-0000050', '2', '2021-03-07 06:17:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('655', '163', '1', '1', '145', '1', 'S', '5', 'B002-0000065', '2', '2021-03-07 06:37:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('656', '163', '1', '1', '147', '1', 'S', '5', 'B002-0000065', '2', '2021-03-07 06:37:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('657', '163', '1', '1', '148', '1', 'S', '5', 'B002-0000065', '2', '2021-03-07 06:37:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('658', '164', '1', '1', '154', '2', 'S', '5', 'F002-0000051', '2', '2021-03-07 06:49:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('659', '165', '1', '1', '154', '1', 'S', '5', 'B002-0000066', '2', '2021-03-07 06:51:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('660', '166', '1', '1', '154', '2', 'S', '5', 'F002-0000052', '2', '2021-03-07 06:58:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('661', '167', '1', '1', '154', '2', 'S', '5', 'B002-0000067', '2', '2021-03-07 07:17:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('662', '168', '1', '1', '154', '4', 'S', '5', 'F002-0000053', '2', '2021-03-07 07:21:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('663', '169', '1', '1', '145', '6', 'S', '5', 'B002-0000068', '2', '2021-03-07 07:26:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('664', '169', '1', '1', '146', '6', 'S', '5', 'B002-0000068', '2', '2021-03-07 07:26:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('665', '169', '1', '1', '152', '6', 'S', '5', 'B002-0000068', '2', '2021-03-07 07:26:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('666', '169', '1', '1', '154', '1', 'S', '5', 'B002-0000068', '2', '2021-03-07 07:26:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('667', '170', '1', '1', '145', '1', 'S', '5', 'B002-0000069', '2', '2021-03-08 15:52:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('668', '170', '1', '1', '146', '1', 'S', '5', 'B002-0000069', '2', '2021-03-08 15:52:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('669', '170', '1', '1', '151', '2', 'S', '5', 'B002-0000069', '2', '2021-03-08 15:52:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('670', '171', '1', '1', '155', '5', 'S', '5', 'F002-0000054', '2', '2021-03-08 15:57:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('671', '171', '1', '1', '154', '5', 'S', '5', 'F002-0000054', '2', '2021-03-08 15:57:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('672', '172', '1', '1', '154', '3', 'S', '5', 'F002-0000055', '2', '2021-03-08 16:01:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('673', '173', '1', '1', '149', '80', 'S', '5', 'F002-0000056', '2', '2021-03-08 16:04:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('674', '173', '1', '1', '150', '80', 'S', '5', 'F002-0000056', '2', '2021-03-08 16:04:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('675', '174', '1', '1', '155', '1', 'S', '5', 'B002-0000070', '2', '2021-03-09 08:45:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('676', '174', '1', '1', '154', '1', 'S', '5', 'B002-0000070', '2', '2021-03-09 08:45:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('677', '175', '1', '1', '145', '12', 'S', '5', 'B002-0000071', '2', '2021-03-09 08:54:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('678', '176', '1', '1', '145', '142', 'S', '5', 'F002-0000057', '2', '2021-03-09 14:31:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('679', '176', '1', '1', '146', '142', 'S', '5', 'F002-0000057', '2', '2021-03-09 14:31:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('680', '177', '1', '1', '148', '1440', 'S', '5', 'F002-0000058', '2', '2021-03-10 11:09:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('681', '178', '1', '1', '155', '1', 'S', '5', 'B002-0000072', '2', '2021-03-10 12:18:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('682', '179', '1', '1', '151', '15', 'S', '5', 'F002-0000059', '2', '2021-03-10 12:47:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('683', '180', '1', '1', '155', '15', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('684', '180', '1', '1', '154', '15', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('685', '180', '1', '1', '148', '12', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('686', '180', '1', '1', '145', '12', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('687', '180', '1', '1', '146', '12', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('688', '180', '1', '1', '147', '12', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('689', '180', '1', '1', '149', '12', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('690', '180', '1', '1', '150', '12', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('691', '180', '1', '1', '152', '15', 'S', '5', 'F002-0000060', '2', '2021-03-10 17:31:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('692', '181', '1', '1', '145', '20', 'S', '5', 'B002-0000073', '2', '2021-03-10 17:34:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('693', '181', '1', '1', '188', '1', 'S', '5', 'B002-0000073', '2', '2021-03-10 17:34:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('694', '182', '1', '1', '154', '8', 'S', '5', 'B002-0000074', '2', '2021-03-10 17:36:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('695', '182', '1', '1', '188', '1', 'S', '5', 'B002-0000074', '2', '2021-03-10 17:36:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('696', '183', '1', '1', '145', '1728', 'S', '5', 'F002-0000061', '2', '2021-03-11 09:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('697', '183', '1', '1', '147', '1152', 'S', '5', 'F002-0000061', '2', '2021-03-11 09:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('698', '183', '1', '1', '146', '720', 'S', '5', 'F002-0000061', '2', '2021-03-11 09:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('699', '183', '1', '1', '148', '1584', 'S', '5', 'F002-0000061', '2', '2021-03-11 09:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('700', '183', '1', '1', '155', '288', 'S', '5', 'F002-0000061', '2', '2021-03-11 09:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('701', '183', '1', '1', '154', '96', 'S', '5', 'F002-0000061', '2', '2021-03-11 09:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('702', '183', '1', '1', '150', '144', 'S', '5', 'F002-0000061', '2', '2021-03-11 09:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('703', '183', '1', '1', '149', '144', 'S', '5', 'F002-0000061', '2', '2021-03-11 09:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('704', '184', '1', '1', '151', '6', 'S', '5', 'B002-0000075', '2', '2021-03-11 16:19:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('705', '185', '1', '1', '155', '2', 'S', '5', 'F002-0000062', '2', '2021-03-11 16:22:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('706', '185', '1', '1', '154', '2', 'S', '5', 'F002-0000062', '2', '2021-03-11 16:22:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('707', '186', '1', '1', '145', '2', 'S', '5', 'F002-0000063', '2', '2021-03-11 16:26:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('708', '186', '1', '1', '146', '2', 'S', '5', 'F002-0000063', '2', '2021-03-11 16:26:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('709', '186', '1', '1', '147', '2', 'S', '5', 'F002-0000063', '2', '2021-03-11 16:26:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('710', '186', '1', '1', '155', '1', 'S', '5', 'F002-0000063', '2', '2021-03-11 16:26:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('711', '187', '1', '1', '155', '3', 'S', '5', 'B002-0000076', '2', '2021-03-11 16:33:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('712', '188', '1', '1', '145', '3', 'S', '5', 'B002-0000077', '2', '2021-03-11 16:36:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('713', '188', '1', '1', '147', '3', 'S', '5', 'B002-0000077', '2', '2021-03-11 16:36:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('714', '188', '1', '1', '148', '3', 'S', '5', 'B002-0000077', '2', '2021-03-11 16:36:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('715', '189', '1', '1', '155', '1', 'S', '5', 'B002-0000078', '2', '2021-03-11 16:39:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('716', '189', '1', '1', '154', '1', 'S', '5', 'B002-0000078', '2', '2021-03-11 16:39:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('717', '190', '1', '1', '145', '6', 'S', '5', 'B002-0000079', '2', '2021-03-12 15:24:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('718', '191', '1', '1', '155', '10', 'S', '5', 'F002-0000064', '2', '2021-03-12 15:27:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('719', '192', '1', '1', '155', '4', 'S', '5', 'F002-0000065', '2', '2021-03-12 15:29:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('720', '192', '1', '1', '154', '4', 'S', '5', 'F002-0000065', '2', '2021-03-12 15:29:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('721', '193', '1', '1', '148', '1', 'S', '5', 'B002-0000080', '2', '2021-03-12 15:31:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('722', '194', '1', '1', '155', '2', 'S', '5', 'B002-0000081', '2', '2021-03-16 11:46:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('723', '194', '1', '1', '155', '2', 'I', '3', 'B002-0000081', '2', '2021-03-16 11:49:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('724', '195', '1', '1', '155', '2', 'S', '5', 'F002-0000066', '2', '2021-03-16 11:50:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('725', '196', '1', '1', '151', '6', 'S', '5', 'B002-0000082', '2', '2021-03-16 11:55:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('726', '197', '1', '1', '145', '4', 'S', '5', 'B002-0000083', '2', '2021-03-16 12:00:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('727', '197', '1', '1', '147', '4', 'S', '5', 'B002-0000083', '2', '2021-03-16 12:00:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('728', '197', '1', '1', '148', '4', 'S', '5', 'B002-0000083', '2', '2021-03-16 12:00:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('729', '198', '1', '1', '155', '1', 'S', '5', 'B002-0000084', '2', '2021-03-16 12:04:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('730', '199', '1', '1', '145', '2', 'S', '5', 'B002-0000085', '2', '2021-03-16 12:26:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('731', '199', '1', '1', '147', '2', 'S', '5', 'B002-0000085', '2', '2021-03-16 12:26:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('732', '199', '1', '1', '148', '2', 'S', '5', 'B002-0000085', '2', '2021-03-16 12:26:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('733', '199', '1', '1', '145', '2', 'I', '3', 'B002-0000085', '2', '2021-03-16 12:26:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('734', '199', '1', '1', '147', '2', 'I', '3', 'B002-0000085', '2', '2021-03-16 12:26:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('735', '199', '1', '1', '148', '2', 'I', '3', 'B002-0000085', '2', '2021-03-16 12:26:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('736', '200', '1', '1', '145', '2', 'S', '5', 'F002-0000067', '2', '2021-03-16 12:27:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('737', '200', '1', '1', '147', '2', 'S', '5', 'F002-0000067', '2', '2021-03-16 12:27:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('738', '200', '1', '1', '148', '2', 'S', '5', 'F002-0000067', '2', '2021-03-16 12:27:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('739', '201', '1', '1', '145', '6', 'S', '5', 'F002-0000068', '2', '2021-03-16 12:29:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('740', '202', '1', '1', '148', '1', 'S', '5', 'B002-0000086', '2', '2021-03-16 12:31:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('741', '203', '1', '1', '147', '6', 'S', '5', 'B002-0000087', '2', '2021-03-16 13:53:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('742', '203', '1', '1', '148', '6', 'S', '5', 'B002-0000087', '2', '2021-03-16 13:53:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('743', '204', '1', '1', '147', '6', 'S', '5', 'B002-0000088', '2', '2021-03-16 13:57:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('744', '205', '1', '1', '154', '1', 'S', '5', 'B002-0000089', '2', '2021-03-16 14:02:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('745', '206', '1', '1', '154', '1', 'S', '5', 'B002-0000090', '2', '2021-03-16 14:08:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('746', '207', '1', '1', '145', '3', 'S', '5', 'B002-0000091', '2', '2021-03-16 14:13:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('747', '207', '1', '1', '148', '6', 'S', '5', 'B002-0000091', '2', '2021-03-16 14:13:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('748', '195', '1', '1', '155', '2', 'I', '3', 'F002-0000066', '2', '2021-03-16 14:52:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('749', '196', '1', '1', '151', '6', 'I', '3', 'B002-0000082', '2', '2021-03-16 14:52:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('750', '197', '1', '1', '145', '4', 'I', '3', 'B002-0000083', '2', '2021-03-16 14:52:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('751', '197', '1', '1', '147', '4', 'I', '3', 'B002-0000083', '2', '2021-03-16 14:52:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('752', '197', '1', '1', '148', '4', 'I', '3', 'B002-0000083', '2', '2021-03-16 14:52:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('753', '198', '1', '1', '155', '1', 'I', '3', 'B002-0000084', '2', '2021-03-16 14:52:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('754', '208', '1', '1', '147', '14', 'S', '5', 'B002-0000092', '2', '2021-03-17 13:32:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('755', '208', '1', '1', '148', '13', 'S', '5', 'B002-0000092', '2', '2021-03-17 13:32:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('756', '208', '1', '1', '146', '13', 'S', '5', 'B002-0000092', '2', '2021-03-17 13:32:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('757', '209', '1', '1', '152', '12', 'S', '5', 'B002-0000093', '2', '2021-03-17 13:34:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('758', '210', '1', '1', '148', '2', 'S', '5', 'B002-0000094', '2', '2021-03-17 13:35:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('759', '211', '1', '1', '155', '3', 'S', '5', 'F002-0000069', '2', '2021-03-17 13:36:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('760', '211', '1', '1', '154', '3', 'S', '5', 'F002-0000069', '2', '2021-03-17 13:36:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('761', '212', '1', '1', '148', '2160', 'S', '5', 'F002-0000070', '2', '2021-03-17 13:47:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('762', '213', '1', '1', '148', '2160', 'S', '5', 'F002-0000071', '2', '2021-03-17 13:48:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('763', '213', '1', '1', '148', '2160', 'I', '3', 'F002-0000071', '2', '2021-03-17 13:49:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('764', '214', '1', '1', '146', '167', 'S', '5', '', '2', '2021-03-17 13:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('765', '214', '1', '1', '145', '167', 'S', '5', '', '2', '2021-03-17 13:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('766', '215', '1', '1', '146', '167', 'S', '5', 'F002-0000072', '2', '2021-03-17 13:51:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('767', '215', '1', '1', '145', '167', 'S', '5', 'F002-0000072', '2', '2021-03-17 13:51:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('768', '216', '1', '1', '147', '1728', 'S', '5', 'F002-0000073', '2', '2021-03-18 10:41:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('769', '216', '1', '1', '145', '1872', 'S', '5', 'F002-0000073', '2', '2021-03-18 10:41:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('770', '216', '1', '1', '148', '1728', 'S', '5', 'F002-0000073', '2', '2021-03-18 10:41:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('771', '216', '1', '1', '146', '720', 'S', '5', 'F002-0000073', '2', '2021-03-18 10:41:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('772', '216', '1', '1', '155', '156', 'S', '5', 'F002-0000073', '2', '2021-03-18 10:41:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('773', '216', '1', '1', '154', '120', 'S', '5', 'F002-0000073', '2', '2021-03-18 10:41:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('774', '216', '1', '1', '152', '126', 'S', '5', 'F002-0000073', '2', '2021-03-18 10:41:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('775', '217', '1', '1', '152', '12', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('776', '217', '1', '1', '146', '20', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('777', '217', '1', '1', '147', '20', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('778', '217', '1', '1', '148', '20', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('779', '217', '1', '1', '145', '20', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('780', '217', '1', '1', '150', '20', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('781', '217', '1', '1', '149', '20', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('782', '217', '1', '1', '154', '6', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('783', '217', '1', '1', '155', '6', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('784', '217', '1', '1', '151', '50', 'S', '5', 'F002-0000074', '2', '2021-03-18 13:13:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('785', '218', '1', '1', '147', '12', 'S', '5', 'B002-0000095', '2', '2021-03-18 14:23:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('786', '218', '1', '1', '145', '12', 'S', '5', 'B002-0000095', '2', '2021-03-18 14:23:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('787', '218', '1', '1', '148', '24', 'S', '5', 'B002-0000095', '2', '2021-03-18 14:23:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('788', '218', '1', '1', '188', '1', 'S', '5', 'B002-0000095', '2', '2021-03-18 14:23:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('789', '219', '1', '1', '146', '6', 'S', '5', 'B002-0000096', '2', '2021-03-18 14:42:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('790', '220', '1', '1', '147', '3', 'S', '5', 'F002-0000075', '2', '2021-03-18 14:54:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('791', '220', '1', '1', '146', '3', 'S', '5', 'F002-0000075', '2', '2021-03-18 14:54:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('792', '220', '1', '1', '148', '3', 'S', '5', 'F002-0000075', '2', '2021-03-18 14:54:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('793', '221', '1', '1', '147', '6', 'S', '5', 'B002-0000097', '2', '2021-03-18 15:06:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('794', '221', '1', '1', '148', '6', 'S', '5', 'B002-0000097', '2', '2021-03-18 15:06:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('795', '222', '1', '1', '152', '12', 'S', '5', 'F002-0000076', '2', '2021-03-18 15:11:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('796', '222', '1', '1', '155', '6', 'S', '5', 'F002-0000076', '2', '2021-03-18 15:11:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('797', '222', '1', '1', '154', '6', 'S', '5', 'F002-0000076', '2', '2021-03-18 15:11:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('798', '224', '1', '1', '147', '6', 'S', '5', 'F002-0000078', '2', '2021-03-19 12:59:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('799', '224', '1', '1', '146', '6', 'S', '5', 'F002-0000078', '2', '2021-03-19 12:59:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('800', '225', '1', '1', '155', '1', 'S', '5', 'F002-0000079', '2', '2021-03-19 13:26:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('801', '226', '1', '1', '155', '1', 'S', '5', 'B002-0000098', '2', '2021-03-19 13:35:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('802', '226', '1', '1', '154', '1', 'S', '5', 'B002-0000098', '2', '2021-03-19 13:35:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('803', '227', '1', '1', '152', '12', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('804', '227', '1', '1', '146', '25', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('805', '227', '1', '1', '147', '25', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('806', '227', '1', '1', '145', '25', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('807', '227', '1', '1', '148', '25', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('808', '227', '1', '1', '150', '20', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('809', '227', '1', '1', '149', '20', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('810', '227', '1', '1', '155', '6', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('811', '227', '1', '1', '154', '12', 'S', '5', 'F002-0000080', '2', '2021-03-22 12:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('812', '228', '1', '1', '148', '120', 'S', '5', 'F002-0000081', '2', '2021-03-22 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('813', '228', '1', '1', '145', '120', 'S', '5', 'F002-0000081', '2', '2021-03-22 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('814', '228', '1', '1', '147', '120', 'S', '5', 'F002-0000081', '2', '2021-03-22 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('815', '228', '1', '1', '146', '120', 'S', '5', 'F002-0000081', '2', '2021-03-22 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('816', '228', '1', '1', '152', '24', 'S', '5', 'F002-0000081', '2', '2021-03-22 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('817', '228', '1', '1', '154', '24', 'S', '5', 'F002-0000081', '2', '2021-03-22 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('818', '228', '1', '1', '155', '24', 'S', '5', 'F002-0000081', '2', '2021-03-22 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('819', '228', '1', '1', '151', '24', 'S', '5', 'F002-0000081', '2', '2021-03-22 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('820', '229', '1', '1', '148', '6', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('821', '229', '1', '1', '145', '6', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('822', '229', '1', '1', '147', '6', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('823', '229', '1', '1', '146', '6', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('824', '229', '1', '1', '150', '12', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('825', '229', '1', '1', '149', '12', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('826', '229', '1', '1', '152', '12', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('827', '229', '1', '1', '155', '6', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('828', '229', '1', '1', '154', '6', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('829', '229', '1', '1', '151', '12', 'S', '5', 'F002-0000082', '2', '2021-03-22 12:53:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('830', '230', '1', '1', '155', '1', 'S', '5', 'B002-0000099', '2', '2021-03-22 15:17:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('831', '230', '1', '1', '154', '1', 'S', '5', 'B002-0000099', '2', '2021-03-22 15:17:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('832', '230', '1', '1', '151', '2', 'S', '5', 'B002-0000099', '2', '2021-03-22 15:17:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('833', '231', '1', '1', '151', '1', 'S', '5', 'B002-0000100', '2', '2021-03-22 15:20:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('834', '232', '1', '1', '147', '1', 'S', '5', 'B002-0000101', '2', '2021-03-22 15:27:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('835', '232', '1', '1', '146', '1', 'S', '5', 'B002-0000101', '2', '2021-03-22 15:27:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('836', '233', '1', '1', '155', '6', 'S', '5', 'B002-0000102', '2', '2021-03-22 15:30:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('837', '234', '1', '1', '155', '7', 'S', '5', 'F002-0000083', '2', '2021-03-22 15:32:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('838', '234', '1', '1', '154', '5', 'S', '5', 'F002-0000083', '2', '2021-03-22 15:32:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('839', '235', '1', '1', '155', '5', 'S', '5', 'B002-0000103', '2', '2021-03-22 15:44:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('840', '235', '1', '1', '154', '4', 'S', '5', 'B002-0000103', '2', '2021-03-22 15:44:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('841', '236', '1', '1', '151', '1', 'S', '5', 'B002-0000104', '2', '2021-03-22 15:46:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('842', '237', '1', '1', '155', '2', 'S', '5', 'F002-0000084', '2', '2021-03-22 15:49:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('843', '238', '1', '1', '151', '6', 'S', '5', 'B002-0000105', '2', '2021-03-22 15:57:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('844', '239', '1', '1', '145', '4', 'S', '5', 'B002-0000106', '2', '2021-03-22 16:00:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('845', '239', '1', '1', '147', '4', 'S', '5', 'B002-0000106', '2', '2021-03-22 16:00:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('846', '239', '1', '1', '148', '4', 'S', '5', 'B002-0000106', '2', '2021-03-22 16:00:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('847', '240', '1', '1', '155', '1', 'S', '5', 'B002-0000107', '2', '2021-03-22 16:01:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('848', '241', '1', '1', '155', '1', 'S', '5', 'B002-0000108', '2', '2021-03-22 16:11:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('849', '241', '1', '1', '154', '1', 'S', '5', 'B002-0000108', '2', '2021-03-22 16:11:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('850', '242', '1', '1', '155', '1', 'S', '5', 'B002-0000109', '2', '2021-03-22 16:24:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('851', '243', '1', '1', '151', '3', 'S', '5', 'B002-0000110', '2', '2021-03-22 16:26:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('852', '244', '1', '1', '155', '1', 'S', '5', 'B002-0000111', '2', '2021-03-22 16:28:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('853', '244', '1', '1', '154', '1', 'S', '5', 'B002-0000111', '2', '2021-03-22 16:28:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('854', '245', '1', '1', '147', '2', 'S', '5', 'F002-0000085', '2', '2021-03-22 16:33:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('855', '245', '1', '1', '146', '4', 'S', '5', 'F002-0000085', '2', '2021-03-22 16:33:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('856', '246', '1', '1', '155', '252', 'S', '5', 'F002-0000086', '2', '2021-03-24 10:41:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('857', '246', '1', '1', '36', '216', 'S', '5', 'F002-0000086', '2', '2021-03-24 10:41:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('858', '246', '1', '1', '145', '1872', 'S', '5', 'F002-0000086', '2', '2021-03-24 10:41:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('859', '246', '1', '1', '148', '2160', 'S', '5', 'F002-0000086', '2', '2021-03-24 10:41:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('860', '246', '1', '1', '146', '720', 'S', '5', 'F002-0000086', '2', '2021-03-24 10:41:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('861', '246', '1', '1', '147', '864', 'S', '5', 'F002-0000086', '2', '2021-03-24 10:41:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('862', '246', '1', '1', '152', '252', 'S', '5', 'F002-0000086', '2', '2021-03-24 10:41:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('863', '246', '1', '1', '150', '288', 'S', '5', 'F002-0000086', '2', '2021-03-24 10:41:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('864', '247', '1', '1', '155', '4', 'S', '5', 'F002-0000087', '2', '2021-03-24 15:51:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('865', '247', '1', '1', '154', '4', 'S', '5', 'F002-0000087', '2', '2021-03-24 15:51:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('866', '248', '1', '1', '155', '6', 'S', '5', 'F002-0000088', '2', '2021-03-24 15:56:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('867', '248', '1', '1', '154', '6', 'S', '5', 'F002-0000088', '2', '2021-03-24 15:56:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('868', '249', '1', '1', '148', '2304', 'S', '5', 'F002-0000089', '2', '2021-03-25 11:35:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('869', '250', '1', '1', '148', '20', 'S', '5', 'B002-0000112', '2', '2021-03-25 13:18:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('870', '250', '1', '1', '188', '1', 'S', '5', 'B002-0000112', '2', '2021-03-25 13:18:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('871', '251', '1', '1', '148', '40', 'S', '5', 'B002-0000113', '2', '2021-03-25 13:20:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('872', '251', '1', '1', '152', '7', 'S', '5', 'B002-0000113', '2', '2021-03-25 13:20:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('873', '251', '1', '1', '151', '4', 'S', '5', 'B002-0000113', '2', '2021-03-25 13:20:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('874', '251', '1', '1', '188', '1', 'S', '5', 'B002-0000113', '2', '2021-03-25 13:20:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('875', '252', '1', '1', '152', '10', 'S', '5', 'B002-0000114', '2', '2021-03-25 13:22:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('876', '252', '1', '1', '151', '10', 'S', '5', 'B002-0000114', '2', '2021-03-25 13:22:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('877', '252', '1', '1', '188', '1', 'S', '5', 'B002-0000114', '2', '2021-03-25 13:22:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('878', '253', '1', '1', '151', '10', 'S', '5', 'B002-0000115', '2', '2021-03-25 13:25:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('879', '253', '1', '1', '152', '10', 'S', '5', 'B002-0000115', '2', '2021-03-25 13:25:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('880', '253', '1', '1', '146', '5', 'S', '5', 'B002-0000115', '2', '2021-03-25 13:25:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('881', '253', '1', '1', '145', '5', 'S', '5', 'B002-0000115', '2', '2021-03-25 13:25:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('882', '253', '1', '1', '147', '2', 'S', '5', 'B002-0000115', '2', '2021-03-25 13:25:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('883', '253', '1', '1', '148', '2', 'S', '5', 'B002-0000115', '2', '2021-03-25 13:25:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('884', '253', '1', '1', '188', '1', 'S', '5', 'B002-0000115', '2', '2021-03-25 13:25:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('885', '254', '1', '1', '148', '96', 'S', '5', 'F002-0000090', '2', '2021-03-25 13:31:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('886', '254', '1', '1', '145', '132', 'S', '5', 'F002-0000090', '2', '2021-03-25 13:31:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('887', '254', '1', '1', '146', '48', 'S', '5', 'F002-0000090', '2', '2021-03-25 13:31:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('888', '254', '1', '1', '147', '72', 'S', '5', 'F002-0000090', '2', '2021-03-25 13:31:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('889', '254', '1', '1', '149', '36', 'S', '5', 'F002-0000090', '2', '2021-03-25 13:31:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('890', '254', '1', '1', '150', '36', 'S', '5', 'F002-0000090', '2', '2021-03-25 13:31:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('891', '254', '1', '1', '152', '96', 'S', '5', 'F002-0000090', '2', '2021-03-25 13:31:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('892', '255', '1', '1', '148', '90', 'S', '5', 'F002-0000091', '2', '2021-03-25 13:38:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('893', '255', '1', '1', '145', '72', 'S', '5', 'F002-0000091', '2', '2021-03-25 13:38:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('894', '255', '1', '1', '146', '30', 'S', '5', 'F002-0000091', '2', '2021-03-25 13:38:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('895', '255', '1', '1', '147', '36', 'S', '5', 'F002-0000091', '2', '2021-03-25 13:38:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('896', '256', '1', '1', '152', '60', 'S', '5', 'F002-0000092', '2', '2021-03-25 15:17:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('897', '256', '1', '1', '154', '18', 'S', '5', 'F002-0000092', '2', '2021-03-25 15:17:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('898', '256', '1', '1', '146', '18', 'S', '5', 'F002-0000092', '2', '2021-03-25 15:17:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('899', '256', '1', '1', '145', '36', 'S', '5', 'F002-0000092', '2', '2021-03-25 15:17:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('900', '256', '1', '1', '147', '18', 'S', '5', 'F002-0000092', '2', '2021-03-25 15:17:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('901', '256', '1', '1', '148', '36', 'S', '5', 'F002-0000092', '2', '2021-03-25 15:17:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('902', '257', '1', '1', '145', '6', 'S', '5', 'B002-0000116', '2', '2021-03-25 15:23:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('903', '257', '1', '1', '146', '6', 'S', '5', 'B002-0000116', '2', '2021-03-25 15:23:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('904', '257', '1', '1', '147', '6', 'S', '5', 'B002-0000116', '2', '2021-03-25 15:23:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('905', '257', '1', '1', '148', '6', 'S', '5', 'B002-0000116', '2', '2021-03-25 15:23:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('906', '257', '1', '1', '149', '6', 'S', '5', 'B002-0000116', '2', '2021-03-25 15:23:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('907', '257', '1', '1', '150', '6', 'S', '5', 'B002-0000116', '2', '2021-03-25 15:23:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('908', '257', '1', '1', '188', '1', 'S', '5', 'B002-0000116', '2', '2021-03-25 15:23:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('909', '259', '1', '1', '155', '1', 'S', '5', 'B002-0000117', '2', '2021-03-26 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('910', '259', '1', '1', '154', '12', 'S', '5', 'B002-0000117', '2', '2021-03-26 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('911', '259', '1', '1', '152', '20', 'S', '5', 'B002-0000117', '2', '2021-03-26 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('912', '259', '1', '1', '188', '1', 'S', '5', 'B002-0000117', '2', '2021-03-26 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('913', '260', '1', '1', '154', '1', 'S', '5', 'B002-0000118', '2', '2021-03-26 08:46:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('914', '260', '1', '1', '148', '18', 'S', '5', 'B002-0000118', '2', '2021-03-26 08:46:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('915', '260', '1', '1', '152', '3', 'S', '5', 'B002-0000118', '2', '2021-03-26 08:46:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('916', '260', '1', '1', '150', '6', 'S', '5', 'B002-0000118', '2', '2021-03-26 08:46:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('917', '260', '1', '1', '149', '6', 'S', '5', 'B002-0000118', '2', '2021-03-26 08:46:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('918', '260', '1', '1', '188', '1', 'S', '5', 'B002-0000118', '2', '2021-03-26 08:46:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('919', '261', '1', '1', '155', '3', 'S', '5', 'B002-0000119', '2', '2021-03-26 08:50:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('920', '261', '1', '1', '151', '3', 'S', '5', 'B002-0000119', '2', '2021-03-26 08:50:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('921', '261', '1', '1', '188', '1', 'S', '5', 'B002-0000119', '2', '2021-03-26 08:50:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('922', '262', '1', '1', '155', '2', 'S', '5', 'B002-0000120', '2', '2021-03-26 08:55:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('923', '262', '1', '1', '154', '2', 'S', '5', 'B002-0000120', '2', '2021-03-26 08:55:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('924', '262', '1', '1', '152', '2', 'S', '5', 'B002-0000120', '2', '2021-03-26 08:55:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('925', '262', '1', '1', '145', '3', 'S', '5', 'B002-0000120', '2', '2021-03-26 08:55:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('926', '262', '1', '1', '146', '3', 'S', '5', 'B002-0000120', '2', '2021-03-26 08:55:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('927', '262', '1', '1', '188', '1', 'S', '5', 'B002-0000120', '2', '2021-03-26 08:55:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('928', '263', '1', '1', '155', '7', 'S', '5', 'F002-0000094', '2', '2021-03-26 09:21:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('929', '264', '1', '1', '146', '6', 'S', '5', 'B002-0000121', '2', '2021-03-26 09:24:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('930', '265', '1', '1', '146', '1', 'S', '5', 'B002-0000122', '2', '2021-03-26 09:25:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('931', '266', '1', '1', '151', '30', 'S', '5', 'B002-0000123', '2', '2021-03-26 09:26:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('932', '267', '1', '1', '148', '12', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('933', '267', '1', '1', '145', '12', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('934', '267', '1', '1', '147', '12', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('935', '267', '1', '1', '149', '6', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('936', '267', '1', '1', '150', '6', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('937', '267', '1', '1', '152', '12', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('938', '267', '1', '1', '154', '4', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('939', '267', '1', '1', '155', '4', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('940', '267', '1', '1', '151', '12', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('941', '267', '1', '1', '146', '12', 'S', '5', 'F002-0000095', '2', '2021-03-30 12:37:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('942', '268', '1', '1', '148', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('943', '268', '1', '1', '145', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('944', '268', '1', '1', '147', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('945', '268', '1', '1', '146', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('946', '268', '1', '1', '149', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('947', '268', '1', '1', '150', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('948', '268', '1', '1', '152', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('949', '268', '1', '1', '155', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('950', '268', '1', '1', '154', '1', 'S', '5', 'F002-0000096', '2', '2021-03-30 13:03:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('951', '270', '1', '1', '155', '36', 'S', '5', 'F002-0000098', '2', '2021-03-31 08:58:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('952', '270', '1', '1', '154', '36', 'S', '5', 'F002-0000098', '2', '2021-03-31 08:58:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('953', '270', '1', '1', '146', '144', 'S', '5', 'F002-0000098', '2', '2021-03-31 08:58:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('954', '270', '1', '1', '145', '144', 'S', '5', 'F002-0000098', '2', '2021-03-31 08:58:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('955', '271', '1', '1', '155', '6', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('956', '271', '1', '1', '154', '12', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('957', '271', '1', '1', '146', '25', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('958', '271', '1', '1', '145', '25', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('959', '271', '1', '1', '147', '25', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('960', '271', '1', '1', '148', '25', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('961', '271', '1', '1', '150', '20', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('962', '271', '1', '1', '149', '20', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('963', '271', '1', '1', '152', '12', 'S', '5', 'F002-0000099', '2', '2021-03-31 09:19:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('964', '272', '1', '1', '149', '12', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('965', '272', '1', '1', '150', '12', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('966', '272', '1', '1', '146', '12', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('967', '272', '1', '1', '145', '12', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('968', '272', '1', '1', '147', '12', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('969', '272', '1', '1', '148', '12', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('970', '272', '1', '1', '152', '16', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('971', '272', '1', '1', '155', '6', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('972', '272', '1', '1', '154', '6', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('973', '272', '1', '1', '151', '12', 'S', '5', 'F002-0000100', '2', '2021-03-31 09:27:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('974', '273', '1', '1', '155', '48', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('975', '273', '1', '1', '154', '25', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('976', '273', '1', '1', '146', '576', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('977', '273', '1', '1', '145', '2016', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('978', '273', '1', '1', '147', '576', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('979', '273', '1', '1', '150', '144', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('980', '273', '1', '1', '149', '144', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('981', '273', '1', '1', '152', '168', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('982', '273', '1', '1', '148', '576', 'S', '5', 'B002-0000124', '2', '2021-03-31 11:05:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('983', '273', '1', '1', '155', '48', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('984', '273', '1', '1', '154', '25', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('985', '273', '1', '1', '146', '576', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('986', '273', '1', '1', '145', '2016', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('987', '273', '1', '1', '147', '576', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('988', '273', '1', '1', '150', '144', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('989', '273', '1', '1', '149', '144', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('990', '273', '1', '1', '152', '168', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('991', '273', '1', '1', '148', '576', 'I', '3', 'B002-0000124', '2', '2021-03-31 11:05:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('992', '274', '1', '1', '155', '48', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('993', '274', '1', '1', '154', '24', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('994', '274', '1', '1', '146', '576', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('995', '274', '1', '1', '145', '2016', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('996', '274', '1', '1', '147', '576', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('997', '274', '1', '1', '148', '576', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('998', '274', '1', '1', '150', '144', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('999', '274', '1', '1', '149', '144', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1000', '274', '1', '1', '152', '168', 'S', '5', 'F002-0000101', '2', '2021-03-31 11:09:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1001', '275', '1', '1', '156', '9416', 'S', '5', 'B002-0000125', '2', '2021-03-31 12:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1002', '276', '1', '1', '152', '36', 'S', '5', 'F002-0000102', '2', '2021-04-05 16:06:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1003', '276', '1', '1', '145', '17', 'S', '5', 'F002-0000102', '2', '2021-04-05 16:06:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1004', '276', '1', '1', '147', '15', 'S', '5', 'F002-0000102', '2', '2021-04-05 16:06:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1005', '276', '1', '1', '148', '15', 'S', '5', 'F002-0000102', '2', '2021-04-05 16:06:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1006', '276', '1', '1', '146', '15', 'S', '5', 'F002-0000102', '2', '2021-04-05 16:06:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1007', '277', '1', '1', '151', '3', 'S', '5', 'B002-0000126', '2', '2021-04-05 16:11:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1008', '278', '1', '1', '145', '2', 'S', '5', 'F002-0000103', '2', '2021-04-05 16:18:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1009', '278', '1', '1', '147', '2', 'S', '5', 'F002-0000103', '2', '2021-04-05 16:18:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1010', '278', '1', '1', '148', '2', 'S', '5', 'F002-0000103', '2', '2021-04-05 16:18:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1011', '278', '1', '1', '146', '2', 'S', '5', 'F002-0000103', '2', '2021-04-05 16:18:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1012', '279', '1', '1', '150', '12', 'S', '5', 'F002-0000104', '2', '2021-04-05 16:21:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1013', '280', '1', '1', '151', '6', 'S', '5', 'B002-0000127', '2', '2021-04-05 16:24:09', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1014', '281', '1', '1', '148', '2160', 'S', '5', 'F002-0000105', '2', '2021-04-06 15:19:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1015', '282', '1', '1', '153', '3', 'S', '5', 'B002-0000128', '2', '2021-04-06 17:14:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1016', '282', '1', '1', '148', '5', 'S', '5', 'B002-0000128', '2', '2021-04-06 17:14:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1017', '282', '1', '1', '145', '5', 'S', '5', 'B002-0000128', '2', '2021-04-06 17:14:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1018', '282', '1', '1', '147', '4', 'S', '5', 'B002-0000128', '2', '2021-04-06 17:14:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1019', '282', '1', '1', '146', '4', 'S', '5', 'B002-0000128', '2', '2021-04-06 17:14:19', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1020', '284', '1', '1', '145', '10', 'S', '5', 'B002-0000130', '2', '2021-04-06 17:29:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1021', '284', '1', '1', '148', '10', 'S', '5', 'B002-0000130', '2', '2021-04-06 17:29:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1022', '284', '1', '1', '147', '8', 'S', '5', 'B002-0000130', '2', '2021-04-06 17:29:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1023', '284', '1', '1', '146', '8', 'S', '5', 'B002-0000130', '2', '2021-04-06 17:29:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1024', '285', '1', '1', '148', '2160', 'S', '5', 'F002-0000106', '2', '2021-04-07 10:23:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1025', '286', '1', '1', '194', '1', 'S', '5', 'F002-0000107', '2', '2021-04-07 10:37:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1026', '286', '1', '1', '153', '1', 'S', '5', 'F002-0000107', '2', '2021-04-07 10:37:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1027', '287', '1', '1', '145', '6', 'S', '5', 'F002-0000108', '2', '2021-04-07 16:00:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1028', '287', '1', '1', '147', '6', 'S', '5', 'F002-0000108', '2', '2021-04-07 16:00:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1029', '287', '1', '1', '146', '6', 'S', '5', 'F002-0000108', '2', '2021-04-07 16:00:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1030', '287', '1', '1', '148', '6', 'S', '5', 'F002-0000108', '2', '2021-04-07 16:00:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1031', '288', '1', '1', '145', '1', 'S', '5', 'B002-0000131', '2', '2021-04-07 16:04:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1032', '288', '1', '1', '147', '2', 'S', '5', 'B002-0000131', '2', '2021-04-07 16:04:48', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1033', '289', '1', '1', '145', '4', 'S', '5', 'B002-0000132', '2', '2021-04-07 16:06:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1034', '289', '1', '1', '147', '5', 'S', '5', 'B002-0000132', '2', '2021-04-07 16:06:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1035', '290', '1', '1', '146', '6', 'S', '5', 'B002-0000133', '2', '2021-04-07 16:08:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1036', '291', '1', '1', '148', '1', 'S', '5', 'B002-0000134', '2', '2021-04-07 16:10:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1037', '292', '1', '1', '147', '18', 'S', '5', 'B002-0000135', '2', '2021-04-07 16:12:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1038', '293', '1', '1', '145', '6', 'S', '5', 'B002-0000136', '2', '2021-04-08 15:11:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1039', '293', '1', '1', '147', '6', 'S', '5', 'B002-0000136', '2', '2021-04-08 15:11:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1040', '294', '1', '1', '145', '6', 'S', '5', 'B002-0000137', '2', '2021-04-08 15:12:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1041', '294', '1', '1', '148', '6', 'S', '5', 'B002-0000137', '2', '2021-04-08 15:12:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1042', '295', '1', '1', '145', '2', 'S', '5', 'B002-0000138', '2', '2021-04-08 15:16:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1043', '295', '1', '1', '147', '2', 'S', '5', 'B002-0000138', '2', '2021-04-08 15:16:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1044', '295', '1', '1', '148', '2', 'S', '5', 'B002-0000138', '2', '2021-04-08 15:16:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1045', '295', '1', '1', '146', '1', 'S', '5', 'B002-0000138', '2', '2021-04-08 15:16:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1046', '296', '1', '1', '147', '6', 'S', '5', 'B002-0000139', '2', '2021-04-08 15:18:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1047', '297', '1', '1', '145', '6', 'S', '5', 'B002-0000140', '2', '2021-04-08 15:20:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1048', '297', '1', '1', '147', '6', 'S', '5', 'B002-0000140', '2', '2021-04-08 15:20:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1049', '298', '1', '1', '145', '2', 'S', '5', 'B002-0000141', '2', '2021-04-08 15:24:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1050', '299', '1', '1', '148', '1', 'S', '5', 'B002-0000142', '2', '2021-04-08 15:30:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1051', '300', '1', '1', '145', '2', 'S', '5', 'B002-0000143', '2', '2021-04-08 15:32:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1052', '300', '1', '1', '146', '2', 'S', '5', 'B002-0000143', '2', '2021-04-08 15:32:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1053', '300', '1', '1', '148', '2', 'S', '5', 'B002-0000143', '2', '2021-04-08 15:32:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1054', '301', '1', '1', '151', '1', 'S', '5', 'B002-0000144', '2', '2021-04-08 15:35:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1055', '301', '1', '1', '151', '1', 'I', '3', 'B002-0000144', '2', '2021-04-08 15:35:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1056', '302', '1', '1', '151', '1', 'S', '5', 'F002-0000109', '2', '2021-04-08 15:35:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1057', '303', '1', '1', '145', '2', 'S', '5', 'F002-0000110', '2', '2021-04-08 15:38:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1058', '303', '1', '1', '146', '2', 'S', '5', 'F002-0000110', '2', '2021-04-08 15:38:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1059', '303', '1', '1', '147', '2', 'S', '5', 'F002-0000110', '2', '2021-04-08 15:38:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1060', '303', '1', '1', '148', '2', 'S', '5', 'F002-0000110', '2', '2021-04-08 15:38:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1061', '304', '1', '1', '146', '167', 'S', '5', 'F002-0000111', '2', '2021-04-09 09:07:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1062', '304', '1', '1', '145', '167', 'S', '5', 'F002-0000111', '2', '2021-04-09 09:07:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1063', '305', '1', '1', '147', '5', 'S', '5', 'B002-0000145', '2', '2021-04-09 09:14:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1064', '305', '1', '1', '145', '5', 'S', '5', 'B002-0000145', '2', '2021-04-09 09:14:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1065', '305', '1', '1', '149', '5', 'S', '5', 'B002-0000145', '2', '2021-04-09 09:14:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1066', '305', '1', '1', '154', '2', 'S', '5', 'B002-0000145', '2', '2021-04-09 09:14:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1067', '305', '1', '1', '188', '1', 'S', '5', 'B002-0000145', '2', '2021-04-09 09:14:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1068', '306', '1', '1', '147', '6', 'S', '5', 'B002-0000146', '2', '2021-04-09 09:19:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1069', '306', '1', '1', '145', '6', 'S', '5', 'B002-0000146', '2', '2021-04-09 09:19:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1070', '306', '1', '1', '146', '6', 'S', '5', 'B002-0000146', '2', '2021-04-09 09:19:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1071', '306', '1', '1', '148', '6', 'S', '5', 'B002-0000146', '2', '2021-04-09 09:19:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1072', '306', '1', '1', '188', '1', 'S', '5', 'B002-0000146', '2', '2021-04-09 09:19:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1073', '307', '1', '1', '148', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1074', '307', '1', '1', '145', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1075', '307', '1', '1', '147', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1076', '307', '1', '1', '146', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1077', '307', '1', '1', '152', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1078', '307', '1', '1', '150', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1079', '307', '1', '1', '149', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1080', '307', '1', '1', '155', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1081', '307', '1', '1', '154', '12', 'S', '5', 'F002-0000112', '2', '2021-04-09 09:25:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1082', '308', '1', '1', '148', '150', 'S', '5', 'F002-0000113', '2', '2021-04-09 09:36:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1083', '308', '1', '1', '145', '150', 'S', '5', 'F002-0000113', '2', '2021-04-09 09:36:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1084', '308', '1', '1', '147', '150', 'S', '5', 'F002-0000113', '2', '2021-04-09 09:36:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1085', '308', '1', '1', '146', '150', 'S', '5', 'F002-0000113', '2', '2021-04-09 09:36:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1086', '308', '1', '1', '155', '12', 'S', '5', 'F002-0000113', '2', '2021-04-09 09:36:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1087', '308', '1', '1', '149', '16', 'S', '5', 'F002-0000113', '2', '2021-04-09 09:36:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1088', '308', '1', '1', '150', '16', 'S', '5', 'F002-0000113', '2', '2021-04-09 09:36:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1089', '309', '1', '1', '148', '200', 'S', '5', 'F002-0000114', '2', '2021-04-09 09:41:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1090', '309', '1', '1', '145', '200', 'S', '5', 'F002-0000114', '2', '2021-04-09 09:41:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1091', '309', '1', '1', '147', '200', 'S', '5', 'F002-0000114', '2', '2021-04-09 09:41:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1092', '309', '1', '1', '146', '200', 'S', '5', 'F002-0000114', '2', '2021-04-09 09:41:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1093', '309', '1', '1', '155', '16', 'S', '5', 'F002-0000114', '2', '2021-04-09 09:41:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1094', '309', '1', '1', '154', '16', 'S', '5', 'F002-0000114', '2', '2021-04-09 09:41:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1095', '309', '1', '1', '152', '50', 'S', '5', 'F002-0000114', '2', '2021-04-09 09:41:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1096', '310', '1', '1', '155', '12', 'S', '5', 'F002-0000115', '2', '2021-04-09 09:55:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1097', '310', '1', '1', '154', '12', 'S', '5', 'F002-0000115', '2', '2021-04-09 09:55:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1098', '311', '1', '1', '154', '4', 'S', '5', 'B002-0000147', '2', '2021-04-09 09:58:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1099', '311', '1', '1', '188', '1', 'S', '5', 'B002-0000147', '2', '2021-04-09 09:58:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1100', '312', '1', '1', '148', '6', 'S', '5', 'B002-0000148', '2', '2021-04-09 10:01:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1101', '312', '1', '1', '147', '6', 'S', '5', 'B002-0000148', '2', '2021-04-09 10:01:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1102', '312', '1', '1', '146', '6', 'S', '5', 'B002-0000148', '2', '2021-04-09 10:01:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1103', '312', '1', '1', '145', '6', 'S', '5', 'B002-0000148', '2', '2021-04-09 10:01:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1104', '312', '1', '1', '150', '6', 'S', '5', 'B002-0000148', '2', '2021-04-09 10:01:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1105', '312', '1', '1', '149', '6', 'S', '5', 'B002-0000148', '2', '2021-04-09 10:01:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1106', '312', '1', '1', '188', '1', 'S', '5', 'B002-0000148', '2', '2021-04-09 10:01:29', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1107', '313', '1', '1', '148', '6', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1108', '313', '1', '1', '147', '6', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1109', '313', '1', '1', '146', '6', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1110', '313', '1', '1', '145', '6', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1111', '313', '1', '1', '150', '6', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1112', '313', '1', '1', '149', '6', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1113', '313', '1', '1', '152', '3', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1114', '313', '1', '1', '151', '1', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1115', '313', '1', '1', '188', '1', 'S', '5', 'B002-0000149', '2', '2021-04-09 10:03:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1116', '314', '1', '1', '148', '30', 'S', '5', 'B002-0000150', '2', '2021-04-09 10:05:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1117', '314', '1', '1', '151', '15', 'S', '5', 'B002-0000150', '2', '2021-04-09 10:05:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1118', '314', '1', '1', '154', '4', 'S', '5', 'B002-0000150', '2', '2021-04-09 10:05:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1119', '314', '1', '1', '188', '1', 'S', '5', 'B002-0000150', '2', '2021-04-09 10:05:23', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1120', '315', '1', '1', '148', '6', 'S', '5', 'F002-0000116', '2', '2021-04-09 10:08:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1121', '315', '1', '1', '145', '6', 'S', '5', 'F002-0000116', '2', '2021-04-09 10:08:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1122', '315', '1', '1', '147', '12', 'S', '5', 'F002-0000116', '2', '2021-04-09 10:08:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1123', '315', '1', '1', '146', '12', 'S', '5', 'F002-0000116', '2', '2021-04-09 10:08:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1124', '315', '1', '1', '155', '12', 'S', '5', 'F002-0000116', '2', '2021-04-09 10:08:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1125', '315', '1', '1', '154', '12', 'S', '5', 'F002-0000116', '2', '2021-04-09 10:08:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1126', '316', '1', '1', '30', '3500', 'S', '5', 'B002-0000151', '2', '2021-04-09 11:31:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1127', '317', '1', '1', '150', '6', 'S', '5', 'F002-0000117', '2', '2021-04-09 13:15:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1128', '317', '1', '1', '155', '7', 'S', '5', 'F002-0000117', '2', '2021-04-09 13:15:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1129', '317', '1', '1', '154', '3', 'S', '5', 'F002-0000117', '2', '2021-04-09 13:15:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1130', '317', '1', '1', '150', '6', 'I', '3', 'F002-0000117', '2', '2021-04-09 13:15:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1131', '317', '1', '1', '155', '7', 'I', '3', 'F002-0000117', '2', '2021-04-09 13:15:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1132', '317', '1', '1', '154', '3', 'I', '3', 'F002-0000117', '2', '2021-04-09 13:15:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1133', '318', '1', '1', '150', '6', 'S', '5', 'F002-0000118', '2', '2021-04-09 13:15:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1134', '319', '1', '1', '155', '7', 'S', '5', 'B002-0000152', '2', '2021-04-09 13:16:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1135', '319', '1', '1', '154', '3', 'S', '5', 'B002-0000152', '2', '2021-04-09 13:16:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1136', '320', '1', '1', '145', '2', 'S', '5', 'B002-0000153', '2', '2021-04-09 13:18:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1137', '320', '1', '1', '150', '2', 'S', '5', 'B002-0000153', '2', '2021-04-09 13:18:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1138', '320', '1', '1', '147', '2', 'S', '5', 'B002-0000153', '2', '2021-04-09 13:18:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1139', '320', '1', '1', '148', '2', 'S', '5', 'B002-0000153', '2', '2021-04-09 13:18:41', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1140', '321', '1', '1', '150', '12', 'S', '5', 'B002-0000154', '2', '2021-04-09 13:19:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1141', '322', '1', '1', '145', '3', 'S', '5', 'B002-0000155', '2', '2021-04-09 13:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1142', '322', '1', '1', '147', '3', 'S', '5', 'B002-0000155', '2', '2021-04-09 13:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1143', '322', '1', '1', '148', '3', 'S', '5', 'B002-0000155', '2', '2021-04-09 13:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1144', '322', '1', '1', '146', '3', 'S', '5', 'B002-0000155', '2', '2021-04-09 13:21:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1145', '323', '1', '1', '145', '6', 'S', '5', 'B002-0000156', '2', '2021-04-09 13:23:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1146', '323', '1', '1', '150', '6', 'S', '5', 'B002-0000156', '2', '2021-04-09 13:23:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1147', '323', '1', '1', '147', '6', 'S', '5', 'B002-0000156', '2', '2021-04-09 13:23:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1148', '323', '1', '1', '148', '6', 'S', '5', 'B002-0000156', '2', '2021-04-09 13:23:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1149', '323', '1', '1', '146', '6', 'S', '5', 'B002-0000156', '2', '2021-04-09 13:23:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1150', '324', '1', '1', '145', '6', 'S', '5', 'B002-0000157', '2', '2021-04-09 13:24:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1151', '324', '1', '1', '146', '6', 'S', '5', 'B002-0000157', '2', '2021-04-09 13:24:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1152', '325', '1', '1', '145', '3', 'S', '5', 'B002-0000158', '2', '2021-04-09 13:25:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1153', '325', '1', '1', '150', '3', 'S', '5', 'B002-0000158', '2', '2021-04-09 13:25:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1154', '325', '1', '1', '147', '3', 'S', '5', 'B002-0000158', '2', '2021-04-09 13:25:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1155', '325', '1', '1', '148', '3', 'S', '5', 'B002-0000158', '2', '2021-04-09 13:25:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1156', '325', '1', '1', '146', '3', 'S', '5', 'B002-0000158', '2', '2021-04-09 13:25:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1157', '325', '1', '1', '145', '3', 'I', '3', 'B002-0000158', '2', '2021-04-09 16:55:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1158', '325', '1', '1', '150', '3', 'I', '3', 'B002-0000158', '2', '2021-04-09 16:55:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1159', '325', '1', '1', '147', '3', 'I', '3', 'B002-0000158', '2', '2021-04-09 16:55:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1160', '325', '1', '1', '148', '3', 'I', '3', 'B002-0000158', '2', '2021-04-09 16:55:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1161', '325', '1', '1', '146', '3', 'I', '3', 'B002-0000158', '2', '2021-04-09 16:55:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1162', '326', '1', '1', '145', '3', 'S', '5', 'F002-0000119', '2', '2021-04-09 16:56:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1163', '326', '1', '1', '150', '3', 'S', '5', 'F002-0000119', '2', '2021-04-09 16:56:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1164', '326', '1', '1', '147', '3', 'S', '5', 'F002-0000119', '2', '2021-04-09 16:56:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1165', '326', '1', '1', '148', '3', 'S', '5', 'F002-0000119', '2', '2021-04-09 16:56:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1166', '326', '1', '1', '146', '3', 'S', '5', 'F002-0000119', '2', '2021-04-09 16:56:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1167', '327', '1', '1', '147', '5', 'S', '5', 'F002-0000120', '2', '2021-04-12 09:58:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1168', '327', '1', '1', '148', '6', 'S', '5', 'F002-0000120', '2', '2021-04-12 09:58:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1169', '328', '1', '1', '145', '6', 'S', '5', 'B002-0000159', '2', '2021-04-12 09:59:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1170', '329', '1', '1', '155', '3', 'S', '5', 'F002-0000121', '2', '2021-04-12 10:31:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1171', '329', '1', '1', '154', '3', 'S', '5', 'F002-0000121', '2', '2021-04-12 10:31:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1172', '330', '1', '1', '155', '2', 'S', '5', 'B002-0000160', '2', '2021-04-12 10:33:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1173', '331', '1', '1', '151', '2', 'S', '5', 'F002-0000122', '2', '2021-04-12 10:36:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1174', '332', '1', '1', '155', '2', 'S', '5', 'B002-0000161', '2', '2021-04-12 10:39:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1175', '332', '1', '1', '154', '2', 'S', '5', 'B002-0000161', '2', '2021-04-12 10:39:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1176', '333', '1', '1', '150', '24', 'S', '5', 'F002-0000123', '2', '2021-04-12 10:44:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1177', '334', '1', '1', '152', '2', 'S', '5', 'B002-0000162', '2', '2021-04-12 10:58:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1178', '334', '1', '1', '145', '6', 'S', '5', 'B002-0000162', '2', '2021-04-12 10:58:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1179', '334', '1', '1', '155', '1', 'S', '5', 'B002-0000162', '2', '2021-04-12 10:58:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1180', '334', '1', '1', '146', '6', 'S', '5', 'B002-0000162', '2', '2021-04-12 10:58:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1181', '334', '1', '1', '151', '5', 'S', '5', 'B002-0000162', '2', '2021-04-12 10:58:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1182', '335', '1', '1', '145', '3', 'S', '5', 'F002-0000124', '2', '2021-04-12 11:03:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1183', '335', '1', '1', '147', '3', 'S', '5', 'F002-0000124', '2', '2021-04-12 11:03:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1184', '335', '1', '1', '148', '3', 'S', '5', 'F002-0000124', '2', '2021-04-12 11:03:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1185', '336', '1', '1', '152', '24', 'S', '5', 'B002-0000163', '2', '2021-04-12 11:19:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1186', '337', '1', '1', '145', '3', 'S', '5', 'B002-0000164', '2', '2021-04-12 11:23:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1187', '337', '1', '1', '147', '3', 'S', '5', 'B002-0000164', '2', '2021-04-12 11:23:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1188', '337', '1', '1', '148', '3', 'S', '5', 'B002-0000164', '2', '2021-04-12 11:23:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1189', '338', '1', '1', '152', '6', 'S', '5', 'F002-0000125', '2', '2021-04-12 11:25:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1190', '339', '1', '1', '155', '252', 'S', '5', 'F002-0000126', '2', '2021-04-12 11:45:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1191', '339', '1', '1', '154', '120', 'S', '5', 'F002-0000126', '2', '2021-04-12 11:45:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1192', '339', '1', '1', '145', '2736', 'S', '5', 'F002-0000126', '2', '2021-04-12 11:45:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1193', '339', '1', '1', '148', '1440', 'S', '5', 'F002-0000126', '2', '2021-04-12 11:45:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1194', '339', '1', '1', '146', '720', 'S', '5', 'F002-0000126', '2', '2021-04-12 11:45:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1195', '339', '1', '1', '147', '1440', 'S', '5', 'F002-0000126', '2', '2021-04-12 11:45:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1196', '339', '1', '1', '150', '432', 'S', '5', 'F002-0000126', '2', '2021-04-12 11:45:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1197', '339', '1', '1', '152', '168', 'S', '5', 'F002-0000126', '2', '2021-04-12 11:45:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1198', '340', '1', '1', '154', '1', 'S', '5', 'B002-0000165', '2', '2021-04-13 09:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1199', '340', '1', '1', '145', '18', 'S', '5', 'B002-0000165', '2', '2021-04-13 09:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1200', '340', '1', '1', '152', '3', 'S', '5', 'B002-0000165', '2', '2021-04-13 09:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1201', '340', '1', '1', '150', '1', 'S', '5', 'B002-0000165', '2', '2021-04-13 09:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1202', '340', '1', '1', '149', '1', 'S', '5', 'B002-0000165', '2', '2021-04-13 09:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1203', '340', '1', '1', '188', '1', 'S', '5', 'B002-0000165', '2', '2021-04-13 09:59:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1204', '341', '1', '1', '155', '8', 'S', '5', 'B002-0000166', '2', '2021-04-13 10:01:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1205', '341', '1', '1', '145', '5', 'S', '5', 'B002-0000166', '2', '2021-04-13 10:01:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1206', '341', '1', '1', '149', '5', 'S', '5', 'B002-0000166', '2', '2021-04-13 10:01:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1207', '341', '1', '1', '188', '1', 'S', '5', 'B002-0000166', '2', '2021-04-13 10:01:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1208', '342', '1', '1', '155', '2', 'S', '5', 'B002-0000167', '2', '2021-04-13 10:02:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1209', '342', '1', '1', '151', '2', 'S', '5', 'B002-0000167', '2', '2021-04-13 10:02:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1210', '342', '1', '1', '152', '2', 'S', '5', 'B002-0000167', '2', '2021-04-13 10:02:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1211', '342', '1', '1', '188', '1', 'S', '5', 'B002-0000167', '2', '2021-04-13 10:02:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1212', '343', '1', '1', '155', '3', 'S', '5', 'F002-0000127', '2', '2021-04-13 14:07:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1213', '343', '1', '1', '154', '3', 'S', '5', 'F002-0000127', '2', '2021-04-13 14:07:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1214', '344', '1', '1', '155', '1', 'S', '5', 'B002-0000168', '2', '2021-04-13 14:09:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1215', '345', '1', '1', '155', '3', 'S', '5', 'F002-0000128', '2', '2021-04-13 14:11:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1216', '345', '1', '1', '154', '3', 'S', '5', 'F002-0000128', '2', '2021-04-13 14:11:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1217', '346', '1', '1', '148', '1', 'S', '5', 'B002-0000169', '2', '2021-04-13 14:12:43', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1218', '347', '1', '1', '155', '2', 'S', '5', 'B002-0000170', '2', '2021-04-13 14:13:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1219', '347', '1', '1', '150', '13', 'S', '5', 'B002-0000170', '2', '2021-04-13 14:13:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1220', '348', '1', '1', '155', '12', 'S', '5', 'F002-0000129', '2', '2021-04-13 14:14:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1221', '348', '1', '1', '154', '12', 'S', '5', 'F002-0000129', '2', '2021-04-13 14:14:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1222', '349', '1', '1', '155', '2', 'S', '5', 'B002-0000171', '2', '2021-04-13 14:15:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1223', '349', '1', '1', '154', '2', 'S', '5', 'B002-0000171', '2', '2021-04-13 14:15:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1224', '350', '1', '1', '155', '2', 'S', '5', 'F002-0000130', '2', '2021-04-13 14:17:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1225', '350', '1', '1', '154', '2', 'S', '5', 'F002-0000130', '2', '2021-04-13 14:17:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1226', '351', '1', '1', '155', '3', 'S', '5', 'F002-0000131', '2', '2021-04-13 14:18:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1227', '351', '1', '1', '154', '3', 'S', '5', 'F002-0000131', '2', '2021-04-13 14:18:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1228', '352', '1', '1', '155', '3', 'S', '5', 'F002-0000132', '2', '2021-04-13 14:20:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1229', '352', '1', '1', '154', '3', 'S', '5', 'F002-0000132', '2', '2021-04-13 14:20:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1230', '353', '1', '1', '155', '1', 'S', '5', 'B002-0000172', '2', '2021-04-13 14:22:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1231', '354', '1', '1', '155', '3', 'S', '5', 'B002-0000173', '2', '2021-04-13 14:30:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1232', '354', '1', '1', '154', '3', 'S', '5', 'B002-0000173', '2', '2021-04-13 14:30:01', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1233', '354', '1', '1', '155', '3', 'I', '3', 'B002-0000173', '2', '2021-04-13 14:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1234', '354', '1', '1', '154', '3', 'I', '3', 'B002-0000173', '2', '2021-04-13 14:31:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1235', '355', '1', '1', '155', '3', 'S', '5', 'F002-0000133', '2', '2021-04-13 14:32:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1236', '355', '1', '1', '154', '3', 'S', '5', 'F002-0000133', '2', '2021-04-13 14:32:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1237', '356', '1', '1', '148', '1', 'S', '5', 'B002-0000174', '2', '2021-04-13 14:40:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1238', '357', '1', '1', '155', '2', 'S', '5', 'B002-0000175', '2', '2021-04-13 14:44:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1239', '357', '1', '1', '150', '13', 'S', '5', 'B002-0000175', '2', '2021-04-13 14:44:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1240', '358', '1', '1', '155', '12', 'S', '5', 'F002-0000134', '2', '2021-04-13 15:01:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1241', '358', '1', '1', '154', '12', 'S', '5', 'F002-0000134', '2', '2021-04-13 15:01:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1242', '359', '1', '1', '155', '2', 'S', '5', 'B002-0000176', '2', '2021-04-13 15:02:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1243', '359', '1', '1', '154', '2', 'S', '5', 'B002-0000176', '2', '2021-04-13 15:02:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1244', '360', '1', '1', '155', '2', 'S', '5', 'F002-0000135', '2', '2021-04-13 15:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1245', '360', '1', '1', '154', '2', 'S', '5', 'F002-0000135', '2', '2021-04-13 15:07:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1246', '361', '1', '1', '155', '3', 'S', '5', 'F002-0000136', '2', '2021-04-13 15:09:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1247', '361', '1', '1', '154', '3', 'S', '5', 'F002-0000136', '2', '2021-04-13 15:09:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1248', '361', '1', '1', '155', '3', 'I', '3', 'F002-0000136', '2', '2021-04-13 15:14:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1249', '361', '1', '1', '154', '3', 'I', '3', 'F002-0000136', '2', '2021-04-13 15:14:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1250', '360', '1', '1', '155', '2', 'I', '3', 'F002-0000135', '2', '2021-04-13 15:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1251', '360', '1', '1', '154', '2', 'I', '3', 'F002-0000135', '2', '2021-04-13 15:14:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1252', '359', '1', '1', '155', '2', 'I', '3', 'B002-0000176', '2', '2021-04-13 15:14:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1253', '359', '1', '1', '154', '2', 'I', '3', 'B002-0000176', '2', '2021-04-13 15:14:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1254', '358', '1', '1', '155', '12', 'I', '3', 'F002-0000134', '2', '2021-04-13 15:14:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1255', '358', '1', '1', '154', '12', 'I', '3', 'F002-0000134', '2', '2021-04-13 15:14:51', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1256', '357', '1', '1', '155', '2', 'I', '3', 'B002-0000175', '2', '2021-04-13 15:14:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1257', '357', '1', '1', '150', '13', 'I', '3', 'B002-0000175', '2', '2021-04-13 15:14:59', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1258', '356', '1', '1', '148', '1', 'I', '3', 'B002-0000174', '2', '2021-04-13 15:15:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1259', '355', '1', '1', '155', '3', 'I', '3', 'F002-0000133', '2', '2021-04-13 15:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1260', '355', '1', '1', '154', '3', 'I', '3', 'F002-0000133', '2', '2021-04-13 15:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1261', '353', '1', '1', '155', '1', 'I', '3', 'B002-0000172', '2', '2021-04-13 15:15:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1262', '352', '1', '1', '155', '3', 'I', '3', 'F002-0000132', '2', '2021-04-13 15:15:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1263', '352', '1', '1', '154', '3', 'I', '3', 'F002-0000132', '2', '2021-04-13 15:15:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1264', '362', '1', '1', '148', '2880', 'S', '5', 'B002-0000177', '2', '2021-04-13 16:05:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1265', '362', '1', '1', '148', '2880', 'I', '3', 'B002-0000177', '2', '2021-04-13 16:11:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1266', '363', '1', '1', '148', '2880', 'S', '5', 'F002-0000137', '2', '2021-04-13 16:12:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1267', '364', '1', '1', '155', '12', 'S', '5', 'F002-0000138', '2', '2021-04-14 09:28:20', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1268', '365', '1', '1', '146', '4', 'S', '5', 'B002-0000178', '2', '2021-04-14 09:38:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1269', '366', '1', '1', '145', '4', 'S', '5', 'F002-0000139', '2', '2021-04-14 09:42:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1270', '366', '1', '1', '148', '4', 'S', '5', 'F002-0000139', '2', '2021-04-14 09:42:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1271', '366', '1', '1', '146', '4', 'S', '5', 'F002-0000139', '2', '2021-04-14 09:42:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1272', '367', '1', '1', '155', '5', 'S', '5', 'B002-0000179', '2', '2021-04-14 09:49:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1273', '367', '1', '1', '154', '6', 'S', '5', 'B002-0000179', '2', '2021-04-14 09:49:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1274', '368', '1', '1', '145', '2', 'S', '5', 'B002-0000180', '2', '2021-04-15 14:53:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1275', '368', '1', '1', '146', '2', 'S', '5', 'B002-0000180', '2', '2021-04-15 14:53:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1276', '368', '1', '1', '148', '2', 'S', '5', 'B002-0000180', '2', '2021-04-15 14:53:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1277', '368', '1', '1', '150', '2', 'S', '5', 'B002-0000180', '2', '2021-04-15 14:53:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1278', '369', '1', '1', '154', '2', 'S', '5', 'B002-0000181', '2', '2021-04-15 14:55:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1279', '369', '1', '1', '154', '2', 'I', '3', 'B002-0000181', '2', '2021-04-15 14:55:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1280', '370', '1', '1', '154', '2', 'S', '5', 'F002-0000140', '2', '2021-04-15 14:56:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1281', '371', '1', '1', '154', '2', 'S', '5', 'B002-0000182', '2', '2021-04-15 14:57:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1282', '372', '1', '1', '150', '5', 'S', '5', 'B002-0000183', '2', '2021-04-15 15:13:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1283', '372', '1', '1', '149', '6', 'S', '5', 'B002-0000183', '2', '2021-04-15 15:13:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1284', '373', '1', '1', '145', '10', 'S', '5', 'F002-0000141', '2', '2021-04-16 14:01:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1285', '373', '1', '1', '146', '10', 'S', '5', 'F002-0000141', '2', '2021-04-16 14:01:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1286', '373', '1', '1', '148', '10', 'S', '5', 'F002-0000141', '2', '2021-04-16 14:01:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1287', '373', '1', '1', '150', '10', 'S', '5', 'F002-0000141', '2', '2021-04-16 14:01:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1288', '373', '1', '1', '154', '6', 'S', '5', 'F002-0000141', '2', '2021-04-16 14:01:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1289', '374', '1', '1', '154', '3', 'S', '5', 'B002-0000184', '2', '2021-04-16 14:04:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1290', '375', '1', '1', '154', '1', 'S', '5', 'B002-0000185', '2', '2021-04-16 14:13:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1291', '376', '1', '1', '154', '2', 'S', '5', 'B002-0000186', '2', '2021-04-16 14:18:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1292', '376', '1', '1', '146', '6', 'S', '5', 'B002-0000186', '2', '2021-04-16 14:18:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1293', '377', '1', '1', '145', '3', 'S', '5', 'F002-0000142', '2', '2021-04-16 14:21:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1294', '377', '1', '1', '146', '3', 'S', '5', 'F002-0000142', '2', '2021-04-16 14:21:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1295', '377', '1', '1', '148', '4', 'S', '5', 'F002-0000142', '2', '2021-04-16 14:21:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1296', '377', '1', '1', '154', '1', 'S', '5', 'F002-0000142', '2', '2021-04-16 14:21:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1297', '378', '1', '1', '154', '2', 'S', '5', 'B002-0000187', '2', '2021-04-16 14:27:18', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1298', '379', '1', '1', '145', '4', 'S', '5', 'B002-0000188', '2', '2021-04-16 14:31:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1299', '379', '1', '1', '150', '4', 'S', '5', 'B002-0000188', '2', '2021-04-16 14:31:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1300', '380', '1', '1', '155', '132', 'S', '5', 'B002-0000189', '2', '2021-04-19 12:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1301', '380', '1', '1', '154', '120', 'S', '5', 'B002-0000189', '2', '2021-04-19 12:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1302', '380', '1', '1', '145', '2016', 'S', '5', 'B002-0000189', '2', '2021-04-19 12:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1303', '380', '1', '1', '148', '720', 'S', '5', 'B002-0000189', '2', '2021-04-19 12:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1304', '380', '1', '1', '146', '720', 'S', '5', 'B002-0000189', '2', '2021-04-19 12:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1305', '380', '1', '1', '147', '1152', 'S', '5', 'B002-0000189', '2', '2021-04-19 12:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1306', '380', '1', '1', '152', '168', 'S', '5', 'B002-0000189', '2', '2021-04-19 12:00:58', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1307', '380', '1', '1', '155', '132', 'I', '3', 'B002-0000189', '2', '2021-04-19 12:31:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1308', '380', '1', '1', '154', '120', 'I', '3', 'B002-0000189', '2', '2021-04-19 12:31:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1309', '380', '1', '1', '145', '2016', 'I', '3', 'B002-0000189', '2', '2021-04-19 12:31:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1310', '380', '1', '1', '148', '720', 'I', '3', 'B002-0000189', '2', '2021-04-19 12:31:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1311', '380', '1', '1', '146', '720', 'I', '3', 'B002-0000189', '2', '2021-04-19 12:31:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1312', '380', '1', '1', '147', '1152', 'I', '3', 'B002-0000189', '2', '2021-04-19 12:31:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1313', '380', '1', '1', '152', '168', 'I', '3', 'B002-0000189', '2', '2021-04-19 12:31:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1314', '381', '1', '1', '155', '132', 'S', '5', 'F002-0000143', '2', '2021-04-19 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1315', '381', '1', '1', '154', '120', 'S', '5', 'F002-0000143', '2', '2021-04-19 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1316', '381', '1', '1', '145', '2016', 'S', '5', 'F002-0000143', '2', '2021-04-19 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1317', '381', '1', '1', '148', '720', 'S', '5', 'F002-0000143', '2', '2021-04-19 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1318', '381', '1', '1', '146', '720', 'S', '5', 'F002-0000143', '2', '2021-04-19 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1319', '381', '1', '1', '147', '1152', 'S', '5', 'F002-0000143', '2', '2021-04-19 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1320', '381', '1', '1', '152', '168', 'S', '5', 'F002-0000143', '2', '2021-04-19 12:38:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1321', '382', '1', '1', '154', '5', 'S', '5', 'B002-0000190', '2', '2021-04-20 13:25:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1322', '382', '1', '1', '188', '1', 'S', '5', 'B002-0000190', '2', '2021-04-20 13:25:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1323', '383', '1', '1', '148', '24', 'S', '5', 'F002-0000144', '2', '2021-04-20 13:30:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1324', '383', '1', '1', '147', '24', 'S', '5', 'F002-0000144', '2', '2021-04-20 13:30:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1325', '383', '1', '1', '145', '24', 'S', '5', 'F002-0000144', '2', '2021-04-20 13:30:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1326', '383', '1', '1', '146', '24', 'S', '5', 'F002-0000144', '2', '2021-04-20 13:30:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1327', '383', '1', '1', '150', '6', 'S', '5', 'F002-0000144', '2', '2021-04-20 13:30:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1328', '383', '1', '1', '152', '60', 'S', '5', 'F002-0000144', '2', '2021-04-20 13:30:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1329', '383', '1', '1', '151', '24', 'S', '5', 'F002-0000144', '2', '2021-04-20 13:30:02', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1330', '384', '1', '1', '148', '6', 'S', '5', 'B002-0000191', '2', '2021-04-20 13:32:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1331', '384', '1', '1', '147', '6', 'S', '5', 'B002-0000191', '2', '2021-04-20 13:32:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1332', '384', '1', '1', '145', '6', 'S', '5', 'B002-0000191', '2', '2021-04-20 13:32:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1333', '384', '1', '1', '146', '6', 'S', '5', 'B002-0000191', '2', '2021-04-20 13:32:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1334', '384', '1', '1', '188', '1', 'S', '5', 'B002-0000191', '2', '2021-04-20 13:32:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1335', '385', '1', '1', '148', '3600', 'S', '5', 'F002-0000145', '2', '2021-04-20 13:36:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1336', '385', '1', '1', '148', '3600', 'I', '3', 'F002-0000145', '2', '2021-04-20 13:37:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1337', '386', '1', '1', '148', '3600', 'S', '5', 'F002-0000146', '2', '2021-04-20 13:37:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1338', '387', '1', '1', '148', '31', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1339', '387', '1', '1', '145', '24', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1340', '387', '1', '1', '146', '15', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1341', '387', '1', '1', '147', '15', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1342', '387', '1', '1', '150', '10', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1343', '387', '1', '1', '149', '10', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1344', '387', '1', '1', '152', '24', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1345', '387', '1', '1', '155', '12', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1346', '387', '1', '1', '154', '18', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1347', '387', '1', '1', '151', '12', 'S', '5', 'F002-0000147', '2', '2021-04-23 09:55:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1348', '388', '1', '1', '148', '36', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1349', '388', '1', '1', '145', '24', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1350', '388', '1', '1', '146', '24', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1351', '388', '1', '1', '147', '24', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1352', '388', '1', '1', '150', '16', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1353', '388', '1', '1', '149', '16', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1354', '388', '1', '1', '152', '36', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1355', '388', '1', '1', '154', '24', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1356', '388', '1', '1', '155', '20', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1357', '388', '1', '1', '151', '24', 'S', '5', 'B002-0000192', '2', '2021-04-23 10:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1358', '388', '1', '1', '148', '36', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1359', '388', '1', '1', '145', '24', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1360', '388', '1', '1', '146', '24', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1361', '388', '1', '1', '147', '24', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1362', '388', '1', '1', '150', '16', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1363', '388', '1', '1', '149', '16', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1364', '388', '1', '1', '152', '36', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1365', '388', '1', '1', '154', '24', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1366', '388', '1', '1', '155', '20', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1367', '388', '1', '1', '151', '24', 'I', '3', 'B002-0000192', '2', '2021-04-23 10:27:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1368', '389', '1', '1', '148', '36', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1369', '389', '1', '1', '145', '24', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1370', '389', '1', '1', '146', '24', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1371', '389', '1', '1', '147', '24', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1372', '389', '1', '1', '150', '16', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1373', '389', '1', '1', '149', '16', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1374', '389', '1', '1', '152', '36', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1375', '389', '1', '1', '154', '24', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1376', '389', '1', '1', '155', '20', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1377', '389', '1', '1', '151', '24', 'S', '5', 'F002-0000148', '2', '2021-04-23 10:37:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1378', '390', '1', '1', '151', '1', 'S', '5', 'B002-0000193', '2', '2021-04-23 11:01:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1379', '390', '1', '1', '152', '1', 'S', '5', 'B002-0000193', '2', '2021-04-23 11:01:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1380', '390', '1', '1', '155', '3', 'S', '5', 'B002-0000193', '2', '2021-04-23 11:01:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1381', '390', '1', '1', '188', '1', 'S', '5', 'B002-0000193', '2', '2021-04-23 11:01:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1382', '391', '1', '1', '149', '30', 'S', '5', 'B002-0000194', '2', '2021-04-23 11:06:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1383', '391', '1', '1', '188', '1', 'S', '5', 'B002-0000194', '2', '2021-04-23 11:06:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1384', '392', '1', '1', '148', '2', 'S', '5', 'B002-0000195', '2', '2021-04-23 11:07:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1385', '392', '1', '1', '145', '2', 'S', '5', 'B002-0000195', '2', '2021-04-23 11:07:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1386', '392', '1', '1', '150', '6', 'S', '5', 'B002-0000195', '2', '2021-04-23 11:07:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1387', '392', '1', '1', '149', '6', 'S', '5', 'B002-0000195', '2', '2021-04-23 11:07:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1388', '392', '1', '1', '188', '1', 'S', '5', 'B002-0000195', '2', '2021-04-23 11:07:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1389', '393', '1', '1', '152', '30', 'S', '5', 'B002-0000196', '2', '2021-04-23 11:09:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1390', '393', '1', '1', '188', '1', 'S', '5', 'B002-0000196', '2', '2021-04-23 11:09:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1391', '394', '1', '1', '151', '6', 'S', '5', 'B002-0000197', '2', '2021-04-23 11:11:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1392', '394', '1', '1', '148', '6', 'S', '5', 'B002-0000197', '2', '2021-04-23 11:11:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1393', '394', '1', '1', '146', '2', 'S', '5', 'B002-0000197', '2', '2021-04-23 11:11:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1394', '394', '1', '1', '155', '1', 'S', '5', 'B002-0000197', '2', '2021-04-23 11:11:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1395', '394', '1', '1', '188', '1', 'S', '5', 'B002-0000197', '2', '2021-04-23 11:11:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1396', '395', '1', '1', '148', '3', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1397', '395', '1', '1', '147', '3', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1398', '395', '1', '1', '145', '3', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1399', '395', '1', '1', '146', '3', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1400', '395', '1', '1', '150', '3', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1401', '395', '1', '1', '149', '3', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1402', '395', '1', '1', '152', '6', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1403', '395', '1', '1', '155', '3', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1404', '395', '1', '1', '154', '3', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1405', '395', '1', '1', '151', '6', 'S', '5', 'F002-0000149', '2', '2021-04-23 11:20:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1406', '396', '1', '1', '146', '167', 'S', '5', 'F002-0000150', '2', '2021-04-23 16:03:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1407', '396', '1', '1', '145', '167', 'S', '5', 'F002-0000150', '2', '2021-04-23 16:03:28', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1408', '397', '1', '1', '146', '60', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1409', '397', '1', '1', '145', '60', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1410', '397', '1', '1', '147', '60', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1411', '397', '1', '1', '148', '60', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1412', '397', '1', '1', '154', '6', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1413', '397', '1', '1', '155', '6', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1414', '397', '1', '1', '152', '24', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1415', '397', '1', '1', '151', '14', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1416', '397', '1', '1', '150', '12', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1417', '397', '1', '1', '149', '24', 'S', '5', 'F002-0000151', '2', '2021-04-26 11:45:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1418', '398', '1', '1', '148', '2160', 'S', '5', 'F002-0000152', '2', '2021-04-26 15:34:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1419', '399', '1', '1', '155', '216', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1420', '399', '1', '1', '154', '120', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1421', '399', '1', '1', '145', '1176', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1422', '399', '1', '1', '148', '888', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1423', '399', '1', '1', '146', '456', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1424', '399', '1', '1', '147', '288', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1425', '399', '1', '1', '150', '168', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1426', '399', '1', '1', '149', '600', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1427', '399', '1', '1', '152', '42', 'S', '5', 'F002-0000153', '2', '2021-04-27 09:49:53', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1428', '400', '1', '1', '146', '12', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1429', '400', '1', '1', '145', '36', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1430', '400', '1', '1', '147', '24', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1431', '400', '1', '1', '148', '36', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1432', '400', '1', '1', '150', '30', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1433', '400', '1', '1', '152', '28', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1434', '400', '1', '1', '154', '18', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1435', '400', '1', '1', '155', '15', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1436', '400', '1', '1', '151', '12', 'S', '5', 'F002-0000154', '2', '2021-04-27 10:10:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1437', '401', '1', '1', '146', '6', 'S', '5', 'B002-0000198', '2', '2021-04-27 11:00:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1438', '401', '1', '1', '145', '6', 'S', '5', 'B002-0000198', '2', '2021-04-27 11:00:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1439', '401', '1', '1', '147', '4', 'S', '5', 'B002-0000198', '2', '2021-04-27 11:00:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1440', '401', '1', '1', '148', '4', 'S', '5', 'B002-0000198', '2', '2021-04-27 11:00:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1441', '401', '1', '1', '154', '3', 'S', '5', 'B002-0000198', '2', '2021-04-27 11:00:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1442', '401', '1', '1', '155', '2', 'S', '5', 'B002-0000198', '2', '2021-04-27 11:00:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1443', '401', '1', '1', '152', '10', 'S', '5', 'B002-0000198', '2', '2021-04-27 11:00:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1444', '402', '1', '1', '146', '12', 'S', '5', 'F002-0000155', '2', '2021-04-29 12:43:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1445', '402', '1', '1', '145', '24', 'S', '5', 'F002-0000155', '2', '2021-04-29 12:43:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1446', '402', '1', '1', '147', '12', 'S', '5', 'F002-0000155', '2', '2021-04-29 12:43:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1447', '402', '1', '1', '148', '36', 'S', '5', 'F002-0000155', '2', '2021-04-29 12:43:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1448', '402', '1', '1', '152', '12', 'S', '5', 'F002-0000155', '2', '2021-04-29 12:43:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1449', '402', '1', '1', '154', '6', 'S', '5', 'F002-0000155', '2', '2021-04-29 12:43:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1450', '403', '1', '1', '150', '36', 'S', '5', 'F002-0000156', '2', '2021-04-29 12:46:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1451', '403', '1', '1', '149', '36', 'S', '5', 'F002-0000156', '2', '2021-04-29 12:46:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1452', '403', '1', '1', '154', '12', 'S', '5', 'F002-0000156', '2', '2021-04-29 12:46:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1453', '404', '1', '1', '154', '10', 'S', '5', 'F002-0000157', '2', '2021-04-29 12:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1454', '404', '1', '1', '155', '6', 'S', '5', 'F002-0000157', '2', '2021-04-29 12:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1455', '404', '1', '1', '150', '6', 'S', '5', 'F002-0000157', '2', '2021-04-29 12:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1456', '404', '1', '1', '145', '10', 'S', '5', 'F002-0000157', '2', '2021-04-29 12:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1457', '404', '1', '1', '147', '8', 'S', '5', 'F002-0000157', '2', '2021-04-29 12:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1458', '404', '1', '1', '146', '12', 'S', '5', 'F002-0000157', '2', '2021-04-29 12:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1459', '404', '1', '1', '148', '12', 'S', '5', 'F002-0000157', '2', '2021-04-29 12:51:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1460', '405', '1', '1', '148', '9648', 'S', '5', 'F002-0000158', '2', '2021-04-29 13:01:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1461', '406', '1', '1', '148', '36', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1462', '406', '1', '1', '145', '36', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1463', '406', '1', '1', '146', '12', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1464', '406', '1', '1', '147', '24', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1465', '406', '1', '1', '150', '15', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1466', '406', '1', '1', '149', '15', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1467', '406', '1', '1', '152', '40', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1468', '406', '1', '1', '154', '18', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1469', '406', '1', '1', '155', '15', 'S', '5', 'F002-0000159', '2', '2021-04-29 15:10:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1470', '408', '1', '1', '147', '167', 'S', '5', 'F002-0000161', '2', '2021-04-29 16:42:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1471', '408', '1', '1', '145', '167', 'S', '5', 'F002-0000161', '2', '2021-04-29 16:42:44', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1472', '409', '1', '1', '155', '15', 'S', '5', 'F002-0000162', '2', '2021-04-30 08:37:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1473', '409', '1', '1', '148', '24', 'S', '5', 'F002-0000162', '2', '2021-04-30 08:37:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1474', '409', '1', '1', '146', '24', 'S', '5', 'F002-0000162', '2', '2021-04-30 08:37:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1475', '409', '1', '1', '147', '24', 'S', '5', 'F002-0000162', '2', '2021-04-30 08:37:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1476', '409', '1', '1', '150', '24', 'S', '5', 'F002-0000162', '2', '2021-04-30 08:37:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1477', '409', '1', '1', '152', '50', 'S', '5', 'F002-0000162', '2', '2021-04-30 08:37:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1478', '409', '1', '1', '154', '15', 'S', '5', 'F002-0000162', '2', '2021-04-30 08:37:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1479', '410', '1', '1', '148', '30', 'S', '5', 'F002-0000163', '2', '2021-04-30 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1480', '410', '1', '1', '145', '25', 'S', '5', 'F002-0000163', '2', '2021-04-30 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1481', '410', '1', '1', '146', '25', 'S', '5', 'F002-0000163', '2', '2021-04-30 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1482', '410', '1', '1', '147', '20', 'S', '5', 'F002-0000163', '2', '2021-04-30 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1483', '410', '1', '1', '150', '12', 'S', '5', 'F002-0000163', '2', '2021-04-30 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1484', '410', '1', '1', '152', '20', 'S', '5', 'F002-0000163', '2', '2021-04-30 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1485', '410', '1', '1', '154', '6', 'S', '5', 'F002-0000163', '2', '2021-04-30 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1486', '410', '1', '1', '155', '6', 'S', '5', 'F002-0000163', '2', '2021-04-30 08:43:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1487', '410', '1', '1', '148', '30', 'I', '3', 'F002-0000163', '2', '2021-04-30 10:02:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1488', '410', '1', '1', '145', '25', 'I', '3', 'F002-0000163', '2', '2021-04-30 10:02:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1489', '410', '1', '1', '146', '25', 'I', '3', 'F002-0000163', '2', '2021-04-30 10:02:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1490', '410', '1', '1', '147', '20', 'I', '3', 'F002-0000163', '2', '2021-04-30 10:02:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1491', '410', '1', '1', '150', '12', 'I', '3', 'F002-0000163', '2', '2021-04-30 10:02:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1492', '410', '1', '1', '152', '20', 'I', '3', 'F002-0000163', '2', '2021-04-30 10:02:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1493', '410', '1', '1', '154', '6', 'I', '3', 'F002-0000163', '2', '2021-04-30 10:02:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1494', '410', '1', '1', '155', '6', 'I', '3', 'F002-0000163', '2', '2021-04-30 10:02:21', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1495', '411', '1', '1', '148', '30', 'S', '5', 'F002-0000164', '2', '2021-04-30 10:09:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1496', '411', '1', '1', '145', '25', 'S', '5', 'F002-0000164', '2', '2021-04-30 10:09:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1497', '411', '1', '1', '146', '25', 'S', '5', 'F002-0000164', '2', '2021-04-30 10:09:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1498', '411', '1', '1', '147', '20', 'S', '5', 'F002-0000164', '2', '2021-04-30 10:09:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1499', '411', '1', '1', '150', '12', 'S', '5', 'F002-0000164', '2', '2021-04-30 10:09:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1500', '411', '1', '1', '152', '20', 'S', '5', 'F002-0000164', '2', '2021-04-30 10:09:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1501', '411', '1', '1', '154', '6', 'S', '5', 'F002-0000164', '2', '2021-04-30 10:09:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1502', '411', '1', '1', '155', '6', 'S', '5', 'F002-0000164', '2', '2021-04-30 10:09:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1503', '412', '1', '1', '196', '1600', 'S', '5', 'F002-0000165', '2', '2021-04-30 11:11:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1504', '413', '1', '1', '196', '1600', 'S', '5', 'F002-0000166', '2', '2021-04-30 11:16:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1505', '412', '1', '1', '196', '1600', 'I', '3', 'F002-0000165', '2', '2021-04-30 11:17:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1506', '414', '1', '1', '185', '1260', 'S', '5', 'F002-0000167', '2', '2021-04-30 15:16:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1507', '415', '1', '1', '145', '10', 'S', '5', 'B002-0000199', '2', '2021-04-30 15:21:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1508', '415', '1', '1', '147', '8', 'S', '5', 'B002-0000199', '2', '2021-04-30 15:21:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1509', '415', '1', '1', '146', '8', 'S', '5', 'B002-0000199', '2', '2021-04-30 15:21:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1510', '415', '1', '1', '148', '10', 'S', '5', 'B002-0000199', '2', '2021-04-30 15:21:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1511', '415', '1', '1', '153', '4', 'S', '5', 'B002-0000199', '2', '2021-04-30 15:21:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1512', '416', '1', '1', '148', '2880', 'S', '5', 'F002-0000168', '2', '2021-05-03 11:38:07', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1513', '417', '1', '1', '152', '10', 'S', '5', 'B002-0000200', '2', '2021-05-04 11:41:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1514', '417', '1', '1', '145', '8', 'S', '5', 'B002-0000200', '2', '2021-05-04 11:41:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1515', '417', '1', '1', '146', '1', 'S', '5', 'B002-0000200', '2', '2021-05-04 11:41:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1516', '417', '1', '1', '148', '1', 'S', '5', 'B002-0000200', '2', '2021-05-04 11:41:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1517', '417', '1', '1', '188', '1', 'S', '5', 'B002-0000200', '2', '2021-05-04 11:41:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1518', '418', '1', '1', '150', '2', 'S', '5', 'B002-0000201', '2', '2021-05-04 12:11:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1519', '418', '1', '1', '149', '2', 'S', '5', 'B002-0000201', '2', '2021-05-04 12:11:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1520', '418', '1', '1', '147', '6', 'S', '5', 'B002-0000201', '2', '2021-05-04 12:11:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1521', '418', '1', '1', '148', '5', 'S', '5', 'B002-0000201', '2', '2021-05-04 12:11:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1522', '418', '1', '1', '188', '1', 'S', '5', 'B002-0000201', '2', '2021-05-04 12:11:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1523', '419', '1', '1', '155', '168', 'S', '5', 'F002-0000169', '2', '2021-05-04 12:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1524', '419', '1', '1', '154', '156', 'S', '5', 'F002-0000169', '2', '2021-05-04 12:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1525', '419', '1', '1', '145', '1152', 'S', '5', 'F002-0000169', '2', '2021-05-04 12:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1526', '419', '1', '1', '148', '1440', 'S', '5', 'F002-0000169', '2', '2021-05-04 12:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1527', '419', '1', '1', '146', '1296', 'S', '5', 'F002-0000169', '2', '2021-05-04 12:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1528', '419', '1', '1', '147', '1584', 'S', '5', 'F002-0000169', '2', '2021-05-04 12:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1529', '419', '1', '1', '152', '42', 'S', '5', 'F002-0000169', '2', '2021-05-04 12:15:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1530', '420', '1', '1', '152', '17', 'S', '5', 'B002-0000202', '2', '2021-05-05 15:14:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1531', '420', '1', '1', '145', '5', 'S', '5', 'B002-0000202', '2', '2021-05-05 15:14:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1532', '421', '1', '1', '198', '15', 'S', '5', 'F002-0000170', '2', '2021-05-05 17:14:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1533', '422', '1', '1', '148', '24', 'S', '5', 'F002-0000171', '2', '2021-05-06 15:03:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1534', '422', '1', '1', '145', '24', 'S', '5', 'F002-0000171', '2', '2021-05-06 15:03:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1535', '422', '1', '1', '147', '24', 'S', '5', 'F002-0000171', '2', '2021-05-06 15:03:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1536', '422', '1', '1', '146', '24', 'S', '5', 'F002-0000171', '2', '2021-05-06 15:03:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1537', '422', '1', '1', '154', '40', 'S', '5', 'F002-0000171', '2', '2021-05-06 15:03:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1538', '422', '1', '1', '155', '40', 'S', '5', 'F002-0000171', '2', '2021-05-06 15:03:30', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1539', '423', '1', '1', '148', '36', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1540', '423', '1', '1', '145', '24', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1541', '423', '1', '1', '146', '12', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1542', '423', '1', '1', '147', '24', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1543', '423', '1', '1', '150', '12', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1544', '423', '1', '1', '149', '15', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1545', '423', '1', '1', '152', '24', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1546', '423', '1', '1', '154', '12', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1547', '423', '1', '1', '155', '8', 'S', '5', 'F002-0000172', '2', '2021-05-06 15:11:47', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1548', '424', '1', '1', '148', '36', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1549', '424', '1', '1', '145', '36', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1550', '424', '1', '1', '146', '36', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1551', '424', '1', '1', '147', '36', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1552', '424', '1', '1', '150', '6', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1553', '424', '1', '1', '149', '6', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1554', '424', '1', '1', '152', '48', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1555', '424', '1', '1', '154', '6', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1556', '424', '1', '1', '155', '6', 'S', '5', 'F002-0000173', '2', '2021-05-10 09:20:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1557', '425', '1', '1', '153', '100', 'S', '5', 'F002-0000174', '2', '2021-05-10 12:09:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1558', '425', '1', '1', '145', '100', 'S', '5', 'F002-0000174', '2', '2021-05-10 12:09:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1559', '425', '1', '1', '153', '100', 'I', '3', 'F002-0000174', '2', '2021-05-10 12:09:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1560', '425', '1', '1', '145', '100', 'I', '3', 'F002-0000174', '2', '2021-05-10 12:09:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1561', '426', '1', '1', '148', '100', 'S', '5', 'F002-0000175', '2', '2021-05-10 15:06:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1562', '426', '1', '1', '177', '50', 'S', '5', 'F002-0000175', '2', '2021-05-10 15:06:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1563', '426', '1', '1', '148', '100', 'I', '3', 'F002-0000175', '2', '2021-05-10 15:06:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1564', '426', '1', '1', '177', '50', 'I', '3', 'F002-0000175', '2', '2021-05-10 15:06:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1565', '427', '1', '1', '182', '16', 'S', '5', 'F002-0000176', '2', '2021-05-11 15:22:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1566', '428', '1', '1', '147', '167', 'S', '5', 'F002-0000177', '2', '2021-05-12 14:14:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1567', '428', '1', '1', '145', '167', 'S', '5', 'F002-0000177', '2', '2021-05-12 14:14:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1568', '429', '1', '1', '148', '2880', 'S', '5', 'F002-0000178', '2', '2021-05-12 14:27:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1569', '430', '1', '1', '155', '240', 'S', '5', 'F002-0000179', '2', '2021-05-12 17:32:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1570', '430', '1', '1', '154', '240', 'S', '5', 'F002-0000179', '2', '2021-05-12 17:32:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1571', '430', '1', '1', '145', '1008', 'S', '5', 'F002-0000179', '2', '2021-05-12 17:32:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1572', '430', '1', '1', '148', '864', 'S', '5', 'F002-0000179', '2', '2021-05-12 17:32:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1573', '430', '1', '1', '146', '1296', 'S', '5', 'F002-0000179', '2', '2021-05-12 17:32:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1574', '430', '1', '1', '147', '1440', 'S', '5', 'F002-0000179', '2', '2021-05-12 17:32:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1575', '430', '1', '1', '152', '42', 'S', '5', 'F002-0000179', '2', '2021-05-12 17:32:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1576', '430', '1', '1', '150', '288', 'S', '5', 'F002-0000179', '2', '2021-05-12 17:32:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1577', '431', '1', '1', '148', '6480', 'S', '5', 'F002-0000180', '2', '2021-05-13 14:45:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1578', '432', '1', '1', '150', '18', 'S', '5', 'B002-0000203', '2', '2021-05-13 17:07:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1579', '432', '1', '1', '149', '18', 'S', '5', 'B002-0000203', '2', '2021-05-13 17:07:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1580', '433', '1', '1', '145', '12', 'S', '5', 'F002-0000181', '2', '2021-05-13 17:12:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1581', '433', '1', '1', '147', '12', 'S', '5', 'F002-0000181', '2', '2021-05-13 17:12:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1582', '433', '1', '1', '148', '18', 'S', '5', 'F002-0000181', '2', '2021-05-13 17:12:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1583', '433', '1', '1', '154', '18', 'S', '5', 'F002-0000181', '2', '2021-05-13 17:12:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1584', '433', '1', '1', '152', '90', 'S', '5', 'F002-0000181', '2', '2021-05-13 17:12:46', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1585', '434', '1', '1', '145', '25', 'S', '5', 'B002-0000204', '2', '2021-05-14 10:18:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1586', '434', '1', '1', '152', '20', 'S', '5', 'B002-0000204', '2', '2021-05-14 10:18:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1587', '435', '1', '1', '145', '7', 'S', '5', 'B002-0000205', '2', '2021-05-14 15:12:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1588', '435', '1', '1', '146', '5', 'S', '5', 'B002-0000205', '2', '2021-05-14 15:12:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1589', '435', '1', '1', '147', '10', 'S', '5', 'B002-0000205', '2', '2021-05-14 15:12:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1590', '435', '1', '1', '148', '10', 'S', '5', 'B002-0000205', '2', '2021-05-14 15:12:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1591', '435', '1', '1', '155', '1', 'S', '5', 'B002-0000205', '2', '2021-05-14 15:12:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1592', '435', '1', '1', '154', '1', 'S', '5', 'B002-0000205', '2', '2021-05-14 15:12:32', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1593', '436', '1', '1', '145', '167', 'S', '5', 'F002-0000182', '2', '2021-05-17 12:28:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1594', '436', '1', '1', '147', '167', 'S', '5', 'F002-0000182', '2', '2021-05-17 12:28:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1595', '437', '1', '1', '145', '25', 'S', '5', 'F002-0000183', '2', '2021-05-19 10:22:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1596', '437', '1', '1', '147', '25', 'S', '5', 'F002-0000183', '2', '2021-05-19 10:22:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1597', '437', '1', '1', '149', '20', 'S', '5', 'F002-0000183', '2', '2021-05-19 10:22:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1598', '437', '1', '1', '146', '25', 'S', '5', 'F002-0000183', '2', '2021-05-19 10:22:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1599', '437', '1', '1', '150', '20', 'S', '5', 'F002-0000183', '2', '2021-05-19 10:22:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1600', '437', '1', '1', '155', '12', 'S', '5', 'F002-0000183', '2', '2021-05-19 10:22:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1601', '437', '1', '1', '154', '6', 'S', '5', 'F002-0000183', '2', '2021-05-19 10:22:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1602', '437', '1', '1', '152', '6', 'S', '5', 'F002-0000183', '2', '2021-05-19 10:22:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1603', '438', '1', '1', '152', '10', 'S', '5', 'F002-0000184', '2', '2021-05-19 10:46:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1604', '438', '1', '1', '175', '10', 'S', '5', 'F002-0000184', '2', '2021-05-19 10:46:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1605', '438', '1', '1', '176', '10', 'S', '5', 'F002-0000184', '2', '2021-05-19 10:46:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1606', '438', '1', '1', '199', '10', 'S', '5', 'F002-0000184', '2', '2021-05-19 10:46:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1607', '438', '1', '1', '155', '8', 'S', '5', 'F002-0000184', '2', '2021-05-19 10:46:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1608', '438', '1', '1', '154', '8', 'S', '5', 'F002-0000184', '2', '2021-05-19 10:46:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1609', '439', '1', '1', '155', '12', 'S', '5', 'F002-0000185', '2', '2021-05-19 10:54:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1610', '439', '1', '1', '154', '12', 'S', '5', 'F002-0000185', '2', '2021-05-19 10:54:08', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1611', '440', '1', '1', '149', '6', 'S', '5', 'B002-0000206', '2', '2021-05-19 14:08:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1612', '440', '1', '1', '150', '12', 'S', '5', 'B002-0000206', '2', '2021-05-19 14:08:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1613', '441', '1', '1', '148', '2880', 'S', '5', 'F002-0000186', '2', '2021-05-19 14:11:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1614', '442', '1', '1', '155', '276', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1615', '442', '1', '1', '154', '168', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1616', '442', '1', '1', '145', '2592', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1617', '442', '1', '1', '148', '3744', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1618', '442', '1', '1', '147', '2160', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1619', '442', '1', '1', '146', '1872', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1620', '442', '1', '1', '150', '432', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1621', '442', '1', '1', '149', '144', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1622', '442', '1', '1', '152', '126', 'S', '5', 'F002-0000187', '2', '2021-05-19 17:29:37', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1623', '443', '1', '1', '145', '144', 'S', '5', 'F002-0000188', '2', '2021-05-20 10:29:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1624', '443', '1', '1', '146', '144', 'S', '5', 'F002-0000188', '2', '2021-05-20 10:29:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1625', '443', '1', '1', '147', '144', 'S', '5', 'F002-0000188', '2', '2021-05-20 10:29:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1626', '443', '1', '1', '148', '144', 'S', '5', 'F002-0000188', '2', '2021-05-20 10:29:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1627', '0', '1', '1', '1', '3', 'I', '6', '1', '1', '2021-06-01 17:07:48', '0', '0000-00-00 00:00:00', '1', '1');
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1628', '0', '1', '4', '1', '5', 'S', '5', '1', '1', '2021-06-01 17:13:45', '0', '0000-00-00 00:00:00', '1', '2');
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1629', '0', '1', '4', '1', '10', 'I', '0', 'xxxx', '1', '2021-06-01 20:37:44', '0', '0000-00-00 00:00:00', '1', '4');
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1630', '0', '1', '1', '1', '12', 'I', '2', '324', '1', '2021-06-08 00:12:16', '0', '0000-00-00 00:00:00', '1', '6');
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1631', '0', '1', '1', '3', '5', 'I', '3', '11111111', '1', '2021-06-10 00:06:54', '0', '0000-00-00 00:00:00', '1', '7');
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1632', '0', '1', '1', '2', '13', 'I', '1', '222222', '1', '2021-06-11 13:27:17', '0', '0000-00-00 00:00:00', '1', '8');
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1633', '0', '1', '1', '1', '13', 'I', '1', '333333333', '1', '2021-06-11 13:57:08', '0', '0000-00-00 00:00:00', '1', '9');
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1634', '444', '1', '1', '206', '1', 'S', '5', 'B002-0000207', '1', '2021-07-06 20:00:26', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1635', '445', '1', '1', '3', '1', 'S', '5', 'B002-0000208', '1', '2021-08-13 11:11:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1636', '445', '1', '1', '32', '1', 'S', '5', 'B002-0000208', '1', '2021-08-13 11:11:03', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1637', '447', '1', '1', '204', '1', 'S', '5', 'F002-0000191', '1', '2021-10-16 15:21:38', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1638', '448', '1', '1', '204', '1', 'S', '5', 'F002-0000192', '1', '2021-10-16 15:22:34', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1639', '451', '1', '1', '12', '3000', 'S', '5', 'F002-0000193', '1', '2021-10-18 14:10:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1640', '453', '1', '1', '196', '1', 'S', '5', 'B002-0000211', '1', '2021-10-26 10:50:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1641', '453', '1', '1', '204', '1', 'S', '5', 'B002-0000211', '1', '2021-10-26 10:50:57', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1642', '0', '1', '1', '208', '10', 'I', '1', '1', '1', '2021-11-01 20:55:26', '0', '0000-00-00 00:00:00', '1', '10');
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1643', '455', '1', '1', '196', '1', 'S', '5', 'F002-0000194', '1', '2022-05-16 13:36:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1644', '455', '1', '1', '207', '1', 'S', '5', 'F002-0000194', '1', '2022-05-16 13:36:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1645', '455', '1', '1', '200', '1', 'S', '5', 'F002-0000194', '1', '2022-05-16 13:36:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1646', '458', '1', '1', '78', '3', 'S', '5', 'B002-0000212', '1', '2022-06-03 16:48:14', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1647', '464', '1', '1', '25', '1', 'S', '5', 'B002-0000213', '1', '2022-06-05 19:08:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1648', '2546', '1', '1', '14', '1', 'S', '5', 'F002-0000195', '1', '2022-12-16 11:17:04', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1649', '2548', '1', '1', '25', '1', 'S', '5', 'B002-0000215', '1', '2022-12-16 12:45:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1650', '2565', '1', '1', '100', '1', 'S', '5', 'F002-0000196', '1', '2022-12-29 02:21:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1651', '2578', '1', '1', '34', '1', 'S', '5', 'F002-0000197', '1', '2022-12-29 22:35:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1652', '2578', '1', '1', '15', '1', 'S', '5', 'F002-0000197', '1', '2022-12-29 22:35:49', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1653', '2581', '1', '1', '115', '1', 'S', '5', 'F002-0000198', '1', '2022-12-29 22:55:17', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1654', '2585', '1', '1', '25', '1', 'S', '5', 'F002-0000199', '1', '2023-01-04 22:16:55', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1655', '2586', '1', '1', '196', '1', 'S', '5', 'F002-0000200', '1', '2023-01-04 23:58:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1656', '2587', '1', '1', '196', '1', 'S', '5', 'B002-0000216', '1', '2023-01-05 00:00:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1657', '2588', '1', '1', '198', '1', 'S', '5', 'F002-0000201', '1', '2023-01-05 00:00:40', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1658', '2589', '1', '1', '198', '1', 'S', '5', 'F002-0000202', '1', '2023-01-05 00:01:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1659', '2590', '1', '1', '198', '1', 'S', '5', 'F002-0000203', '1', '2023-01-05 00:02:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1660', '2590', '1', '1', '14', '1', 'S', '5', 'F002-0000203', '1', '2023-01-05 00:02:31', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1661', '2591', '1', '1', '198', '1', 'S', '5', 'NV001-0001', '1', '2023-01-05 00:03:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1662', '2591', '1', '1', '14', '1', 'S', '5', 'NV001-0001', '1', '2023-01-05 00:03:00', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1663', '2592', '1', '1', '50', '1', 'S', '5', 'F002-0000204', '1', '2023-01-05 00:03:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1664', '2593', '1', '1', '10', '1', 'S', '5', 'F002-0000205', '1', '2023-01-05 11:40:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1665', '2593', '1', '1', '204', '10', 'S', '5', 'F002-0000205', '1', '2023-01-05 11:40:54', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1666', '2594', '1', '1', '10', '1', 'S', '5', 'F002-0000206', '1', '2023-01-05 19:07:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1667', '2594', '1', '1', '204', '10', 'S', '5', 'F002-0000206', '1', '2023-01-05 19:07:22', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1668', '2596', '1', '1', '29', '10', 'S', '5', 'F002-0000207', '1', '2023-01-05 19:08:24', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1669', '2597', '1', '1', '50', '1', 'S', '5', 'F002-0000208', '1', '2023-01-05 20:58:11', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1670', '2598', '1', '1', '10', '1', 'S', '5', 'F002-0000209', '1', '2023-01-05 21:07:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1671', '2598', '1', '1', '204', '10', 'S', '5', 'F002-0000209', '1', '2023-01-05 21:07:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1672', '2603', '1', '1', '11', '1', 'S', '5', 'F002-0000210', '1', '2023-01-27 14:40:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1673', '2603', '1', '1', '16', '1', 'S', '5', 'F002-0000210', '1', '2023-01-27 14:40:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1674', '2603', '1', '1', '112', '1', 'S', '5', 'F002-0000210', '1', '2023-01-27 14:40:52', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1675', '2604', '1', '1', '196', '1', 'S', '5', 'B002-0000217', '1', '2023-01-27 14:41:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1676', '2604', '1', '1', '195', '1', 'S', '5', 'B002-0000217', '1', '2023-01-27 14:41:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1677', '2604', '1', '1', '197', '1', 'S', '5', 'B002-0000217', '1', '2023-01-27 14:41:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1678', '2605', '1', '1', '13', '1', 'S', '5', 'F002-0000211', '1', '2023-01-27 14:42:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1679', '2605', '1', '1', '198', '1', 'S', '5', 'F002-0000211', '1', '2023-01-27 14:42:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1680', '2605', '1', '1', '195', '1', 'S', '5', 'F002-0000211', '1', '2023-01-27 14:42:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1681', '2621', '1', '1', '30', '1', 'S', '5', 'F002-0000212', '1', '2023-06-28 17:51:16', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1682', '2622', '1', '1', '25', '1', 'S', '5', 'F002-0000213', '1', '2023-06-28 17:56:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1683', '2622', '1', '1', '30', '1', 'S', '5', 'F002-0000213', '1', '2023-06-28 17:56:50', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1684', '2623', '1', '1', '73', '1', 'S', '5', 'F002-0000214', '1', '2023-06-28 17:58:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1685', '2623', '1', '1', '35', '1', 'S', '5', 'F002-0000214', '1', '2023-06-28 17:58:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1686', '2623', '1', '1', '30', '1', 'S', '5', 'F002-0000214', '1', '2023-06-28 17:58:36', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1687', '2624', '1', '1', '82', '1', 'S', '5', 'F002-0000215', '1', '2023-06-28 18:02:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1688', '2624', '1', '1', '61', '1', 'S', '5', 'F002-0000215', '1', '2023-06-28 18:02:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1689', '2624', '1', '1', '35', '1', 'S', '5', 'F002-0000215', '1', '2023-06-28 18:02:42', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1690', '2625', '1', '1', '25', '45', 'S', '5', 'F002-0000216', '1', '2023-06-28 18:11:56', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1691', '2626', '1', '1', '73', '99', 'S', '5', 'F002-0000217', '1', '2023-06-28 18:28:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1692', '2626', '1', '1', '73', '20', 'S', '5', 'F002-0000217', '1', '2023-06-28 18:28:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1693', '2626', '1', '1', '82', '21', 'S', '5', 'F002-0000217', '1', '2023-06-28 18:28:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1694', '2626', '1', '1', '43', '4', 'S', '5', 'F002-0000217', '1', '2023-06-28 18:28:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1695', '2626', '1', '1', '4', '45', 'S', '5', 'F002-0000217', '1', '2023-06-28 18:28:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1696', '2627', '1', '1', '38', '134', 'S', '5', 'F002-0000218', '1', '2023-06-28 18:41:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1697', '2627', '1', '1', '30', '112', 'S', '5', 'F002-0000218', '1', '2023-06-28 18:41:25', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1698', '2628', '1', '1', '11', '1', 'S', '5', 'F002-0000219', '1', '2023-06-29 22:08:13', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1699', '2629', '1', '1', '4', '1', 'S', '5', 'F002-0000220', '1', '2023-06-30 11:03:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1700', '2629', '1', '1', '1', '1', 'S', '5', 'F002-0000220', '1', '2023-06-30 11:03:06', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1701', '2630', '1', '1', '32', '1', 'S', '5', 'F002-0000221', '1', '2023-06-30 11:14:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1702', '2630', '1', '1', '4', '1', 'S', '5', 'F002-0000221', '1', '2023-06-30 11:14:35', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1703', '2631', '1', '1', '11', '1', 'S', '5', 'F002-0000222', '1', '2023-07-03 21:32:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1704', '2632', '1', '1', '2', '1', 'S', '5', 'F002-0000223', '1', '2023-07-03 21:34:27', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1705', '2633', '1', '1', '11', '1', 'S', '5', 'F002-0000224', '1', '2023-07-03 21:37:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1706', '2634', '1', '1', '32', '1', 'S', '5', 'F002-0000225', '1', '2023-07-03 21:40:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1707', '2634', '1', '1', '82', '1', 'S', '5', 'F002-0000225', '1', '2023-07-03 21:40:05', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1708', '2635', '1', '1', '11', '1', 'S', '5', 'F002-0000226', '1', '2023-07-03 21:40:10', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1709', '2636', '1', '1', '25', '1', 'S', '5', 'F002-0000227', '1', '2023-07-06 21:14:15', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1710', '2637', '1', '1', '1', '1', 'S', '5', 'F002-0000228', '1', '2023-07-06 21:58:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1711', '2640', '1', '1', '4', '1', 'S', '5', 'B002-0000219', '1', '2023-08-09 02:04:39', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1712', '2641', '1', '1', '32', '1', 'S', '5', 'B002-0000220', '1', '2023-08-09 02:05:12', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1713', '2640', '1', '1', '4', '1', 'I', '3', 'B002-0000219', '1', '2023-08-09 02:09:33', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1714', '2642', '1', '1', '30', '1', 'S', '5', 'B002-0000221', '1', '2023-08-09 02:12:45', NULL, NULL, '1', NULL);
INSERT INTO `tec_product_mov` (`id`, `origin_id`, `local_id`, `warehouse_id`, `product_id`, `cant`, `tipo`, `idMotivo`, `ref`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`, `warehouseguide_detail_id`) VALUES ('1715', '2643', '1', '1', '61', '1', 'S', '5', 'F002-0000230', '1', '2023-08-09 02:13:50', NULL, NULL, '1', NULL);


#
# TABLE STRUCTURE FOR: tec_products
#

DROP TABLE IF EXISTS `tec_products`;

CREATE TABLE `tec_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` char(255) NOT NULL,
  `category_id` int(11) NOT NULL DEFAULT '1',
  `currency` varchar(3) DEFAULT NULL,
  `price` decimal(25,2) NOT NULL,
  `image` varchar(255) DEFAULT 'no_image.png',
  `tax` varchar(20) DEFAULT '0',
  `cost` decimal(25,2) DEFAULT NULL,
  `tax_method` tinyint(1) DEFAULT '1',
  `quantity` decimal(15,2) DEFAULT '0.00',
  `barcode_symbology` varchar(20) NOT NULL DEFAULT 'code39',
  `type` varchar(20) NOT NULL DEFAULT 'standard',
  `details` text,
  `alert_quantity` decimal(10,2) DEFAULT '0.00',
  `maker_id` int(11) DEFAULT NULL,
  `custom_field_1` varchar(250) DEFAULT NULL,
  `custom_field_2` varchar(250) DEFAULT NULL,
  `custom_field_3` varchar(250) DEFAULT NULL,
  `presentation` varchar(250) DEFAULT NULL,
  `estado` int(11) DEFAULT '1',
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` timestamp NULL DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` timestamp NULL DEFAULT NULL,
  `short_name` varchar(50) NOT NULL,
  `requires_lot_number` int(10) NOT NULL DEFAULT '0',
  `requires_serial_number` int(10) NOT NULL DEFAULT '0',
  `brand_id` int(11) DEFAULT NULL,
  `model_id` int(11) DEFAULT NULL,
  `unit_measure_id` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `category_id` (`category_id`),
  KEY `category_id_2` (`category_id`),
  KEY `category_id_3` (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=367 DEFAULT CHARSET=utf8;

INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '130', 'TAPA PLÁSTICA CELESTE MAQUILA AGUA D.A.M.', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '30.00', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '153', 'TAPA PLÁSTICA ROJA MAQUILA AGUA D.A.M.', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', '172', 'TAPA PLÁSTICA TRANSPARENTE MAQUILA AGUA D.A.M.', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', '223', 'TAPA PLÁSTICA CAF CELESTE', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '27.87', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('5', '224', 'TAPA PLÁSTICA CAF ROJA', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '10.50', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('6', '226', 'TAPA PLÁSTICA CSD6 AZUL', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('7', '227', 'TAPA PLÁSTICA CSD6 NARANJA', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '88.40', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('8', '229', 'TAPA ROSCA D-45 C/ANILLO AZUL', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('9', '252', 'TAPA PLÁSTICA CSD6 VIOLETA', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('10', '285', 'TAPA PLÁSTICA CSD6 BLANCA HOLITA', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '20.80', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('11', '287', 'TAPA PLÁSTICA NARANJA MAQUILA AGUA D.A.M.', '2', 'USD', '0.01', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '16', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('12', '247', 'BOLSA DE POLIPROPILENO (PARA DISPLAYS)', '2', 'PEN', '0.24', 'no_image.png', '0', '0.00', '0', '1.70', 'code39', 'standard', NULL, '0.00', '18', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('13', '207', 'PREFORMA CRISTAL 17.7GR PET HOLO', '2', 'USD', '27.90', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '20', NULL, NULL, NULL, 'MILLLARES', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('14', '209', 'PREFORMA CRISTAL 19.7GR PET HOLO', '2', 'USD', '32.70', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '20', NULL, NULL, NULL, 'MILLLARES', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('15', '206', 'PREFORMA CRISTAL 15.7GR PET HOLO', '2', 'USD', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '20', NULL, NULL, NULL, 'MILLLARES', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('16', '267', 'PREFORMA CRISTAL 14.5GR PET MAQUILA D.A.M', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '120.00', 'code39', 'standard', NULL, '0.00', '20', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('17', '275', 'PREFORMA CRISTAL 17.7GR PET NORCOLA', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '20', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('18', '51', 'BOBINA DE LÁMINA TERMOCONTRAIBLE 560MM x 64MIC', '2', 'USD', '1.65', 'no_image.png', '0', '0.00', '0', '370.90', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('19', '37', 'BOBINA DE BARRA DE QUINUA CON MANI Y CHOCOLATE', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '85.87', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '0', '1', NULL, '2', '2021-02-02 07:40:31', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('20', '38', 'BOBINA DE BARRA DE QUINUA CON MANI Y NARANJA', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '162.84', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '0', '1', NULL, '2', '2021-02-02 07:40:45', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('21', '39', 'BOBINA DE BARRA DE QUINUA CON MANI Y PASAS', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '132.66', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '0', '1', NULL, '2', '2021-02-02 07:40:56', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('22', '40', 'BOBINA DE BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '105.84', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '0', '1', NULL, '2', '2021-02-02 07:41:10', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('23', '41', 'BOBINA DE BARRA ENERGETICA DE QUINUA CON DATILES', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '115.24', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '0', '1', NULL, '2', '2021-02-02 07:41:25', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('24', '42', 'BOBINA DE BARRA ENERGETICA DE QUINUA CON HIGOS', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '103.39', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '0', '1', NULL, '2', '2021-02-02 07:41:47', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('25', '46', 'BOBINA DE CEREALES BOPP METALIZADA', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '263.40', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('26', '47', 'BOBINA DE CHIP DE QUINUA', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '325.40', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '0', '1', NULL, '2', '2021-02-02 07:42:25', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('27', '50', 'BOBINA DE GALLETAS DE QUINUA', '2', 'USD', '5.70', 'no_image.png', '0', '0.00', '0', '80.85', 'code39', 'standard', NULL, '0.00', '21', NULL, NULL, NULL, 'UND', '0', '1', NULL, '2', '2021-02-02 07:42:42', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('28', '113', 'ETIQUETA KOLA PIÑA 500ML', '2', 'USD', '4.24', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'MILLLARES', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('29', '250', 'ETIQUETAS HOLO REDONDAS DE 5*6 CM COLOR AZUL', '2', 'USD', '4.24', 'no_image.png', '0', '0.00', '0', '34.43', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('30', '251', 'ETIQUETA AUTOADHESIVA HOLO KOLA MIX 500ML', '2', 'USD', '4.24', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('31', '286', 'ETIQUETA TIPO MANGA AGUA 620mL', '2', 'USD', '4.24', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('32', '290', 'ETIQUETA ADHESIVA HOLITA KOLA MIX 500 ML', '2', 'USD', '4.24', 'no_image.png', '0', '0.00', '0', '6.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('33', '55', 'BOLSA EMPAQUE PARA GALLETA DE AGUA ECONÓMICA', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '7.60', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('34', '57', 'BOLSA DE SOBREEMPAQUE PARA GALLETA DE AGUA', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.20', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('35', '58', 'BOLSA EMPAQUE PARA GALLETA DE AGUA ESPECIAL', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '50.50', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('36', '71', 'CAJA DE CEREAL CHOCOLATE', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1600.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('37', '72', 'CAJA DE CEREAL NATURAL', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '2225.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('38', '73', 'CAJA MASTER QFOODS (DESARMADA)', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '550.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('39', '200', 'PEGAMENTO DE AGUA', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '2.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('40', '210', 'ETIQUETA TIPO MANGA AGUA 500mL', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('41', '249', 'SELLO DE PICO BOTELLA', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('42', '265', 'ETIQUETA TIPO MANGA NORCOLA 500mL', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '409.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('43', '269', 'ETIQUETA ADHESIVA AGUA MAQUILA D.A.M', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '152.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('44', '288', 'ETIQUETA TIPO MANGA FUNDA PEBD 5 COL HOLO COLA 500ML', '2', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '317.20', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('45', '75', 'CASCARA DE NARANJA', '3', 'PEN', '6.50', 'no_image.png', '0', '0.00', '0', '49.30', 'code39', 'standard', NULL, '0.00', '2', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('46', '4', 'ACIDO CITRICO', '3', 'USD', '0.48', 'no_image.png', '0', '0.00', '0', '1.01', 'code39', 'standard', NULL, '0.00', '4', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('47', '14', 'ALBUMINA DE HUEVO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.52', 'code39', 'standard', NULL, '0.00', '4', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('48', '132', 'XANTAN GUM (GOMA XANTANA)', '3', 'USD', '3.39', 'no_image.png', '0', '0.00', '0', '1.23', 'code39', 'standard', NULL, '0.00', '5', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('49', '203', 'COCOA EN POLVO (POLVO DE CACAO)', '3', 'USD', '3.81', 'no_image.png', '0', '0.00', '0', '20.64', 'code39', 'standard', NULL, '0.00', '5', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('50', '180', 'LECIVIT POWDER(LECITINA DE SOYA EN POLVO)', '3', 'USD', '6.36', 'no_image.png', '0', '0.00', '0', '9.91', 'code39', 'standard', NULL, '0.00', '5', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('51', '179', 'LECITINA DE SOYA LIQUIDA', '3', 'USD', '0.00', 'no_image.png', '0', '0.00', '0', '4.20', 'code39', 'standard', NULL, '0.00', '5', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('52', '128', 'GLICERINA LÍQUIDA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '2.25', 'code39', 'standard', NULL, '0.00', '5', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('53', '129', 'GLUCOSA LIQUIDA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '453.68', 'code39', 'standard', NULL, '0.00', '5', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('54', '85', 'CHOCOLATE BITTER', '3', 'PEN', '164.54', 'no_image.png', '0', '0.00', '0', '55.40', 'code39', 'standard', NULL, '0.00', '6', NULL, NULL, NULL, 'CAJA X 150 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('55', '13', 'AJONJOLI', '3', 'PEN', '8.05', 'no_image.png', '0', '0.00', '0', '8.96', 'code39', 'standard', NULL, '0.00', '7', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('56', '178', 'LECHE EN POLVO', '3', 'PEN', '9.66', 'no_image.png', '0', '0.00', '0', '41.60', 'code39', 'standard', NULL, '0.00', '8', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('57', '186', 'MANTECA VEGETAL FAMOSA', '3', 'PEN', '37.71', 'no_image.png', '0', '0.00', '0', '30.80', 'code39', 'standard', NULL, '0.00', '8', NULL, NULL, NULL, 'CAJA X 10 KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('58', '74', 'CANELA EN POLVO', '3', 'PEN', '40.68', 'no_image.png', '0', '0.00', '0', '0.30', 'code39', 'standard', NULL, '0.00', '8', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('59', '141', 'HARINA DE MAIZ', '3', 'PEN', '44.92', 'no_image.png', '0', '0.00', '0', '62.70', 'code39', 'standard', NULL, '0.00', '8', NULL, NULL, NULL, 'SACO', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('60', '27', 'AZUCAR RUBIA', '3', 'PEN', '88.14', 'no_image.png', '0', '0.00', '0', '294.47', 'code39', 'standard', NULL, '0.00', '8', NULL, NULL, NULL, 'SACO X 50 KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('61', '22', 'AROMAS FRESA FL-14205A', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.52', 'code39', 'standard', NULL, '0.00', '8', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('62', '15', 'ALMIDON DE MAIZ', '3', 'PEN', '3.46', 'no_image.png', '0', '0.00', '0', '13.20', 'code39', 'standard', NULL, '0.00', '8', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('63', '230', 'TEXMAX BAR (GRANOMIX)', '3', 'USD', '3.50', 'no_image.png', '0', '0.00', '0', '80.48', 'code39', 'standard', NULL, '0.00', '9', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('64', '254', 'WHEY PROTEIN WPC 80%', '3', 'USD', '16.00', 'no_image.png', '0', '0.00', '0', '1.00', 'code39', 'standard', NULL, '0.00', '10', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('65', '232', 'UNIDAD DE KOLA AMARILLA (S/A)', '3', 'USD', '30.00', 'no_image.png', '0', '0.00', '0', '1.00', 'code39', 'standard', NULL, '0.00', '10', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('66', '236', 'UNIDAD DE KOLA LIMON (S/A)', '3', 'USD', '30.00', 'no_image.png', '0', '0.00', '0', '1.00', 'code39', 'standard', NULL, '0.00', '10', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('67', '238', 'UNIDAD DE KOLA NARANJA (S/A)', '3', 'USD', '30.00', 'no_image.png', '0', '0.00', '0', '1.00', 'code39', 'standard', NULL, '0.00', '10', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('68', '240', 'UNIDAD DE KOLA NEGRA (S/A)', '3', 'USD', '30.00', 'no_image.png', '0', '0.00', '0', '3.00', 'code39', 'standard', NULL, '0.00', '10', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('69', '242', 'UNIDAD DE KOLA PIÑA (S/A)', '3', 'USD', '30.00', 'no_image.png', '0', '0.00', '0', '1.00', 'code39', 'standard', NULL, '0.00', '10', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('70', '1', 'ACEITE SEMILLA DE GIRASOL', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '70.00', 'code39', 'standard', NULL, '0.00', '11', NULL, NULL, NULL, 'LITROS', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('71', '185', 'MANI TOSTADO', '3', 'PEN', '7.50', 'no_image.png', '0', '0.00', '0', '102.20', 'code39', 'standard', NULL, '0.00', '12', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('72', '199', 'PASAS MORENAS', '3', 'PEN', '10.00', 'no_image.png', '0', '0.00', '0', '2.30', 'code39', 'standard', NULL, '0.00', '12', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('73', '94', 'DATILES', '3', 'PEN', '16.10', 'no_image.png', '0', '0.00', '0', '6.05', 'code39', 'standard', NULL, '0.00', '12', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('74', '17', 'ALMIDON DE YUCA', '3', 'PEN', '3.40', 'no_image.png', '0', '0.00', '0', '17.25', 'code39', 'standard', NULL, '0.00', '13', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('75', '16', 'ALMIDON DE PAPA (FECULA, MAICENA)', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '13', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('76', '127', 'GAS CARBÓNICO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '150.00', 'code39', 'standard', NULL, '0.00', '14', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('77', '146', 'HARINA DE QUINUA', '3', 'PEN', '5.00', 'no_image.png', '0', '0.00', '0', '60.40', 'code39', 'standard', NULL, '0.00', '15', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('78', '11', 'AJINOMOTO (GLUTAMATO)', '3', 'PEN', '5.93', 'no_image.png', '0', '0.00', '0', '3.92', 'code39', 'standard', NULL, '0.00', '19', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('79', '158', 'HIGOS', '3', 'PEN', '10.17', 'no_image.png', '0', '0.00', '0', '5.93', 'code39', 'standard', NULL, '0.00', '19', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('80', '220', 'SORBATO DE POTASIO', '3', 'USD', '4.24', 'no_image.png', '0', '0.00', '0', '2.09', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('81', '89', 'COLAGENO HIDROLIZADO', '3', 'USD', '9.53', 'no_image.png', '0', '0.00', '0', '10.60', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('82', '19', 'ANTIMOHO PRESERVANTE', '3', 'PEN', '17.00', 'no_image.png', '0', '0.00', '0', '0.31', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('83', '12', 'AJO EN POLVO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('84', '18', 'ANIS EN GRANO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '8.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('85', '20', 'AROMA CHOCOLATE FL-11312', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1.28', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('86', '21', 'AROMA CHOCOLATE SUBLIME AC-6254M', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1.34', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('87', '23', 'ARROCILLO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('88', '26', 'AZUCAR BLANCA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1100.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('89', '34', 'BHT FOOD', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.65', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('90', '35', 'BICARBONATO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('91', '54', 'HARINA DE SOYA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '5.95', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('92', '88', 'COCO RAYADO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('93', '92', 'COLORANTE ROJO ESPECIAL', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1.10', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'KG', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('94', '97', 'ESCENCIA CHOCOLATE DE TAZA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.30', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('95', '120', 'EXTRACTO DE MALTA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1.39', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('96', '131', 'GOMA ARABIGA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('97', '133', 'QUINUA MOLIDA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '11.85', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('98', '134', 'HARINA DE ARROZ', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '130.40', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('99', '135', 'HARINA DE ARVERJAS', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('100', '139', 'HARINA DE KIWICHA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '17.56', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('101', '140', 'HARINA DE LENTEJAS', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('102', '144', 'HARINA DE PAPA REFINADA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('103', '149', 'HARINA DE TRIGO EXTRA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('104', '157', 'HIERRO EN POLVO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1.55', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('105', '159', 'HOJUELA DE AVENA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '9.90', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('106', '162', 'HOJUELAS DE PAPA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '19.25', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('107', '175', 'HUEVO CRUDO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('108', '182', 'LEVADURA SECA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.46', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('109', '189', 'MARGARINA MULTIUSOS', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '24.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('110', '190', 'MEJORADOR DE MASAS', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.95', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('111', '195', 'OREGANO EN POLVO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('112', '197', 'PAPA SECA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('113', '198', 'PAPRIKA EN POLVO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('114', '204', 'POLVO DE HORNEAR', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1.87', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('115', '214', 'QUINUA EN GRANO (CON PIEDRAS)', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '37.60', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('116', '218', 'SAL DE MESA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '52.51', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('117', '222', 'SUERO DE LECHE', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '15.64', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('118', '245', 'VAINILLA LÍQUIDA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '6.83', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('119', '246', 'AVENA EN GRANO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '1.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('120', '255', 'COLOR ROJO N40 AJANTA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('121', '257', 'AROMA FRUTOS ROJOS FL-5717M', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('122', '258', 'AROMA FRESA MADURA FL-15021 R', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('123', '259', 'FRESA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('124', '260', 'ARÁNDANOS', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('125', '261', 'AGUAYMANTO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('126', '262', 'SABOR SALSA VERDE SP', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '39.90', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('127', '263', 'SABOR BARBECUE SP', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '34.84', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('128', '264', 'SABOR GUACAMOLE SP', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '39.90', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('129', '283', 'MANTECA DE CACAO ORGÁNICO', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('130', '284', 'ACEITE DE COCO ORGÁNICO', '0', 'PEN', '0.00', 'box.png', '0', '0.00', '0', NULL, 'code39', 'standard', '', '0.00', '0', NULL, NULL, NULL, '', NULL, '1', NULL, '1', '2022-05-12 12:13:41', 'ACEITE DE COCO ORGÁNICO', '0', '0', '0', '0', '0', NULL, '2022-05-12 17:13:40', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('131', '289', 'UNIDAD DE CONCENTRADO DE COLA DE FRESA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '17.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('132', '293', 'HARINA DE QUINUA ORGANICA', '3', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '47.70', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('133', '181', 'BOTELLA PET 17.7 GR 500ML HOLO', '4', 'PEN', '74.50', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '3', NULL, NULL, NULL, 'MILLLARES', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('134', '268', 'BOTELLA PET 14.5 GR MAQUILA D.A.M', '4', 'PEN', '74.50', 'no_image.png', '0', '0.00', '0', '60.82', 'code39', 'standard', NULL, '0.00', '3', NULL, NULL, NULL, 'MILLLARES', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('135', '276', 'BOTELLA PET 17.7 GR 500ML NORCOLA', '4', 'PEN', '74.50', 'no_image.png', '0', '0.00', '0', '1.56', 'code39', 'standard', NULL, '0.00', '3', NULL, NULL, NULL, 'MILLLARES', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('136', '66', 'BOTELLA PET 7LT 98 GR C/ASA HOLO', '4', 'PEN', '1.20', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '17', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('137', '62', 'BOTELLA PET 19.7 GR  500ML HOLO', '4', 'USD', '32.70', 'no_image.png', '0', '0.00', '0', '95.73', 'code39', 'standard', NULL, '0.00', '20', NULL, NULL, NULL, 'UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('138', '209', 'PREFORMA CRISTAL 19.7GR PET HOLO', '4', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '20', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('139', '152', 'HARINA EXTRUIDA GELATINIZADA DE QUINUA', '4', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('140', '191', 'MIEL QFOODS CEREAL CHOCOLATE', '4', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('141', '192', 'MIEL QFOODS DATILES', '4', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('142', '193', 'MIEL QFOODS HIGO', '4', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('143', '194', 'MIEL QFOODS JARABE', '4', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '3.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('144', '202', 'PERDIGON DE QUINUA', '4', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '32.55', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '5', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:12:45', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '5', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:13:01', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '5', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:13:16', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '5', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:13:42', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '5', 'PEN', '1.30', 'no_image.png', '0', '1.30', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:14:35', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '5', 'PEN', '1.30', 'no_image.png', '0', '1.30', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:14:50', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('151', '125', 'GALLETA DE QUINUA', '5', 'PEN', '1.50', 'no_image.png', '0', '1.40', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:15:48', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('152', '83', 'CHIP DE QUINUA NATURAL', '5', 'PEN', '1.20', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:16:16', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('153', '06', 'AGUA DE MESA HOLO 500ML', '5', 'PEN', '5.31', 'no_image.png', '0', '4.50', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, '2', '2021-02-09 08:12:11', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5', 'PEN', '4.50', 'no_image.png', '0', '4.50', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:14:21', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('155', '79', 'CEREAL DE QUINUA NATURAL', '5', 'PEN', '4.50', 'no_image.png', '0', '4.50', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, 'UND', '1', '1', NULL, '2', '2021-02-09 08:14:03', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('156', '277', 'AGUA DE MESA MAQUILA 500ML', '5', 'PEN', '0.00', 'no_image.png', '0', '4.50', '0', '18602.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('157', '7', 'AGUA DE MESA HOLO 620ML', '5', 'PEN', '0.00', 'no_image.png', '0', '6.00', '0', '7620.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('158', '163', 'HOLO KOLA NEGRA 500 ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '19.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('159', '165', 'HOLO KOLA AMARILLA 500ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('160', '167', 'HOLO KOLA LIMON 500 ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '960.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('161', '168', 'HOLO KOLA MIX 500ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '10440.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('162', '170', 'HOLO KOLA NARANJA 500 ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '870.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('163', '174', 'HOLO KOLA PIÑA 500 ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '1270.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('164', '253', 'NORCOLA KOLA NEGRA 3 L', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('165', '270', 'NORCOLA NEGRA 500ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '471.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('166', '271', 'NORCOLA AMARILLA 500ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '141.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('167', '272', 'NORCOLA LIMÓN 500ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('168', '273', 'NORCOLA NARANJA 500ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '130.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('169', '274', 'NORCOLA PIÑA 500ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '471.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('170', '292', 'NORCOLA MIX 500 ML', '5', 'PEN', '0.00', 'no_image.png', '0', '8.00', '0', '15.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, 'PAQUETE X 15 UND', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('171', '8', 'AGUA DE MESA 7LT', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '539.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('172', '123', 'GALLETA DE AGUA ECONOMICA 230GR', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('173', '126', 'CEREAL DE QUINUA NATURAL (SIN CAJA)', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '330.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('174', '139', 'HARINA DE KIWICHA', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '14.20', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('175', '278', 'CHIP DE QUINUA SABOR GUACAMOLE', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('176', '279', 'CHIP DE QUINUA SABOR BARBECUE', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('177', '280', 'CHIP DE QUINUA SABOR SALSA VERDE', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('178', '281', 'NORCOLA KOLA NARANJA 3 L', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('179', '282', 'NORCOLA KOLA AMARILLA 3 L', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '0.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('180', '291', 'HOLITA KOLA FRESA 500 ML', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '3810.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('181', '294', 'CHIP DE QUINUA ORGANICA', '5', 'PEN', '0.00', 'no_image.png', '0', '0.00', '0', '574.00', 'code39', 'standard', NULL, '0.00', '1', NULL, NULL, NULL, '', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('182', '1234', 'BJGH', '5', 'PEN', '12.00', 'no_image.png', '0', '9.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-01-29 15:18:48', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('183', '12345', 'AGUA DE MESA HOLO 7LT', '5', 'PEN', '3.35', 'no_image.png', '0', '3.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-01 09:50:24', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('184', '1235', 'AGUA DE MESA HOLO 500ML', '5', 'PEN', '4.50', 'no_image.png', '0', '3.50', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '0', '2', '2021-02-04 07:58:57', '2', '2021-02-04 09:36:39', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('185', '1235', 'AJEU X 15 UND', '5', 'PEN', '8.00', 'no_image.png', '0', '7.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-04 12:03:32', '2', '2021-02-04 12:09:32', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('186', '1236', 'AJIZ X 15 UND', '5', 'PEN', '8.00', 'no_image.png', '0', '7.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-05 16:35:11', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('187', '1500', 'AMJVR X 15 UND', '5', 'PEN', '8.00', 'no_image.png', '0', '7.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-10 16:00:31', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('188', '124', 'FLETE', '1', 'PEN', '7.00', 'no_image.png', '0', '7.00', '0', NULL, 'code39', 'service', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-11 11:36:51', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('189', '030713', 'UNID. CONCENTRADO FRESA DXL-05 ( FRACCION D )', '1', 'PEN', '20.00', 'no_image.png', '0', '20.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-18 11:09:53', '2', '2021-02-18 11:31:46', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('190', '01000', 'FRACCIONES D (D-0.700 Kg.).', '1', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-18 11:23:36', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('191', '10000', 'UNID. CONCENTRADO FRESA DXL-05 ( FRACCION D )', '1', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-18 11:32:20', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('192', '1271', 'PUERTA DE TRABLERO ELECTRICO', '1', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-23 16:25:42', '2', '2021-02-23 16:30:05', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('193', '1272', 'COMPUERTA DE PLACAS DE INYECCION DE AIRE DEL HORNO', '1', 'PEN', '1.00', 'no_image.png', '0', '0.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-02-23 16:26:24', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('194', '545', 'ABJG   HOLITA  X 15 UNIDADES', '5', 'PEN', '13.00', 'no_image.png', '0', '13.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-03-22 13:12:01', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, '2021-11-25 14:15:40', '2021-11-25 14:15:40');
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('195', '12314', 'AJMEU X 15 UND', '1', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-04-28 12:35:24', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('196', '1002', 'AJAE X 15 UND', '1', 'PEN', '8.00', 'no_image.png', '0', '7.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-04-30 11:09:48', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('197', '1114', 'COMPRESOR DORIN S7H 20 HP T/A R404A, R134A, R22 220-380 H2001CC', '1', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-05-05 16:14:02', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('198', '1115', 'AJHP X 15 UND', '1', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-05-05 17:13:31', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('199', '1118', 'CHIP DE QUINUA SABOR FINAS HIERBAS', '5', 'PEN', '1.40', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-05-19 10:40:41', '2', '2021-05-19 10:42:02', '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('200', '151564', 'CMTQC X 30 GR', '1', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-05-20 17:30:12', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('201', '11114', 'CMTQCB X 30 GR POR UNIDAD', '5', 'PEN', '1.00', 'no_image.png', '0', '1.00', '0', NULL, 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '2', '2021-05-21 16:58:14', NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('202', '123123', 'prueba producto', '1', 'PEN', '170.00', 'no_image.png', '0', '123.00', '0', '0.00', 'code39', 'standard', '', '17.00', '1', NULL, NULL, NULL, '123456', '1', '1', '2021-06-09 10:36:51', NULL, NULL, 'prubas123', '0', '0', '0', '0', '0', '2021-06-09 15:36:52', '2021-06-09 15:36:52', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('203', '321', '131', '1', 'PEN', '25.00', 'no_image.png', '0', '21.00', '0', NULL, 'code39', 'standard', '', '0.00', '2', NULL, NULL, NULL, '', NULL, '1', '2021-06-10 08:33:15', '1', '2021-06-30 23:54:39', '3212', '0', '0', '0', '0', '0', '2021-06-10 13:33:15', '2021-11-24 19:17:14', '2021-11-24 19:17:14');
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('204', '84615', 'hvbuh', '1', 'PEN', '20.00', 'no_image.png', '0', '15.00', '0', '0.00', 'code39', 'standard', 'ds', '15.00', '1', NULL, NULL, NULL, '', '1', '1', '2021-06-28 17:09:05', NULL, NULL, 'jbjhj', '0', '0', '0', '0', '0', '2021-06-28 22:09:06', '2021-06-28 22:09:06', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('205', '123456789', 'COMBO TAPAS PLASTICAS', '3', 'PEN', '2.00', 'no_image.png', '0', '1.00', '0', '0.00', 'code39', 'combo', '', '0.00', '3', NULL, NULL, NULL, '', '1', '1', '2021-06-29 22:55:45', NULL, NULL, 'TPLAS', '0', '0', '1', '2', '1', '2021-06-30 03:55:45', '2021-06-30 03:55:45', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('206', 'KIT1', 'KIT UNO', '1', 'PEN', '25.00', 'no_image.png', '0', '15.00', '0', '0.00', 'code39', 'combo', '', '0.00', '0', NULL, NULL, NULL, '', '1', '1', '2021-07-06 19:59:36', NULL, NULL, 'KIT1', '0', '0', '0', '0', '0', '2021-07-07 00:59:37', '2021-07-07 00:59:37', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('207', 'HP806', 'IMPRESORA TÉRMICA 80MM HOIN HOP-H806 USB + SERIE + LAN INTERFACE', '1', 'PEN', '520.00', 'no_image.png', '0', '316.00', '0', '0.00', 'code39', 'standard', '', '0.00', '1', NULL, NULL, NULL, '', '1', '1', '2021-09-27 12:32:22', NULL, NULL, 'IMP HOIN H806 USB+SERIE+LAN', '0', '1', '1', '2', '59', '2021-09-27 17:32:22', '2021-09-27 17:32:22', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('208', 'FAC8443321400', 'IMPRESORA TERMINCA HOP H806 LAN + SERIAL + BLUETOOTH 80MM', '0', 'PEN', '510.00', 'no_image.png', '0', '400.00', '0', '0.00', 'code39', 'standard', '', '5.00', '1', NULL, NULL, NULL, '', '1', '1', '2021-11-01 15:17:17', NULL, NULL, 'TICKETERA 80MM LAN+SERIAL+BT HOIN', '0', '1', '1', '2', '59', '2021-11-01 20:17:18', '2021-11-01 20:17:18', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('209', '0001', 'Teclados', '0', 'PEN', '654.00', 'no_image.png', '0', '45.00', '0', '0.00', 'code39', 'standard', '', '0.00', '0', NULL, NULL, NULL, '', '1', '1', '2021-11-24 13:20:57', NULL, NULL, 'guu', '0', '0', '0', '0', '0', '2021-11-24 18:20:57', '2021-11-24 18:20:57', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('210', 'a431321aaadds', 'Teclados', '2', 'PEN', '50.00', 'no_image.png', '0', '70.00', '0', '0.00', 'code39', 'standard', '', '0.00', '3', NULL, NULL, NULL, '', '1', '1', '2021-11-24 14:13:59', NULL, NULL, 'Mouse  inhalambrico', '0', '0', '1', '0', '0', '2021-11-24 19:13:59', '2021-11-24 19:13:59', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('211', '0012557', 'Teclados', '2', 'PEN', '50.00', 'no_image.png', '0', '70.00', '0', '0.00', 'code25', 'standard', '', '0.00', '3', NULL, NULL, NULL, '', '1', '1', '2021-11-24 14:17:07', NULL, NULL, 'Mouse  inhalambrico', '1', '1', '3', '0', '38', '2021-11-24 19:17:07', '2021-11-24 19:17:07', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('212', 'AF001', 'Audifonos acer inhalambico5545645465465456465465f', '4', 'PEN', '80.00', 'no_image.png', '0', '1000.00', '0', '0.00', 'code39', 'standard', 'Audifonos acer inhalambico5545645465465456465465f', '0.00', '3', NULL, NULL, NULL, 'Audifonos acer', '1', '1', '2021-11-24 14:23:11', NULL, NULL, 'Audifonos acer2123', '0', '0', '3', '0', '9', '2021-11-24 19:23:11', '2021-11-24 19:23:11', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('213', 'code39', 'dfsfkjhfkas6545645435432af1ds5@2º', '0', 'PEN', '50.00', 'no_image.png', '0', '1000.00', '0', '0.00', 'code39', 'standard', '', '4.00', '3', NULL, NULL, NULL, 'Audifonos acer', '1', '1', '2021-11-24 14:42:54', NULL, NULL, 'ºsadsdsd56456-@_+-', '0', '0', '1', '2', '19', '2021-11-24 19:42:53', '2021-11-24 19:42:53', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('214', 'code123', 'Mause Inhalambreico', '3', 'PEN', '80.00', 'no_image.png', '0', '80.00', '0', '0.00', 'code39', 'standard', 'Mause Inhalambreico', '14.00', '3', NULL, NULL, NULL, 'Mouse Toshiba', '1', '1', '2021-11-24 14:58:48', NULL, NULL, 'Mouse', '0', '0', '1', '2', '38', '2021-11-24 19:58:48', '2021-11-25 14:16:24', '2021-11-25 14:16:24');
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('215', 'code125', 'Teclados', '0', 'PEN', '9.00', 'no_image.png', '0', '9.00', '0', '0.00', 'code128', 'standard', '<ol><li>fffffffffffff</li></ol>', '0.00', '0', NULL, NULL, NULL, '', '1', '1', '2021-11-24 15:34:07', NULL, NULL, 'Mouse  inhalambrico', '0', '0', '0', '0', '0', '2021-11-24 20:34:07', '2021-11-24 20:34:07', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('216', '78546', 'Teclado Toshiba 7554', '2', 'PEN', '500.00', 'no_image.png', '0', '500.00', '0', '0.00', 'code25', 'standard', 'Teclado Toshiba Inhalambicos', '5.00', '3', NULL, NULL, NULL, 'Teclado Toshiba', '1', '1', '2021-11-24 16:33:03', NULL, NULL, 'Mouse  inalámbrico Toshibo', '0', '0', '1', '2', '10', '2021-11-24 21:33:02', '2021-11-24 21:33:02', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('217', '785645', 'Pantalla Toshiba HD HDMI', '5', 'PEN', '500.00', 'no_image.png', '0', '500.00', '0', '0.00', 'code25', 'standard', '<ul><li>Pantalla Toshiba HD HDMI 8 x 8 \'\'</li></ul>', '10.00', '3', NULL, NULL, NULL, 'Pantalla Toshiba HD HDMI', '1', '1', '2021-11-24 17:13:48', NULL, NULL, 'Pantalla Toshiba', '0', '0', '1', '4', '0', '2021-11-24 22:13:48', '2021-11-24 22:13:48', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('218', 'BARCODE507072', 'Teclado Gammer', '2', 'PEN', '70.00', 'no_image.png', '0', '70.00', '0', '0.00', 'code128', 'standard', '', '5.00', '4', NULL, NULL, NULL, 'Teclado Gammer ', '1', '1', '2021-11-24 17:19:23', NULL, NULL, 'Teclado ASUS', '0', '0', '1', '4', '16', '2021-11-24 22:19:23', '2021-11-24 22:19:23', NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('219', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('220', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('221', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('222', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('223', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('224', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('225', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('226', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('227', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('228', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('229', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('230', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('231', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('232', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('233', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('234', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('235', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('236', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('237', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('238', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('239', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('240', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('241', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('242', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('243', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('244', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('245', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('246', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('247', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('248', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('249', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('250', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('251', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('252', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('253', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('254', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('255', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('256', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('257', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('258', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('259', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('260', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('261', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('262', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('263', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('264', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('265', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('266', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('267', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('268', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('269', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('270', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('271', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('272', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('273', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('274', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('275', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('276', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('277', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('278', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('279', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('280', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('281', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('282', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('283', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('284', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('285', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('286', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('287', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('288', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('289', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('290', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('291', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('292', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('293', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('294', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('295', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('296', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('297', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('298', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('299', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('300', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('301', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('302', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('303', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('304', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('305', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('306', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('307', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('308', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('309', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('310', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('311', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('312', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('313', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('314', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('315', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('316', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('317', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('318', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('319', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('320', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('321', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('322', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('323', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('324', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('325', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('326', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('327', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('328', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('329', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('330', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('331', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('332', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('333', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('334', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('335', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('336', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('337', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('338', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('339', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('340', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('341', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('342', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('343', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('344', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('345', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('346', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('347', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('348', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('349', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('350', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('351', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('352', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('353', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('354', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('355', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('356', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('357', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('358', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('359', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('360', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('361', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('362', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('363', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('364', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('365', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `tec_products` (`id`, `code`, `name`, `category_id`, `currency`, `price`, `image`, `tax`, `cost`, `tax_method`, `quantity`, `barcode_symbology`, `type`, `details`, `alert_quantity`, `maker_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `presentation`, `estado`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `short_name`, `requires_lot_number`, `requires_serial_number`, `brand_id`, `model_id`, `unit_measure_id`, `created_at`, `updated_at`, `deleted_at`) VALUES ('366', 'INPRF001', 'Endulza Pote x 130 g', '2', 'PEN', '27.00', 'no_image.png', '0', '5.12', '0', '4.00', 'code39', 'standard', NULL, '0.00', NULL, NULL, NULL, NULL, 'unidad', '1', '1', NULL, NULL, NULL, '', '0', '0', NULL, NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: tec_purchase_items
#

DROP TABLE IF EXISTS `tec_purchase_items`;

CREATE TABLE `tec_purchase_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `purchase_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `quantity` decimal(15,2) NOT NULL,
  `cost` decimal(25,2) NOT NULL,
  `subtotal` decimal(25,2) NOT NULL,
  `estado` int(11) DEFAULT '1',
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` timestamp NULL DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_purchase_pay
#

DROP TABLE IF EXISTS `tec_purchase_pay`;

CREATE TABLE `tec_purchase_pay` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `purchase_id` int(11) DEFAULT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `paid_by` varchar(20) NOT NULL,
  `cheque_no` varchar(20) DEFAULT NULL,
  `amount` decimal(25,2) NOT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `attachment` varchar(255) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `reference` varchar(50) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `estado` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_purchases
#

DROP TABLE IF EXISTS `tec_purchases`;

CREATE TABLE `tec_purchases` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `reference` varchar(55) NOT NULL,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `local_id` int(11) NOT NULL,
  `note` varchar(1000) NOT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `exchange` decimal(25,3) DEFAULT NULL,
  `affected` decimal(25,2) NOT NULL,
  `exonerated` decimal(25,2) NOT NULL,
  `tax` decimal(25,2) NOT NULL,
  `total` decimal(25,2) NOT NULL,
  `grand_total` decimal(25,2) NOT NULL,
  `paid` decimal(25,2) NOT NULL,
  `status` varchar(250) DEFAULT NULL,
  `description` varchar(250) DEFAULT NULL,
  `attachment` varchar(255) DEFAULT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `received` tinyint(1) DEFAULT NULL,
  `expiration_date` date DEFAULT NULL,
  `warehouse_id` int(11) NOT NULL,
  `estado` int(11) DEFAULT '1',
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` timestamp NULL DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_referral_guide
#

DROP TABLE IF EXISTS `tec_referral_guide`;

CREATE TABLE `tec_referral_guide` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `serieNumero` varchar(15) NOT NULL,
  `IssueDate` varchar(20) DEFAULT NULL,
  `Note` varchar(200) NOT NULL,
  `DescriptionReasonTransfer` varchar(100) NOT NULL,
  `TotalGrossWeightGRE` varchar(20) NOT NULL,
  `NumberPackages` int(11) NOT NULL,
  `unitCodeGrossWeightGRE` varchar(10) NOT NULL,
  `TypeDocumenttransmitter` int(11) NOT NULL,
  `transmitterName` varchar(100) NOT NULL,
  `addresseeID` varchar(20) NOT NULL,
  `TypeDocumentaddressee` int(11) NOT NULL,
  `addresseeName` varchar(200) NOT NULL,
  `motivemovedCode` varchar(2) NOT NULL,
  `transfermobility` int(11) NOT NULL,
  `LicensePlateID` varchar(10) NOT NULL,
  `DriverPersonID` varchar(12) NOT NULL,
  `DriverPersonDocumentType` int(11) NOT NULL,
  `nameTransportista` varchar(200) NOT NULL,
  `licenseTransport` varchar(15) DEFAULT NULL,
  `movedstartdate` varchar(11) NOT NULL,
  `DeliveryUbi` varchar(10) NOT NULL,
  `Delivery` varchar(200) NOT NULL,
  `OriginAddressUbi` varchar(200) NOT NULL,
  `OriginAddress` varchar(200) NOT NULL,
  `flg_response` int(11) DEFAULT NULL,
  `error_code` varchar(15) DEFAULT NULL,
  `response_descrip` varchar(2000) DEFAULT NULL,
  `digest_value` varchar(250) DEFAULT NULL,
  `user_create` int(11) NOT NULL,
  `date_create` datetime NOT NULL,
  `user_upgrade` int(11) DEFAULT NULL,
  `date_upgrade` datetime DEFAULT NULL,
  `estado` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=utf8;

INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('1', 'T001-0000259', '2021-02-01', '-', 'VENTA', '795', '110', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20516261090', '1', 'SUPERMERCADO CANDY S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-01', '150120', 'AV. BRASIL NRO 3416 - MAGDALENA DEL MAR, LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2325', '', '2', '2021-02-01 14:53:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('2', 'T001-0000260', '2021-02-01', '-', 'VENTA', '795', '110', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20516261090', '6', 'SUPERMERCADO CANDY S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-01', '150120', 'AV. BRASIL NRO 3416 - MAGDALENA DEL MAR, LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '0109', '', '2', '2021-02-01 18:53:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('3', 'T001-0000261', '2021-02-03', '-', '0', '316', '67', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20544142772', '6', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-03', '150141', 'CALLE VICTOR ALZAMORA 210, SURQUILLO - LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', NULL, NULL, NULL, NULL, '2', '2021-02-03 14:01:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('4', 'T001-0000262', '2021-02-03', '-', 'VENTA', '316', '67', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20544142772', '6', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-03', '150141', 'CALLE VICTOR ALZAMORA 210, SURQUILLO - LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', NULL, NULL, NULL, NULL, '2', '2021-02-03 14:03:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('5', 'T001-0000263', '2021-02-03', '-', 'VENTA', '316', '67', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20544142772', '6', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-03', '150141', 'CALLE VICTOR ALZAMORA 210, SURQUILLO - LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-263, ha sido aceptado', '/Q7239c3TlDqO0HAufnMx0EcN2M=', '2', '2021-02-03 14:55:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('6', 'T001-0000264', '2021-02-04', '-', 'VENTA', '790', '125', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20516261090', '6', 'SUPERMERCADO CANDY S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-04', '150120', 'AV. BRASIL NRO 3416 - MAGDALENA DEL MAR, LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-264, ha sido aceptado', 'UT/i6YiLdM8eMIA0wYtG/+FGdb8=', '2', '2021-02-04 13:02:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('7', 'T001-0000265', '2021-02-04', '-', 'VENTA', '16', '6', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10485821142', '6', 'CHIPA MALPARTIDA YARINE STEPHANY', '01', '1', '0', '0', '0', 'TRANSPORTE ROGGERS', NULL, '2021-02-04', '120101', 'PROLONGACION PUNO 200, HUANCAYO', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-265, ha sido aceptado', 'Glog0AUU2PeIN8GP0am+vyI/qIQ=', '2', '2021-02-04 15:58:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('8', 'T001-0000266', '2021-02-04', '-', 'VENTA', '102', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20516261090', '6', 'SUPERMERCADO CANDY S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-04', '150120', 'AV. BRASIL NRO 3416 - MAGDALENA DEL MAR, LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-266, ha sido aceptado', 'q2j7y/uA1WAJN+vjF/ovTWLIj88=', '2', '2021-02-04 16:20:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('9', 'T001-0000267', '2021-02-04', 'CONSIGNACION', 'OTROS', '30141', '3825', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603794274', '6', 'EMBOTELLADORA Y PROCESADORA URIARTE & GUIVAR E.I.R.L.', '13', '1', 'D1D-710', '20496129823', '6', 'JAHZEEL SA', NULL, '2021-02-04', '140105', 'CAL. JORGE CHAVEZ NRO 122 NRO 122 CPM SANTA ANA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-267, ha sido aceptado', 'yfF1t8GwXrW6oD+tHw6N20UpafU=', '2', '2021-02-04 17:19:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('10', 'T001-0000268', '2021-02-05', '-', 'VENTA', '81', '111', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20516261090', '6', 'SUPERMERCADO CANDY S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-05', '150120', 'AV. BRASIL NRO 3416 - MAGDALENA DEL MAR, LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-268, ha sido aceptado', 'd2UXrj70W/I2qr9UbwVdwnC9X5E=', '2', '2021-02-05 13:47:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('11', 'T001-0000269', '2021-02-05', '-', 'VENTA', '24', '8', 'KGM', '6', 'DXL APPAREL GROUP SAC', '15449167624', '6', 'CAMPOS SANCHEZ ROSA LUZ', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-05', '150121', 'AV. COLOMBIA 128 DPTO 403', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-269, ha sido aceptado', 'm52lcI72bJrTg5juvdSWDNe5Rt8=', '2', '2021-02-05 14:31:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('12', 'T001-0000270', '2021-02-05', 'CONSIGNACION', 'OTROS', '30007', '3808', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602975356', '6', 'INVERSIONES ZAVALITA E.I.R.L.', '13', '1', 'D6S-895', '10226571995', '6', 'ASCAYO AGUILAR MARCELINA LEONCIA', NULL, '2021-02-05', '100601', 'AV. SVEEN ERICSON NRO 163', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-270, ha sido aceptado', 'fW3lzlX2/WrGyrQDE5JXmrK46E8=', '2', '2021-02-05 21:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('13', 'T001-0000271', '2021-02-09', '-', 'VENTA', '82', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-09', '070101', 'AV. ELMER FAUCETT NRO. S.N. AEROPUERTO JORGE CHAVEZ (RAMPA NORTE) PROV. CONST. DEL CALLAO', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-271, ha sido aceptado', 'xdI1gecyq/ZW8BB6nhFE9ybI9aA=', '2', '2021-02-09 13:50:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('14', 'T001-0000272', '2021-02-09', 'CONSIGNACION', 'OTROS', '8510', '1080', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603794274', '6', 'EMBOTELLADORA Y PROCESADORA URIARTE & GUIVAR E.I.R.L.', '13', '1', 'F0B-851', '10411560142', '6', 'BECERRA DELGADO AUBER', NULL, '2021-02-09', '140105', 'CAL.JORGE CHAVEZ NRO. 122 CPM SANTA ANA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-272, ha sido aceptado', 'tXxfCrsEvj8290BwLcxqrLD3ggA=', '2', '2021-02-09 21:14:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('15', 'T001-0000273', '2021-02-09', 'CONSIGNACION', 'OTROS', '7092', '900', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603794274', '6', 'EMBOTELLADORA Y PROCESADORA URIARTE & GUIVAR E.I.R.L.', '13', '1', 'M6k-716', '10411560142', '6', 'BECERRA DELGADO AUBER', NULL, '2021-02-09', '140105', 'CAL. JORGE CHAVEZ NRO 122 NRO 122 CPM SANTA ANA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-273, ha sido aceptado', 'nMfU6bpyEczCBtevxrSs63aW6HQ=', '2', '2021-02-09 22:47:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('16', 'T001-0000274', '2021-02-09', 'CONSIGNACION', 'OTROS', '3420', '434', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603794274', '6', 'EMBOTELLADORA Y PROCESADORA URIARTE & GUIVAR E.I.R.L.', '13', '1', 'M6k-716', '10411560142', '6', 'BECERRA DELGADO AUBER', NULL, '2021-02-09', '140105', 'CAL. JORGE CHAVEZ NRO 122 NRO 122 CPM SANTA ANA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-274, ha sido aceptado', '7WHLNhfsb8qaPIVvGgjBE77ylIk=', '2', '2021-02-09 23:05:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('17', 'T001-0000275', '2021-02-10', 'CONSIGNACION', 'OTROS', '8668', '1100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10435097699', '6', 'RIVERA AGUIRRE VICTOR RAUL', '13', '1', 'ADW-941', '10272801776', '6', 'GUEVARA MUÑOZ JESUS', NULL, '2021-02-10', '221005', 'Av. Atahualpa N°1485', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2778', '', '2', '2021-02-10 21:10:55', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('18', 'T001-0000276', '2021-02-11', '-', 'VENTA', '526', '148', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-11', '150142', 'CAR.PANAMERICANA SUR KM. 19.2 LOTE. 1 Z.I. ZONA SUR (FUNDO NARANJAL)', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-276, ha sido aceptado', 'Cb4N40TcKixrWD3uixGKnaFVfls=', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('19', 'T001-0000277', '2021-02-11', '-', 'VENTA', '25', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '01', '2', 'RIY - 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-02-11', '080101', 'AV. H VIDAL UNDA MAGISTERIO 2DA ETAPA, DPTO 502', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-277, ha sido aceptado', 'VhVbrxAuc0c6/XO6Na/qS/EP92U=', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('20', 'T001-0000278', '2021-02-11', '-', 'VENTA', '6', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603912790', '6', 'SUPERTANI S.A.C.', '01', '2', 'RIY - 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-02-11', '150136', 'CAL. SAN CARLOS NRO. 179 URB. SANTA FLORENCIA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-278, ha sido aceptado', 'go22NoDXAVMud/5XNEXkm3Ctr6A=', '2', '2021-02-11 14:51:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('21', 'T001-0000279', '2021-02-11', '-', 'VENTA', '25', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '01', '2', 'RIY - 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-02-11', '040112', 'Urb. San Agustin, b15, Paucarpata, Arequipa', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-279, ha sido aceptado', 'OTDcmCD+bK+YKYbhhEneIPz2GoQ=', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('22', 'T001-0000280', '2021-02-11', '-', 'VENTA', '11', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', ' 1040910288', '6', 'HOLGADO ANDRES HILDA MECAILA', '01', '2', 'RIY - 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-02-11', '150114', 'CALLE LAS ZARZAMORAS 193 - LA MOLINA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2017', '', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('23', 'T001-0000281', '2021-02-11', '-', 'VENTA', '11', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10409102889', '6', 'HOLGADO ANDRES HILDA MECAILA', '01', '1', 'RIY - 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-02-11', '150114', 'CALLE LAS ZARZAMORAS 193 - LA MOLINA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-281, ha sido aceptado', 'dRyRu7pGsqqutvP2Ri19DOFqaqk=', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('24', 'T001-0000282', '2021-02-12', '-', 'VENTA', '293', '67', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20544142772', '6', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-02-12', '150141', 'CALLE VICTOR ALZAMORA 210, SURQUILLO - LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-282, ha sido aceptado', 'v1tmP3luhvn14bFEFwb5xzGidbo=', '2', '2021-02-12 13:40:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('25', 'T001-0000283', '2021-02-12', 'CONSIGNACION', 'OTROS', '14003', '1777', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602975356', '6', 'INVERSIONES ZAVALITA E.I.R.L.', '13', '1', 'C2A-740', '10417085080', '6', 'CHAGUA HUARANGA RIGOBERTO JUSTINO', NULL, '2021-02-12', '100601', 'AV. SVEEN ERICSON NRO 163', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-283, ha sido aceptado', 'pl7auAB9Le6iQOmsoA2HJFt8MlY=', '2', '2021-02-12 18:35:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('26', 'T001-0000284', '2021-02-12', 'CONSIGNACION', 'OTROS', '16004', '2031', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602975356', '6', 'INVERSIONES ZAVALITA EIRL', '13', '1', 'B6X 829', '20600232542', '6', 'T & Q GRUOP S.A.C.', NULL, '2021-02-12', '100601', 'AV. SVEEN ERICSON  N 163', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-284, ha sido aceptado', '8UgASebvrU60EJWEWeJuMGHsiSg=', '2', '2021-02-12 21:36:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('27', 'T001-0000285', '2021-02-15', 'CONSIGNACION', 'OTROS', '11087', '1407', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602975356', '6', 'INVERSIONES ZAVALITA EIRL', '13', '1', 'F9V 718', '09357703', '1', '0', NULL, '2021-02-15', '100601', 'AV. SVEEN ERICSON  N 163', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-285, ha sido aceptado', 'l71h2bqZKFhfzuGjdlcBDddFOLA=', '2', '2021-02-15 22:05:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('28', 'T001-0000286', '2021-02-18', '-', 'VENTA', '6', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10701357154', '6', 'QUISPE SARAVIA MARIA ANGHELA', '01', '1', 'RIY 918', '07837117', '6', 'Rosendo Jove Quispe', NULL, '2021-02-18', '080901', 'JR YUVENI U-5, QUILLABAMBA, CUSCO', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-286, ha sido aceptado', 'pr7Ksa7kTfr6AZys3v5/9kVK21g=', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('29', 'T001-0000287', '2021-02-18', 'Modificacion de producto 17 Fracciones D (D – 0.700 Kg.).', 'OTROS', '1', '1', 'LTR', '6', 'DXL APPAREL GROUP SAC', '20510698542', '6', 'SAPORITI DEL PERU S.A.C.', '13', '1', '0', '0', '0', '0', NULL, '2021-02-18', '150140', 'CAL. CAMINO REAL NRO. 1801 INT, B16', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-287, ha sido aceptado', 'KJSW7p+krtxoLJIRoxjumJbEgbk=', '2', '2021-02-18 16:15:12', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('30', 'T001-0000288', '2021-02-18', 'Modificación', 'OTROS', '1', '1', 'LTR', '6', 'DXL APPAREL GROUP SAC', '20510698542', '6', 'SAPORITI DEL PERU S.A.C.', '13', '1', '0', '0', '0', '0', NULL, '2021-02-18', '150140', 'CAL. CAMINO REAL NRO. 1801 INT, B16', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-288, ha sido aceptado', 'Ky/y/8GcPNB/pHN1RizDO1Ll3fo=', '2', '2021-02-18 16:29:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('31', 'T001-0000289', '2021-02-18', 'Modificación', 'OTROS', '1', '1', 'LTR', '6', 'DXL APPAREL GROUP SAC', '20510698542', '6', 'SAPORITI DEL PERU S.A.C.', '13', '1', '0', '0', '0', '0', NULL, '2021-02-18', '150140', 'CAL. CAMINO REAL NRO. 1801 INT, B16', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-289, ha sido aceptado', 'bv+8dxOkZ/kWT6atx54xJmyvdxc=', '2', '2021-02-18 16:33:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('32', 'T001-0000290', '2021-02-19', '-', 'TRASLADO EMISOR ITINERANTE CP', '2', '270', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'C4Z 788', '09988133', '1', 'CANDELA PRESENTACION MAXIMO MARTIN', NULL, '2021-02-19', '150135', '-', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2554', '', '2', '2021-02-19 13:56:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('33', 'T001-0000291', '2021-02-22', '-', 'TRASLADO EMISOR ITINERANTE CP', '2503', '321', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'C4Z 788', '09988133', '1', 'CANDELA PRESENTACION MAXIMO MARTIN', NULL, '2021-02-22', '150117', '-', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2554', '', '2', '2021-02-22 14:01:12', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('34', 'T001-0000292', '2021-02-22', '-', 'VENTA', '285', '82', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'D9C 745', '10770619667', '6', 'CHAVEZ CAMACHO ALEXANDRA', NULL, '2021-02-22', '150142', 'CAR.PANAMERICANA SUR KM. 19.2 LOTE. 1 Z.I. ZONA SUR (FUNDO NARANJAL)', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-292, ha sido aceptado', 'NMFvhDAYXj/pA0cqVTTNbqYL34s=', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('35', 'T001-0000293', '2021-02-23', '-', 'VENTA', '24', '7', 'KGM', '6', 'DXL APPAREL GROUP SAC', '15449167624', '6', 'CAMPOS SANCHEZ ROSA LUZ', '01', '1', 'RIY 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-02-23', '150121', 'AV. COLOMBIA 128 DPTO 403', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-293, ha sido aceptado', '6VefxCvh+P3KDsf7PTf4Za3LSbA=', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('36', 'T001-0000294', '2021-02-23', '-', 'VENTA', '15', '6', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603443951', '6', 'PERUVIAN AMAZON TRADING S.A.C', '01', '1', 'RIY 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-02-24', '150134', 'CALLE AUGUSTO DURAND N2320', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-294, ha sido aceptado', 'xEKjrcjJ8lZROeZnYEhDL6A6EAE=', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('37', 'T001-0000295', '2021-02-23', '-', 'VENTA', '10', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605001051', '6', 'CORPORACION MENTA DEL PERU S.A.C.', '01', '2', 'ARQ 562', '20605001051', '6', 'CORPORACION MENTA DEL PERU S.A.C.', NULL, '2021-02-23', '150117', 'AV. JOSE SANTOS CHOCANO 1321 URB. LAS PRADERAS', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-295, ha sido aceptado', 'dmQYxmR6IX7Qcj6Qw9svgRsEsAU=', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('38', 'T001-0000296', '2021-02-23', '-', 'OTROS', '1', '1', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602720391', '6', 'GRUPO TEKNOMEAL - FYN S.A.C.', '13', '1', 'A5K 260', '41857225', '1', 'HERRERA HUAMAN YURI', NULL, '2021-02-23', '150108', 'JR. ANCASH MZA. S LOTE. 8 URB. LA CAMPIÑA LIMA - LIMA - CHORRILLOS', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-296, ha sido aceptado', 'H9a8ttUeblqbWjUthwD2x3HpEwI=', '2', '2021-02-23 21:31:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('39', 'T001-0000297', '2021-02-24', '-', 'VENTA', '5', '1', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20600560701', '6', 'COTRINA EXPORTS E.I.R.L.', '01', '1', 'RIY 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-02-25', '150141', 'AV. MANUEL VILLARAN NRO. 1016 INT. B URB. LOS SAUCES (SEGUNDO PISO OFICINA B) LIMA - LIMA - SURQUILLO Actividad(es) Económica(s):  Secundaria 1 - CIIU 51225 - VTA. MAY. ALIMENTOS, BEBIDAS Y TABACO.', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2778', '', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('40', 'T001-0000298', '2021-02-26', '-', 'VENTA', '57', '12', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'APB 558', '76917423', '1', 'JOVE LLOCLLA FRANK CHRISTOPHER', NULL, '2021-02-26', '070101', 'AV. ELMER FAUCETT NRO. S.N. AEROPUERTO JORGE CHAVEZ (RAMPA NORTE) PROV. CONST. DEL CALLAO', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-298, ha sido aceptado', 'F3xmCiQBPP58vTB2OSDSBBLu3ys=', '2', '2021-02-26 19:07:03', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('41', 'T001-0000299', '2021-03-02', '-', 'VENTA', '264', '61', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20544142772', '6', 'UNIVERSO COMERCIAL DEL PERU SAC', '01', '2', 'BSW651', '10097464435', '6', 'IVAN JOVE', NULL, '2021-03-02', '150141', 'CALLE VICTOR ALZAMORA 210', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-299, ha sido aceptado', 'bcqWeWI98rsDf63GUrPsNGXGQhk=', '2', '2021-03-02 14:44:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('42', 'T001-0000300', '2021-03-03', '-', 'VENTA', '1305', '75', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW 651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-03-03', '150142', 'CAR.PANAMERICANA SUR KM. 19.2 LOTE. 1 Z.I. ZONA SUR (FUNDO NARANJAL)', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-300, ha sido aceptado', 'TAd7Q1yxlKJ5ufHwx0hdav9GThc=', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('43', 'T001-0000301', '2021-03-04', '-', 'VENTA', '13', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20486021773', '6', 'EMPRESA AGRARIA CAFETALERA CHANCHAMAYO HIGHLAND COFFEE ', '01', '1', 'RIY 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-03-04', '150115', 'Jr. Alexander Von Humboldt N° 636', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-301, ha sido aceptado', 'ZOpwFwuXocKPsHAmamTctCjfqC8=', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('44', 'T001-0000302', '2021-03-04', '-', 'VENTA', '15', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10468975144', '6', 'ESPINOZA DE LA ROSA ROCIO MILAGROS', '01', '1', 'RIY 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-03-04', '150130', 'AV SAN LUIS 3112, SAN BORJA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-302, ha sido aceptado', 'OqDPJRVO1eu+EfBmEG2lLNpef2I=', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('45', 'T001-0000303', '2021-03-05', '-', 'VENTA', '50', '9', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20547839651', '6', 'FRESHMART S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-03-05', '150101', 'AV. NICOLAS AYLLON 2625, LIMA', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-303, ha sido aceptado', 'RxGzypeZ0jcHG+1xABVnIN02I1I=', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('46', 'T001-0000304', '2021-03-05', '-', 'VENTA', '32', '6', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-03-05', '150115', 'Jirón Alexander Von Humboldt 508', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-304, ha sido aceptado', '1mYfzPex7HiGxn9iuY4Db1dvmBo=', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('47', 'T001-0000305', '2021-03-05', '-', 'VENTA', '21', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-03-05', '150115', 'Javier Luna Pizarro 1122', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-305, ha sido aceptado', 'mdQF7J7W+DpkKCIOw0mZDNhrm2o=', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('48', 'T001-0000306', '2021-03-05', '-', 'TRASLADO EMISOR ITINERANTE CP', '50', '50', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF ', '18', '1', '0', '0', '0', '0', NULL, '2021-03-05', '150125', '-', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2554', '', '2', '2021-03-05 22:06:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('49', 'T001-0000307', '2021-03-09', '-', '0', '8', '1', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20606326271', '6', 'DONDECOXFOOD EIRL', '01', '2', '60091A', '70502636', '1', 'ALEXANDRA MARICIELO MORALES CHUJUTALLI', NULL, '2021-03-09', '150140', 'CALLE CERRO BELLO MZA F LOTE 16 URB SAN IGNACIO DE MONTERRICO', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-307, ha sido aceptado', 'h131Xw8MG5o6qweNcu++wM6shWQ=', '2', '2021-03-09 19:40:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('50', 'T001-0000308', '2021-03-10', '-', 'VENTA', '47', '10', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '2', 'BSW651', '10097464435', '6', 'IVAN JOVE', NULL, '2021-03-10', '070101', 'AV ELMER FOUCETT S/N AEROPUERO INTERNACIONAL JORGE CHAVEZ RAMPA NORTE', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-308, ha sido aceptado', 'JToMHGR3egW5rdS4zKnmBNHhqFY=', '2', '2021-03-10 16:30:50', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('51', 'T001-0000309', '2021-03-10', '-', 'TRASLADO EMISOR ITINERANTE CP', '2119', '270', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '2', 'C3Q715', '74226644', '1', 'JEAN PIERRE ARREDONDO RODRIGUEZ', NULL, '2021-03-10', '150106', 'AV  JOSE CARLOS MARIATEGUI 433 URB LUCIANA CARABAYLLO', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-10 17:36:13', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('52', 'T001-0000310', '2021-03-10', '-', 'TRASLADO EMISOR ITINERANTE CP', '8424', '1080', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '2', 'D9E780', '07562334', '1', 'NOEL MIRANDA, MOISES PEDRO', NULL, '2021-03-10', '150106', 'AV  JOSE CARLOS MARIATEGUI 433 URB LUCIANA CARABAYLLO', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-10 17:43:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('53', 'T001-0000311', '2021-03-10', '-', 'VENTA', '11', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10733575400', '6', 'ALVARADO VALLE WHITNEY', '01', '2', 'RIY918', '07837117', '1', 'ROSENDO JOVE', NULL, '2021-03-11', '?010101', 'JR HERMOSURA 622', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '0', 'soap-env:Client', '2776', '', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('54', 'T001-0000312', '2021-03-11', '-', 'VENTA', '232', '70', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL SAC', '01', '2', 'BSW651', '10097464435', '6', 'IVAN JOVE', NULL, '2021-03-11', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-312, ha sido aceptado', 'ITMpbLqkoA1yuIbjkzO0Dy94wOk=', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('55', 'T001-0000313', '2021-03-17', '-', 'VENTA', '71', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'BSW 651', '10097464435', '6', 'JOVE CENTURION YVAN FRANKIE', NULL, '2021-03-17', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE, CALLAO - PERU', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-313, ha sido aceptado', 'YkpRtl2/q4YAkk5KSazUgar0OD0=', '2', '2021-03-17 18:58:28', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('56', 'T001-0000314', '2021-03-17', '-', 'VENTA', '11', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20537946378', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'BSW 651', '10097464435', '6', 'JOVE CENTURION YVAN FRANKIE', NULL, '2021-03-17', '070101', 'AV. ELMER FAUCETT 3453 INT 4C - CALLAO', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-314, ha sido aceptado', 'qNfA/avbJwoDfIPANWXKWXYb6VA=', '2', '2021-03-17 18:59:46', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('57', 'T001-0000315', '2021-03-17', '-', 'VENTA', '11', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20537946378', '6', 'L\'COUSINE S.A.C.', '01', '1', 'BSW 651', '10097464435', '6', 'JOVE CENTURION YVAN FRANKIE', NULL, '2021-03-17', '070101', 'AV. ELMER FAUCETT 3453 INT 4C - CALLAO', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-315, ha sido aceptado', 'c5jidKZqzMtdVDlH3aK+M7r22ao=', '2', '2021-03-17 19:21:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('58', 'T001-0000316', '2021-03-18', '-', 'VENTA', '268', '68', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL SAC', '01', '2', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-03-18', '150143', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B  LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-316, ha sido aceptado', '7YDpZZj0xxrV5tVGa2tvCN4Zz7E=', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('59', 'T001-0000317', '2021-03-18', '-', 'VENTA', '13', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20565695968', '6', 'ENGLOBE SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA ', '01', '1', 'RIY 918', '07837117', '1', 'Rosendo Jove Quispe', NULL, '2021-03-18', '150120', 'AV BRASIL 863, DPTO 1301 - TORRE B', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2778', '', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('60', 'T001-0000318', '2021-03-18', '-', 'VENTA', '268', '68', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-03-18', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B  LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-318, ha sido aceptado', 'gep5w9YzppazEK0HsevaNEFuc8E=', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('61', 'T001-0000319', '2021-03-22', 'MUESTRAS', 'OTROS', '32', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '13', '2', 'BJL-194', '76917423', '1', 'FRANK JOVE', NULL, '2021-03-22', '040101', 'AV. H VIDAL UNDA NRO - MAGISTERIO 2DA ETAPA, DPTO 502', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-319, ha sido aceptado', 'yp6KWwhuh9U8RF03SAum0zo/d6k=', '2', '2021-03-22 18:17:55', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('62', 'T001-0000320', '2021-03-22', '-', 'VENTA', '12', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10179636145', '6', 'ULLOA VALLE BRIGIDO NOLBERTO', '01', '1', 'BJL-194', '76917423', '1', 'FRANK JOVE', NULL, '2021-03-22', '150113', 'AV. 28 DE JULIO 298, JESUS MARIA - LIMA', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-320, ha sido aceptado', '4PiI5Z/S+KLUlAh/ng28XZL0QKM=', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('63', 'T001-0000321', '2021-03-22', '-', 'VENTA', '29', '7', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '01', '1', 'BJL-194', '76917423', '1', 'FRANK JOVE', NULL, '2021-03-22', '040101', 'AV. H VIDAL UNDA NRO - MAGISTERIO 2DA ETAPA, DPTO 502', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-321, ha sido aceptado', 'QL0F/OkuczcogvZ2ShT+9DhOZKM=', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('64', 'T001-0000322', '2021-03-22', '-', 'VENTA', '5', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602564526', '6', '6G E.I.R.L.', '01', '1', 'BJL-194', '76917423', '1', 'FRANK JOVE', NULL, '2021-03-22', '200101', 'AV CASUARINAS ESQUINA CON CALLE LOS ROBLES MZ I LOTE 1, URB. LOS GERANIOS - PIURA', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-322, ha sido aceptado', 'gIpDqA6uobxyc7KGLzdQQSGIoBk=', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('65', 'T001-0000323', '2021-03-24', '-', 'VENTA', '333', '86', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '2', 'BSW651', '10097464435', '6', 'IVAN JOVE', NULL, '2021-03-24', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-323, ha sido aceptado', '7qwU2I+EsJtW3Iu+9DB459JwSK4=', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('66', 'T001-0000324', '2021-03-25', '-', 'TRASLADO EMISOR ITINERANTE CP', '1513', '194', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'C4Z788', '09988133', '1', 'MAXIMO MARTIN CANDELA PRESENTACION', NULL, '2021-03-25', '150106', 'KM 22 AV TUPAC AMARU', '150125', 'CALLE LOS ALAMOS MZA J LOTE 11 INT B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-25 15:21:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('67', 'T001-0000325', '2021-03-25', '-', 'TRASLADO EMISOR ITINERANTE CP', '101', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', '00acc', '06169294', '1', 'GUTIERREZ MEZA VICTOR', NULL, '2021-03-25', '150125', '-', '150125', 'URB. PARCELACION SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-25 16:27:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('68', 'T001-0000326', '2021-03-25', '-', '0', '76', '16', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'ARF341', '08269826', '1', 'ALCOCER PEÑA JOSE GUSTAVO', NULL, '2021-03-25', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE, CALLAO - PERU', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-326, ha sido aceptado', 'mymRv9Jgnf2FnUuO662/T0cWruY=', '2', '2021-03-25 17:13:53', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('69', 'T001-0000327', '2021-03-25', '-', 'VENTA', '32', '6', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603443951', '6', 'PERUVIAN AMAZON TRADING S.A.C', '01', '1', 'RIY918', '07837117', '1', 'Rosendo Jove', NULL, '2021-03-25', '220901', 'CAR. VALLE OESTE S/N URB. PUCACACA SAN MARTIN - SAN MARTIN - TARAPOTO', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-327, ha sido aceptado', 'Sxy66yMfyS6pzpE4qe1CoCaEYX4=', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('70', 'T001-0000328', '2021-03-25', '-', 'VENTA', '32', '6', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603912790', '6', 'SUPERTANI S.A.C.', '01', '1', 'RIY918', '07837117', '1', 'Rosendo Jove', NULL, '2021-03-25', '150136', 'CALLE SAN CARLOS 179, SAN MIGUEL', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-328, ha sido aceptado', 'j25wjTg7vnDsEdh9R4tOAw7QYXo=', '2', '2021-03-25 18:40:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('71', 'T001-0000329', '2021-03-25', '-', 'VENTA', '39', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20538601684', '6', 'MULTIGOURMET E.I.R.L.', '01', '1', 'RIY918', '07837117', '1', 'Rosendo Jove', NULL, '2021-03-25', '150141', 'CALLE LEONCIO PRADO 5359 MDO. N°1 PUESTO 106 LIMA - SURQUILLO', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-329, ha sido aceptado', 'w0b7gdndgojHklLFnHUK8Et89n4=', '2', '2021-03-25 20:25:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('72', 'T001-0000330', '2021-03-25', '-', 'VENTA', '39', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602754163', '6', 'VIDASANAHORIA S.A.C.', '01', '1', 'RIY918', '07837117', '1', 'Rosendo Jove', NULL, '2021-03-25', '150101', 'AV. POLO URB. CENTRO COMERCIAL MONTERRICO NRO. 401 INT. 408, LIMA, LIMA, PERU', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-330, ha sido aceptado', '4pv+CYqNZ32P7vE/8OK4cp89Vv8=', '2', '2021-03-25 20:27:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('73', 'T001-0000331', '2021-03-25', '-', 'TRASLADO EMISOR ITINERANTE CP', '91', '90', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07643213', '1', 'Ricardo Maguiña', '18', '1', 'F4O 572', '41146476', '1', 'Francisco Maguiña Eguizabal ', NULL, '2021-03-25', '150125', '-', '150125', 'Call los alamos Mz J Int b', '0', 'soap-env:Client', '2554', '', '2', '2021-03-25 22:32:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('74', 'T001-0000332', '2021-03-26', '-', 'TRASLADO EMISOR ITINERANTE CP', '1404', '180', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'C4Z 788', '09988133', '1', 'Máximo Martín Candela Presentación', NULL, '2021-03-26', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-26 14:03:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('75', 'T001-0000333', '2021-03-26', '-', 'TRASLADO EMISOR ITINERANTE CP', '1498', '192', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'BCL 880', '44218837', '1', 'ANTONIO DELGADO', NULL, '2021-03-26', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-26 20:47:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('76', 'T001-0000334', '2021-03-26', '-', 'TRASLADO EMISOR ITINERANTE CP', '842', '108', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'C90 130', '25849209', '1', 'PEDRO CORDOVA CARRANZA', NULL, '2021-03-26', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-26 20:57:04', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('77', 'T001-0000335', '2021-03-26', '-', 'TRASLADO EMISOR ITINERANTE CP', '1498', '258', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'BCL 880', '44218837', '1', 'ANTONIO DELGADO', NULL, '2021-03-26', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-26 21:04:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('78', 'T001-0000336', '2021-03-26', '-', 'TRASLADO EMISOR ITINERANTE CP', '842', '108', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'C90 130', '25849209', '1', 'PEDRO CORDOVA CARRANZA', NULL, '2021-03-26', '150101', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-26 21:07:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('79', 'T001-0000337', '2021-03-27', '-', 'TRASLADO EMISOR ITINERANTE CP', '1170', '150', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF ', '18', '1', 'ACE 048', '31683156', '1', 'MELECIO MENDOZA AGURTO', NULL, '2021-03-27', '150110', '-', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2554', '', '2', '2021-03-27 12:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('80', 'T001-0000338', '2021-03-27', '-', '0', '702', '90', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '18', '1', 'ACE 048', '31683156', '1', 'MELECIO MENDOZA AGURTO', NULL, '2021-03-27', '150110', '-', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-27 14:15:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('81', 'T001-0000339', '2021-03-27', '-', 'TRASLADO EMISOR ITINERANTE CP', '789', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOQ726', '47010925', '1', 'SAAVEDRA MEDINA JHON JOSE', NULL, '2021-03-27', '150115', 'ISABEL LA CATOLICA 597', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B  LOTIZACION SEMI RUSTICA CHILLON', '0', 'soap-env:Client', '2554', '', '2', '2021-03-27 21:56:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('82', 'T001-0000340', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOK 844', '80235830', '1', 'RAUL VARGAS MEGO', NULL, '2021-03-29', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 13:28:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('83', 'T001-0000341', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '2371', '304', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'ANK 836', '43622771', '1', 'MIGUEL SALDAÑA', NULL, '2021-03-29', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 13:32:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('84', 'T001-0000342', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOJ 846', '09053719', '1', 'DAVID VELGARAY', NULL, '2021-03-29', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 13:39:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('85', 'T001-0000343', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '78', '10', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOJ 846', '09053719', '1', 'DAVID VELGARAY', NULL, '2021-03-29', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 13:50:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('86', 'T001-0000344', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '1014', '130', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOK 844', '80235830', '1', 'CEFERINO VASQUEZ INGA', NULL, '2021-03-29', '150108', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 15:16:26', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('87', 'T001-0000345', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '1170', '150', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOI-949', '10027459', '1', 'REYNALDO VALVERDE MIRANDA', NULL, '2021-03-29', '150135', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 15:48:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('88', 'T001-0000346', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '3682', '472', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'AXT 868', '26630767', '1', 'WILMER CABANILLAS RABANAL', NULL, '2021-03-29', '150142', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 16:53:03', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('89', 'T001-0000347', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '1934', '248', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'ANK 836', '49041346', '1', 'JOSE AGUSTIN SAUCEDO DEL SOLAR', NULL, '2021-03-29', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 17:04:50', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('90', 'T001-0000348', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '920', '118', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOJ 846', '09053719', '1', 'DAVID VERGARAY VALVERDE', NULL, '2021-03-29', '150125', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 17:20:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('91', 'T001-0000349', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '2340', '300', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'C3Q 715', '74226644', '1', 'JEAMPIEER RODRIGUEZ ARREDONDO', NULL, '2021-03-29', '150106', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 17:52:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('92', 'T001-0000350', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '390', '50', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOI-949', '10027459', '1', 'REYNALDO VALVERDE MIRANDA', NULL, '2021-03-29', '150142', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 19:02:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('93', 'T001-0000351', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '3744', '480', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'B7I 782', '47034426', '1', 'GUZMAN LOPEZ ADRIAN', NULL, '2021-03-29', '150111', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 20:46:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('94', 'T001-0000352', '2021-03-29', '-', 'TRASLADO EMISOR ITINERANTE CP', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOK 772', '09334772', '1', 'RUBEN HUARCAYA SOTELO', NULL, '2021-03-29', '150143', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-29 21:30:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('95', 'T001-0000353', '2021-03-30', '-', 'TRASLADO EMISOR ITINERANTE CP', '1950', '250', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '18', '1', 'F001 949', '10027459', '1', 'REYNALDO VALVERDE', NULL, '2021-03-30', '150135', '-', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2554', '', '2', '2021-03-30 15:57:46', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('96', 'T001-0000354', '2021-03-30', '-', 'TRASLADO EMISOR ITINERANTE CP', '1404', '180', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '18', '1', 'APL 889', '44148965', '1', 'GARNELO ORTEGA DAVID DARWIN', NULL, '2021-03-30', '150103', '-', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2554', '', '2', '2021-03-30 17:05:26', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('97', 'T001-0000355', '2021-03-30', '-', 'VENTA', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '01', '1', 'FOK 772', '09334772', '1', 'RUBEN LINO HUARCAYA SOTELO', NULL, '2021-03-30', '150143', '-', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2778', '', '2', '2021-03-30 18:08:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('98', 'T001-0000356', '2021-03-30', 'Muestras', 'OTROS', '5', '1', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10763118261', '6', 'BARRAZA AVALOS ANA VICTORIA', '13', '1', 'D4P 304', '40999801', '1', 'Niels Segersbol Salomón', NULL, '2021-03-30', '150115', 'AV. PASEO DE LA REPUBLICA 809 - LIMA LA VICTORIA', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2778', '', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('99', 'T001-0000357', '2021-03-30', '-', 'TRASLADO EMISOR ITINERANTE CP', '3432', '440', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'AXT 868', '26660757', '1', 'WILMER GABANAL', NULL, '2021-03-30', '150113', '-', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-30 21:01:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('100', 'T001-0000358', '2021-03-30', '-', 'TRASLADO EMISOR ITINERANTE CP', '3682', '472', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'AFQ712', '47539634', '1', 'Samuel Pizarro', NULL, '2021-03-30', '150133', '-', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-30 21:18:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('101', 'T001-0000359', '2021-03-30', '-', '0', '1061', '136', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'F001 949 ', '47539634', '1', 'Reynaldo Valverde', NULL, '2021-03-30', '150135', '-', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-30 21:59:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('102', 'T001-0000360', '2021-03-30', '-', '0', '1170', '150', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'F001 949 ', '47539634', '1', 'Reynaldo Valverde', NULL, '2021-03-30', '150135', '-', '150135', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '0', 'soap-env:Client', '2554', '', '2', '2021-03-30 22:01:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('103', 'T001-0000361', '2021-03-31', '-', 'VENTA', '27', '8', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20547839651', '6', 'FRESHMART S.A.C.', '01', '1', 'APB 558', '07837117', '1', 'ROSENDO JOVE QUISPE', NULL, '2021-03-31', '150101', 'AV. NICOLAS AYLLON 2625, LIMA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-361, ha sido aceptado', 'Evafq3oYWjYPmYUorY3XTPWZiQQ=', '2', '2021-03-31 14:01:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('104', 'T001-0000362', '2021-03-31', '-', 'VENTA', '12', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10420294765', '6', 'FRESHMART S.A.C.', '01', '1', 'APB 558', '07837117', '1', 'ROSENDO JOVE QUISPE', NULL, '2021-03-31', '130101', 'AV. AMERICA SUR 4155, URB. LOS PINOS - TRUJILLO - PERU', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-362, ha sido aceptado', '61EnKMx23E2ytOMdxM6aTgpmsHo=', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('105', 'T001-0000363', '2021-03-31', '-', 'TRASLADO EMISOR ITINERANTE CP', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOK 772', '09334772', '1', 'ANTONIO DELGADO', NULL, '2021-03-31', '150143', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-31 14:23:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('106', 'T001-0000364', '2021-03-31', '-', 'VENTA', '8', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20175642341', '6', 'ESTACION DE SERVICIOS SAN JOSE S.A.C.', '01', '1', 'APB 558', '07837117', '1', 'ROSENDO JOVE QUISPE', NULL, '2021-03-31', '200101', 'AV. GRAU 1602, PIURA, PIURA, PIURA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-364, ha sido aceptado', 'XyS39YJI+J/FHzyfAfhkawhKKC8=', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('107', 'T001-0000365', '2021-03-31', '-', 'TRASLADO EMISOR ITINERANTE CP', '1934', '248', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'ANK 836', '43622771', '1', 'RAUL VARGAS MEGO', NULL, '2021-03-31', '150112', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-31 14:59:13', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('108', 'T001-0000366', '2021-03-31', '-', 'VENTA', '171', '38', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW 651', '10097464435', '6', 'JOVE CENTURION YVAN FRANKIE', NULL, '2021-03-31', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-366, ha sido aceptado', 'EF1s3zu6sKJX9JIxufefj9ytmr8=', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('109', 'T001-0000367', '2021-03-31', '-', 'TRASLADO EMISOR ITINERANTE CP', '3588', '460', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'W2F 831', '06575903', '1', 'JUAN CARLOS TAYPE CHAVEZ', NULL, '2021-03-31', '150103', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-31 16:25:24', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('110', 'T001-0000368', '2021-03-31', '-', 'TRASLADO EMISOR ITINERANTE CP', '2059', '264', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '2', 'C4X 776', '43162907', '1', 'ANTONIO DELGADO', NULL, '2021-03-31', '150137', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-31 17:01:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('111', 'T001-0000369', '2021-03-31', '-', 'TRASLADO EMISOR ITINERANTE CP', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOK 772', '09334772', '1', 'RUBEN HUARCAYA SOTELO', NULL, '2021-03-31', '150143', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-03-31 17:48:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('112', 'T001-0000370', '2021-03-31', '-', 'VENTA', '12', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10420294765', '6', 'VARGAS RODAS EVELIN CONSUELO', '01', '1', 'APB 558', '07837117', '1', 'ROSENDO JOVE QUISPE', NULL, '2021-03-31', '130101', 'AV. AMERICA SUR 4155,  URB. LOS PINOS - TRUJILLO - PERU', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-370, ha sido aceptado', 'wyWKhN/5+tAORcRdfivN7oqasns=', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('113', 'T001-0000371', '2021-04-05', '-', 'TRASLADO EMISOR ITINERANTE CP', '1014', '130', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOK 844', '80235830', '1', 'CEFERINO VASQUEZ INGA', NULL, '2021-04-05', '150108', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-04-05 18:04:57', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('114', 'T001-0000372', '2021-04-05', '-', 'TRASLADO EMISOR ITINERANTE CP', '468', '60', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '18', '1', 'BJF 254', '10687765', '1', 'MELECIO MENDOZA AGURTO', NULL, '2021-04-05', '150103', '-', '150125', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA)', '0', 'soap-env:Client', '2554', '', '2', '2021-04-05 22:26:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('115', 'T001-0000373', '2021-04-06', '-', 'TRASLADO EMISOR ITINERANTE CP', '2028', '260', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '18', '1', 'F7U 836', '33734722', '1', 'GRANDEZ CHUQUIPUL EDGAR ASUNCION', NULL, '2021-04-06', '150142', '-', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '0', 'soap-env:Client', '2554', '', '2', '2021-04-06 13:20:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('116', 'T001-0000374', '2021-04-06', '-', '0', '312', '40', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '18', '1', 'F7U 836', '33734722', '1', 'GRANDEZ CHUQUIPUL EDGAR ASUNCION', NULL, '2021-04-06', '150142', '-', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '0', 'soap-env:Client', '2554', '', '2', '2021-04-06 13:36:53', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('117', 'T001-0000375', '2021-04-06', '-', 'TRASLADO EMISOR ITINERANTE CP', '7706', '988', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '18', '1', '0', '0', '0', 'GRANDEZ CHUQUIPUL EDGAR ASUNCION', NULL, '2021-04-06', '150132', '-', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '0', 'soap-env:Client', '2554', '', '2', '2021-04-06 13:54:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('118', 'T001-0000376', '2021-04-06', '-', 'TRASLADO EMISOR ITINERANTE CP', '390', '50', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'BCL 880', '44218837', '1', 'LUIS DELGADO PARIELA', NULL, '2021-04-06', '150125', 'EL NORTEÑO', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '0', 'soap-env:Client', '2554', '', '2', '2021-04-06 20:04:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('119', 'T001-0000377', '2021-04-06', '-', 'VENTA', '68', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'AWD 857', '76917423', '1', 'JOVE LLOCLLA FRANK CHRISTOPHER', NULL, '2021-04-06', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE, CALLAO - PERU', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', NULL, NULL, NULL, NULL, '2', '2021-04-06 20:27:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('120', 'T001-0000378', '2021-04-06', '-', 'VENTA', '68', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'AWD 857', '76917423', '1', 'JOVE LLOCLLA FRANK CHRISTOPHER', NULL, '2021-04-06', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE, CALLAO - PERU', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-378, ha sido aceptado', 'VBuEhJFu2ncmOFCwr97zJUYoZPs=', '2', '2021-04-06 20:37:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('121', 'T001-0000379', '2021-04-07', '-', 'TRASLADO EMISOR ITINERANTE CP', '2340', '300', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'F7U 836', '33734722', '1', 'EDGAR GRANDEZ', NULL, '2021-04-07', '150112', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-04-07 13:24:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('122', 'T001-0000380', '2021-04-07', '-', '0', '240', '30', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'AWB 857', '76917423', '1', 'Frank Jove', NULL, '2021-04-07', '150108', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-04-07 14:17:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('123', 'T001-0000381', '2021-04-07', '-', 'VENTA', '71', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'ARF 341', '08269826', '1', 'JOSE ALCOCER PEÑA', NULL, '2021-04-07', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE, CALLAO - PERU', '150101', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-381, ha sido aceptado', 'uxEiKE4NSIJrzp4JnDeZJMw16vA=', '2', '2021-04-07 15:30:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('124', 'T001-0000382', '2021-04-07', '-', 'TRASLADO EMISOR ITINERANTE CP', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'ANK 836', '43622771', '1', 'RAUL MARTIN VARGAS MEGO', NULL, '2021-04-07', '150110', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-04-07 16:44:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('125', 'T001-0000383', '2021-04-07', '-', 'TRASLADO EMISOR ITINERANTE CP', '156', '20', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FOI 949', '10027459', '1', 'REYNALDO VALVERDE MIRANDA', NULL, '2021-04-07', '150125', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-04-07 18:08:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('126', 'T001-0000384', '2021-04-07', '-', 'TRASLADO EMISOR ITINERANTE CP', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'M1P 818', '06801466', '1', 'VILLAVICENCIO MONTERO JAVIER', NULL, '2021-04-07', '150111', '-', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '2554', '', '2', '2021-04-07 20:35:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('127', 'T001-0000385', '2021-04-08', '-', 'TRASLADO EMISOR ITINERANTE CP', '2574', '330', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGGATAS MAJLUF', '18', '1', 'F7U 836', '09384855', '1', 'JOSE ESCUSEL SERNAQUE', NULL, '2021-04-08', '150115', '-', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '0', 'soap-env:Client', '2554', '', '2', '2021-04-08 13:26:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('128', 'T001-0000386', '2021-04-08', '-', 'TRASLADO EMISOR ITINERANTE CP', '421', '54', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'FO1 949', '10027459', '1', 'VALVERDE MIRANDA  REYNALDO  EFRAIN', NULL, '2021-04-08', '150103', 'VITARTE', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '0', 'soap-env:Client', '2554', '', '2', '2021-04-08 14:07:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('129', 'T001-0000387', '2021-04-08', '-', 'TRASLADO EMISOR ITINERANTE CP', '312', '40', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'D3J 111', '10366278', '1', 'JUSTO RAMIREZ AYME', NULL, '2021-04-08', '150132', 'SAN JUAN DE LURIGANCHO', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '0', 'soap-env:Client', '2554', '', '2', '2021-04-08 14:16:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('130', 'T001-0000388', '2021-04-08', '-', 'TRASLADO EMISOR ITINERANTE CP', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '18', '1', 'AWD 857', '76917423', '1', 'FRANK JOVE LLOCLLA', NULL, '2021-04-08', '150125', '-', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '0', 'soap-env:Client', '2554', '', '2', '2021-04-08 18:59:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('131', 'T001-0000389', '2021-04-08', '-', 'VENTA', '780', '100', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07827893', '1', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '01', '1', 'FOJ 702', '41030463', '1', 'ERICK LINO RAMIREZ', NULL, '2021-04-08', '150132', '-', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-389, ha sido aceptado', 'HiUIBmZG0fL9Arm7sGJSg8dw9Nk=', '2', '2021-04-08 19:13:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('132', 'T001-0000390', '2021-04-09', '-', 'VENTA', '10', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10456315092', '6', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '01', '1', 'AWB 857', '76917423', '1', 'Frank Jove', NULL, '2021-04-09', '150140', 'PASAJE LOS HERMES CON ARIADNA SANTIAGO', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-390, ha sido aceptado', 'rhuL0fDYilMY5rCM7BSMUdm8cTY=', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('133', 'T001-0000391', '2021-04-09', '-', 'VENTA', '25', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '01', '1', 'AWB 857', '76917423', '1', 'Frank Jove', NULL, '2021-04-09', '150115', 'JR. LUNA PIZARRO 1122- LA VICTORIA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-391, ha sido aceptado', '92RNdXlzjp5lqLZZHUqfZYiF8no=', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('134', 'T001-0000392', '2021-04-09', '-', 'VENTA', '35', '8', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20486021773', '6', 'DANIEL FERNANDO ABUGATTAS MAJLUF', '01', '1', 'AWB 857', '76917423', '1', 'Frank Jove', NULL, '2021-04-09', '150115', 'JR. 636 LA, JR. ALEXANDER VON HUMBOLT, LA  VICTORIA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-392, ha sido aceptado', 'vUOzTQCJq/IcP2V0TR00CdrRMUE=', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('135', 'T001-0000393', '2021-04-09', '-', 'VENTA', '5', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20607054160', '6', 'GRUPO CAMACHO E.I.R.L.', '01', '1', 'AWB 857', '76917423', '1', 'FRANK JOVE', NULL, '2021-04-09', '150140', 'AV. PRIMAVERA 1295-B', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', NULL, NULL, NULL, NULL, '2', '2021-04-09 14:57:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('136', 'T001-0000394', '2021-04-09', '-', 'VENTA', '71', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20565695968', '6', 'ENGLOBE SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA ', '01', '1', 'AWB 857', '76917423', '1', 'FRANK JOVE', NULL, '2021-04-09', '150113', 'AV. BRASIL 863 - DPTO 1301 TORRE B', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-394, ha sido aceptado', 'Itgl1wSGP+xit8s4U32po/aWzP0=', '2', '2021-04-09 15:09:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('137', 'T001-0000395', '2021-04-09', '-', 'VENTA', '71', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10456315092', '6', 'PAUCAR RUPAY JULIANA MARIANGELA', '01', '1', 'AWB 857', '76917423', '1', 'FRANK JOVE', NULL, '2021-04-09', '150140', 'PASAJE LOS HERMES CON ARIADNA SANTIAGO DE SURCO (EN TODA UNA ESQUINA AL LADO DE  LA LIBRERÍA)', '150101', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-395, ha sido aceptado', '1q+M0sAwhZC1eHruDHxdp0/SAoE=', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('138', 'T001-0000396', '2021-04-09', '-', 'VENTA', '25', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '01', '1', 'AWB 857', '76917423', '1', 'FRANK JOVE', NULL, '2021-04-09', '150115', 'JR. LUNA PIZARRO 1122- LA VICTORIA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-396, ha sido aceptado', 'F6FF3+awQBt5v9hnAWI59B8npKo=', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('139', 'T001-0000397', '2021-04-09', '-', 'VENTA', '35', '8', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20486021773', '6', 'EMPRESA AGRARIA CAFETALERA CHANCHAMAYO HIGHLAND COFFEE ', '01', '1', 'AWB 857', '76917423', '1', 'FRANK JOVE', NULL, '2021-04-09', '150115', 'JR. 636 LA, JR. ALEXANDER VON HUMBOLT, LA  VICTORIA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-397, ha sido aceptado', 'j1GLHXycwSYXSNcceSP2hloK+oQ=', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('140', 'T001-0000398', '2021-04-09', '-', 'VENTA', '5', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20607054160', '6', 'GRUPO CAMACHO E.I.R.L.', '01', '1', 'AWB 857', '76917423', '1', 'FRANK JOVE', NULL, '2021-04-09', '150140', 'SURCO, AV. PRIMAVERA 1295-B', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-398, ha sido aceptado', 'hZY1xqxJt95dpLdzNlX7zgUr6wc=', '2', '2021-04-09 15:26:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('141', 'T001-0000399', '2021-04-09', '-', 'VENTA', '71', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20565695968', '6', 'ENGLOBE SOCIEDAD COMERCIAL DE RESPONSABILIDAD LIMITADA ', '01', '1', 'AWB 857', '76917423', '1', 'FRANK JOVE', NULL, '2021-04-09', '150113', 'AV. BRADIL 863 - DPTO 1301 TORRE B', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-399, ha sido aceptado', 'SzdizebZ7SbVZdK8cF38tqzR0mU=', '2', '2021-04-09 15:28:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('142', 'T001-0000400', '2021-04-12', '-', 'VENTA', '369', '82', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW 651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-04-12', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-400, ha sido aceptado', 'QDKd9DbN4cqRO1SeVXR5e2rayJ4=', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('143', 'T001-0000401', '2021-04-13', '-', 'VENTA', '94', '20', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'BSW651', '10097464435', '6', 'yvan jove', NULL, '2021-04-13', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE, CALLAO - PERU', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-401, ha sido aceptado', 'fGP7eWxUPPZQjVM8mO/qTkW/luk=', '2', '2021-04-13 21:09:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('144', 'T001-0000402', '2021-04-19', '-', 'VENTA', '217', '57', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW-651', '10097464453', '6', 'YVAN JOVE', NULL, '2021-04-19', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZJ LOTE 11-B LOTIZACION SEMI RUSTICA CHILLON PUENTE PIEDRA', NULL, NULL, NULL, NULL, '2', '2021-04-19 17:04:25', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('145', 'T001-0000403', '2021-04-19', '-', 'VENTA', '217', '57', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-04-19', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZJ LOTE 11-B LOTIZACION SEMI RUSTICA CHILLON PUENTE PIEDRA', '1', '0', 'El Comprobante  numero T001-403, ha sido aceptado', 'V55LpUrmdQ0f0R1pt2PdWH/wBx4=', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('146', 'T001-0000404', '2021-04-20', '-', '0', '118', '25', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'BSW 651', '10097464435', '6', 'YVAN JOVE CENTURION', NULL, '2021-04-20', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE, CALLAO - PERU', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-404, ha sido aceptado', '9TA0wa+IQ70lbjAjh8NBtTCd+n8=', '2', '2021-04-20 18:41:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('147', 'T001-0000405', '2021-04-23', '-', 'VENTA', '13', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10763118261', '6', 'BARRAZA AVALOS ANA VICTORIA', '01', '1', 'APB558', '7837117', '1', 'ROSENDO JOVE', NULL, '2021-04-23', '130101', 'TRUJILLO', '150125', 'CALLE LOS ALAMOS MZJ LOTE 11-B LOTIZACION SEMI RUSTICA CHILLON PUENTE PIEDRA', '1', '0', 'El Comprobante  numero T001-405, ha sido aceptado', 'u4f6W9V4X4ND+XP4EkU3nxmxmZM=', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('148', 'T001-0000406', '2021-04-23', '-', 'VENTA', '24', '7', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20528130853', '6', 'BARRAZA AVALOS ANA VICTORIA', '01', '1', 'APB558', '7837117', '1', 'ROSENDO JOVE', NULL, '2021-04-23', '160113', 'URB CALVO DE ARAUJO MZ G  LOTE 4', '150125', 'CALLE LOS ALAMOS MZJ LOTE 11-B LOTIZACION SEMI RUSTICA CHILLON PUENTE PIEDRA', '1', '0', 'El Comprobante  numero T001-406, ha sido aceptado', 'y2JW2b6IbbcTNwEtqlx+1yE7jwc=', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('149', 'T001-0000407', '2021-04-23', '-', '0', '3', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603874413', '6', 'BARRAZA AVALOS ANA VICTORIA', '01', '1', 'APB558', '7837117', '1', 'ROSENDO JOVE', NULL, '2021-04-23', '190301', 'JR GUSTAVSON 654', '150125', 'CALLE LOS ALAMOS MZJ LOTE 11-B LOTIZACION SEMI RUSTICA CHILLON PUENTE PIEDRA', '1', '0', 'El Comprobante  numero T001-407, ha sido aceptado', 'w9kCWjzazVTFTQ6PQZyZq6me0bc=', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('150', 'T001-0000408', '2021-04-23', '-', 'VENTA', '24', '7', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20528130853', '6', 'BARRAZA AVALOS ANA VICTORIA', '01', '1', 'APB558', '7837117', '1', 'ROSENDO JOVE', NULL, '2021-04-23', '160101', 'URB CALVO DE ARAUJO MZ G  LOTE 4', '150125', 'CALLE LOS ALAMOS MZJ LOTE 11-B LOTIZACION SEMI RUSTICA CHILLON PUENTE PIEDRA', '1', '0', 'El Comprobante  numero T001-408, ha sido aceptado', 'ivJiNqiGLoDRfHpf1RKGGqJmG6o=', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('151', 'T001-0000409', '2021-04-23', '-', 'VENTA', '14', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20528130853', '6', 'PERU UNLIMITED E.I.R.L.', '01', '1', 'APB 558', '7837117', '1', 'Rosendo Jove', NULL, '2021-04-23', '150115', 'AV. JOSE GALVES 635 LA VICTORIA', '150125', 'CALLE LOS ALAMOZ, MZ J, LOTE 11-B, LOTIZACION SEMI RUSTICA', '1', '0', 'El Comprobante  numero T001-409, ha sido aceptado', 'oj0WBgOXzLr0F0yC+aNoLz01oa8=', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('152', 'T001-0000410', '2021-04-23', '-', 'VENTA', '4', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603874413', '6', 'BIOLETT GOURMET E.I.R.L.', '01', '1', 'APB558', '7837117', '1', 'ROSENDO JOVE', NULL, '2021-04-23', '150115', 'CALLE ENRIQUE 988 SAN LUIS', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 INT B LOTIZACION SMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-410, ha sido aceptado', 'amgXECDeBf+Tii12OUtPUKwQp1U=', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('153', 'T001-0000411', '2021-04-23', '-', 'VENTA', '11', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20537946378', '6', 'L\'COUSINE S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'yvan jove', NULL, '2021-04-23', '070101', 'AV ELMER FAUCETT  3453 INT  4C  CALLAO', '150125', 'CALLE LOS ALAMOS MZJ LOTE 11-B LOTIZACION SEMI RUSTICA CHILLON PUENTE PIEDRA', '1', '0', 'El Comprobante  numero T001-411, ha sido aceptado', 'r+LMcqNv4cRMStt7UxCunZ0KCMw=', '2', '2021-04-23 21:07:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('154', 'T001-0000412', '2021-04-26', '-', '0', '21', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '01', '1', 'APB558', '07837117', '1', 'ROSENDO JOVE', NULL, '2021-04-26', '200101', 'AV. H VIDAL UNDA NRO  MAGISTERIO 2DA ETAPA DPTO 502', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11-B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-412, ha sido aceptado', '1/cvpYtHmbP9cuhfiM9RNHXqy+c=', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('155', 'T001-0000413', '2021-04-26', '-', 'VENTA', '71', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'BSW 651', '10097464435', '6', 'IVAN FRANKIE JOVE QUISPE', NULL, '2021-04-26', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-413, ha sido aceptado', '8ZwxCeCXixb7si5I2whztpnFBH8=', '2', '2021-04-26 20:37:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('156', 'T001-0000414', '2021-04-27', '-', '0', '237', '54', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW651', '10097464435', '6', 'IVAN JOVE', NULL, '2021-04-27', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-414, ha sido aceptado', 'zQY6KHiEaorkiV1JaLIWff+1T8A=', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('157', 'T001-0000415', '2021-04-27', '-', 'VENTA', '16', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603696388', '6', 'MIDWAY PERU SOCIEDAD ANONIMA CERRADA', '01', '1', 'APB558', '078837117', '1', 'ROSENDO JOVE', NULL, '2021-04-27', '150122', 'AV ANGAMOS ESTE 1625', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11B LOTIZACION SEMIRUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-415, ha sido aceptado', 'ePAvh6adesBCMTaCCXEn9Od+uY8=', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('158', 'T001-0000416', '2021-04-28', 'CONSIGNACION', 'OTROS', '9929', '1260', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603794274', '6', 'EMBOTELLADORA Y PROCESADORA URIARTE & GUIVAR E.I.R.L.', '13', '1', 'M6K 716', '09015266', '1', 'RICARDO CONDE MEDINA', NULL, '2021-04-28', '140105', 'CALLE JORGE CHAVEZ N 122', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', NULL, NULL, NULL, NULL, '2', '2021-04-28 17:35:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('159', 'T001-0000417', '2021-04-28', 'CONSIGNACION', 'OTROS', '9929', '1260', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603794274', '6', 'EMBOTELLADORA Y PROCESADORA URIARTE & GUIVAR E.I.R.L.', '13', '1', 'M6K 716', '10411560142', '6', 'RICARDO CONDE MEDINA', NULL, '2021-04-28', '140105', 'CALLE JORGE CHAVEZ N 122', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-417, ha sido aceptado', 'tQK8aK8CaRhrskl9Cq4nvl49G5g=', '2', '2021-04-28 17:53:27', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('160', 'T001-0000418', '2021-04-29', '-', 'VENTA', '9', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603912790', '6', 'SUPERTANI S.A.C.', '01', '1', 'APB 558', '078837117', '1', 'ROSENDO JOVE', NULL, '2021-04-29', '150136', 'CALLE SAN CARLOS 179, SAN MIGUEL', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-418, ha sido aceptado', 'bb1CbvXQwPMzvE2WOTce8xkaIdY=', '2', '2021-04-29 17:47:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('161', 'T001-0000419', '2021-04-29', '-', 'VENTA', '9', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605001051', '6', 'CORPORACION MENTA DEL PERU S.A.C.', '01', '1', 'APB 558', '078837117', '1', 'ROSENDO JOVE', NULL, '2021-04-29', '150117', 'AV. JOSE SANTOS CHOCANO 1321 URB. LAS PALMERAS - LOS OLIVOS - LIMA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-419, ha sido aceptado', 'Nvp4pk81WwAiRARGJ9rYWE/mB98=', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('162', 'T001-0000420', '2021-04-29', '-', 'VENTA', '9', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602564526', '6', '6G E.I.R.L.', '01', '1', 'APB-558', '078837117', '1', 'ROSENDO JOVE', NULL, '2021-04-30', '150115', 'JR. ALEXANDER VON HUMBOLT 580', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-420, ha sido aceptado', 'YET/ppfbNWMD0BltGOK0EE5pW+s=', '2', '2021-04-29 17:59:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('163', 'T001-0000421', '2021-04-29', '-', 'VENTA', '316', '67', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20544142772', '6', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'IVAN FRANKIE JOVE QUISPE', NULL, '2021-04-29', '150141', 'CALLE VICTOR ALZAMORA 210, SURQUILLO - LIMA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-421, ha sido aceptado', 'ugFwC0mUEq8bqiQ1Q9uVu7oXbYA=', '2', '2021-04-29 18:02:57', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('164', 'T001-0000422', '2021-04-29', '-', 'VENTA', '25', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20566301718', '6', 'BUSINESS ARELLA BERENICE S.A.C.', '01', '1', 'APB-558', '078837117', '1', 'ROSENDO JOVE', NULL, '2021-04-30', '150122', 'CALLE MANUEL DE MENDIBURU N°383 - MIRAFLORES', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-422, ha sido aceptado', 'FJZhvF1EnHj5QHlVR6Q9+K1fKqo=', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('165', 'T001-0000423', '2021-04-29', '-', 'VENTA', '11', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20537946378', '6', 'L\'COUSINE S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'IVAN JOVE QUISPE', NULL, '2021-04-30', '070101', 'AV. ELMER FAUCETT 3453 INT 4C - CALLAO', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-423, ha sido aceptado', 'P5vz4IjZgUuNLOaoo78F+Ooe5jQ=', '2', '2021-04-29 21:44:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('166', 'T001-0000424', '2021-04-30', '-', 'VENTA', '15', '5', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10480148296', '6', 'CUBAS GAMONAL AUNER', '01', '1', 'APB-558', '078837117', '1', 'Rosendo Jove Quispe', NULL, '2021-04-30', '150114', 'ZARZAMORAS 193 - LA MOLINA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-424, ha sido aceptado', 'KeIsl3E5XSOmGRIfwGLKQcwVs4s=', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('167', 'T001-0000425', '2021-04-30', '-', 'VENTA', '9', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20607758388', '6', 'MARAVILLAS NATURALES S.A.C.', '01', '1', 'APB-558', '078837117', '1', 'Rosendo Jove Quispe', NULL, '2021-04-30', '150132', 'AV. LOS CIRUELOS 1024, 15434, SAN JUAN DE LURIGANCHO (ALMACEN)', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-425, ha sido aceptado', '727HX7x/jItzI9tWzvAcxKuTO8o=', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('168', 'T001-0000426', '2021-05-03', '-', '0', '109', '20', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'BSW 651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-05-03', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA  NORTE, CALLAO - PERU', '150125', 'CALLE LOS ALAMOS  URB PARCELA SEMI RUSTICA MZA J LOTE 11 INT B', '1', '0', 'El Comprobante  numero T001-426, ha sido aceptado', 'Q+h/vEZbc3xriimy/lUuYcjFAd8=', '2', '2021-05-03 16:42:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('169', 'T001-0000427', '2021-05-03', 'CONSIGNACION', 'OTROS', '9764', '1239', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20603794274', '6', 'EMBOTELLADORA Y PROCESADORA URIARTE & GUIVAR E.I.R.L.', '13', '1', 'M6X716', '10411560142', '6', 'RICARDO CONDE MEDINA', NULL, '2021-05-03', '140105', 'CALLE JORGE CHAVEZ N 122', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-427, ha sido aceptado', '3QjmIALjwlK2I6lQuwaunQ8wR2o=', '2', '2021-05-03 20:31:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('170', 'T001-0000428', '2021-05-05', '-', 'VENTA', '284', '66', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'IVAN FRANKIE JOVE CENTURION', NULL, '2021-05-05', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '0', 'soap-env:Client', '4000', '', '2', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('171', 'T001-0000429', '2021-05-05', '-', '0', '284', '66', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-05-05', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-429, ha sido aceptado', 'O2dPfTYq8x2TzZ0P7QMnxW2eUW0=', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('172', 'T001-0000430', '2021-05-05', '-', '0', '284', '66', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW-651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-05-05', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-430, ha sido aceptado', 'uxm7MD5mQ3cx2KJsokwu3LtMS/w=', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('173', 'T001-0000431', '2021-05-05', '-', 'OTROS', '200', '1', 'KGM', '6', 'DXL APPAREL GROUP SAC', '07643213', '1', 'MAGUIÑA EGUIZABAL RICARDO BALU', '13', '1', '-', '0', '0', '-', NULL, '2021-05-05', '150101', 'AV. ARGENTINA', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11B LOTIZACION SEMIRUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-431, ha sido aceptado', 'D87nhTE5copufoZGHWgOFsuIw0g=', '2', '2021-05-05 21:16:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('174', 'T001-0000432', '2021-05-05', '-', 'VENTA', '117', '15', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20510848617', '6', 'PANICORP S.A.C.', '01', '1', 'APB-558', '078837117', '1', 'ROSENDO JOVE', NULL, '2021-05-05', '150141', 'JR LIZARDO MONTERO 1100, SURQUILLO', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-432, ha sido aceptado', 'gzxg6n4Sy2h4gXCRLyAi0Gj5Xbc=', '2', '2021-05-05 22:15:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('175', 'T001-0000433', '2021-05-06', '-', 'VENTA', '21', '8', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605191143', '6', 'N & S DISTRIBUCIONES SOCIEDAD ANONIMA CERRADA', '01', '1', 'APB-558', '078837117', '1', 'ROSENDO JOVE', NULL, '2021-05-06', '150115', 'Javier Luna Pizarro 1122 La Victoria', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-433, ha sido aceptado', 'ByhLjjgrUvYYS22vjuH/QKT6BK4=', '2', '2021-05-06 20:08:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('176', 'T001-0000434', '2021-05-06', '-', 'VENTA', '22', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '10704792943', '6', 'JERI TRILLO JOSE ALCIDES', '01', '1', 'APB-558', '078837117', '1', 'ROSENDO JOVE', NULL, '2021-05-06', '150115', 'Jr Humbolt 460, La Victoria', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-434, ha sido aceptado', 'Fhf9s9+s29yLv92mMxZnu3tyTnQ=', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('177', 'T001-0000435', '2021-05-11', 'CONSIGNACION', 'OTROS', '128', '16', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20536974882', '6', 'CORPORACION CARHUACHUCO S.A.C.', '13', '1', 'D4P-304', '40999801', '1', 'NIELS SEGERSBOL', NULL, '2021-05-11', '150137', 'PASAJE GIRALDES PUESTO 2 - MERCADO DE SANTA ANITA', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-435, ha sido aceptado', 'WYV/pEc2GOBvFEQezmpdCVGyvyU=', '2', '2021-05-11 20:24:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('178', 'T001-0000436', '2021-05-12', '-', 'VENTA', '3', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20537946378', '6', 'L\'COUSINE S.A.C.', '01', '1', 'BSW 651', '10097464435', '6', 'YVAN FRANKIE JOVE CENTURION', NULL, '2021-05-12', '070101', 'AV. ELMER FAUCETT 3453 INT 4C', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-436, ha sido aceptado', 'hvkRycMWTlei5wUDpBwAn0LSp40=', '2', '2021-05-12 19:16:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('179', 'T001-0000437', '2021-05-12', '-', '0', '94', '20', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'BSW 651', '10097464435', '6', 'YVAN FRANKIE JOVE QUISPE', NULL, '2021-05-12', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE', '150125', 'URB. PARCELA SEMI RUSTICA CAL. LOS ALAMOS Mz J Dpto 11 Int B', '1', '0', 'El Comprobante  numero T001-437, ha sido aceptado', '3F0ZW5+9W6vOTuzGKyfWrJWABdQ=', '2', '2021-05-12 19:29:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('180', 'T001-0000438', '2021-05-12', '-', 'VENTA', '289', '75', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-05-13', '150142', 'CARRETERA PANAMERICANA NORTE SUR  KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-438, ha sido aceptado', 'uLgGIvh+UYApfDWeIwXITnEcjOk=', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('181', 'T001-0000439', '2021-05-13', '-', 'VENTA', '213', '45', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20544142772', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-05-13', '150141', 'CALLE  VICTOR  ALZAMORA  210  SURQUILLO LIMA', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-439, ha sido aceptado', '/YQoyZVQgZ+I8wz+Fp7F8Er1EEs=', '2', '2021-05-13 19:49:50', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('182', 'T001-0000440', '2021-05-13', '-', 'VENTA', '15', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20601038235', '6', 'MUNDO VERDE PRODUCTOS NATURALES S.A.C.', '01', '1', 'APB 558', '078837117', '1', 'ROSENDO JOVE QUISPE', NULL, '2021-05-13', '150140', 'AV JACARANDA 329, DPTO 303', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-440, ha sido aceptado', 'XhhKxkNKvEprbSobaIQUBElUqPw=', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('183', 'T001-0000441', '2021-05-13', '-', 'VENTA', '10', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602754163', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-05-14', '150131', 'CALLE MIGUEL DASSO 101', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-441, ha sido aceptado', 'vDl940oQXKyPd8/ZdqT3cadZ72g=', '2', '2021-05-13 22:14:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('184', 'T001-0000442', '2021-05-13', 'CONSIGNACION', 'OTROS', '120', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20606683066', '6', 'OPERACIONES COMERCIALES ORIENTE S.A.C.', '13', '1', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-05-14', '150115', 'AV MEXICO 1187', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-442, ha sido aceptado', 'Vz/VSW2bXIqgGe6sM6bBaz8aCI4=', '2', '2021-05-13 22:23:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('185', 'T001-0000443', '2021-05-14', '-', 'VENTA', '10', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602754163', '6', 'INTER ANDINA JGBL S.A.C.', '01', '1', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-05-14', '150131', 'CALLE MIGUEL DASSO 101', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-443, ha sido aceptado', 'ApGlxRpiohg5rzntfxw5T2m5XlE=', '2', '2021-05-14 13:59:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('186', 'T001-0000444', '2021-05-14', '-', 'VENTA', '10', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602754163', '6', 'VIDASANAHORIA S.A.C.', '01', '1', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-05-14', '150131', 'CALLE MIGUEL DASSO 101', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', NULL, NULL, NULL, NULL, '2', '2021-05-14 14:11:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('187', 'T001-0000445', '2021-05-14', '-', 'VENTA', '10', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602754163', '6', 'VIDASANAHORIA S.A.C.', '01', '1', 'BSW651', '10097464435', '6', 'YVAN JOVE', NULL, '2021-05-14', '150131', 'CALLE MIGUEL DASSO 101', '150125', 'CALLE LOS ALAMOS MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-445, ha sido aceptado', 'hy03cProtIBn2LwXtL0eeKRNGFQ=', '2', '2021-05-14 14:16:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('188', 'T001-0000446', '2021-05-14', '-', '0', '10', '4', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602754163', '6', 'VIDASANAHORIA S.A.C.', '01', '1', 'APB 558', '07883717', '1', 'ROSENDO JOVE QUISPE', NULL, '2021-05-14', '150131', 'CALLE MIGUEL DASSO 101', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-446, ha sido aceptado', '2jnRQQQxaK6HUZj2pa7G1erMICE=', '2', '2021-05-14 14:37:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('189', 'T001-0000447', '2021-05-14', '-', 'VENTA', '212', '45', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20544142772', '6', 'UNIVERSO COMERCIAL DEL PERU S.A.C.', '01', '1', 'BSW 651', '10097464435', '6', 'FRANKIE IVAN JOVE QUISPE', NULL, '2021-05-14', '150141', 'CALLE VICTOR ALZAMORA 210', '150125', 'CALLE LOS ALAMOS MZ J, LOTE 11 INT. B', '1', '0', 'El Comprobante  numero T001-447, ha sido aceptado', '69Ut3iGLfOVyJtVaDAz7i3r2hf4=', '2', '2021-05-14 14:45:26', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('190', 'T001-0000448', '2021-05-14', '-', 'VENTA', '72', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20606683066', '6', 'OPERACIONES COMERCIALES ORIENTE S.A.C.', '01', '1', '0', '0', '0', 'AGENCIA SHALOM', NULL, '2021-05-14', '250101', 'JR. PEDRO RODRIGUEZ PAIVA NRO. 157', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON,', '1', '0', 'El Comprobante  numero T001-448, ha sido aceptado', '60JWyAuayx8IhBj5WyGzG2rRG9A=', '2', '2021-05-14 19:17:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('191', 'T001-0000449', '2021-05-14', '-', '0', '72', '3', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20606683066', '6', 'OPERACIONES COMERCIALES ORIENTE S.A.C.', '01', '1', '0', '0', '0', 'AGENCIA SHALOM', NULL, '2021-05-14', '250101', 'PASAJE LAS BRISAS MZ 198 LOTE 18', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON,', '1', '0', 'El Comprobante  numero T001-449, ha sido aceptado', '0dApVH/YPjBBDsC78T40z9u4Uqo=', '2', '2021-05-14 19:36:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('192', 'T001-0000450', '2021-05-17', '-', 'VENTA', '11', '2', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20537946378', '6', 'L\'COUSINE S.A.C.', '01', '1', 'RIY918', '76917423', '1', 'FRANK JOVE', NULL, '2021-05-17', '070101', 'AV ELMER FAUCETT 3453 INT 4C CALLAO', '150125', 'CALLE LOS ALAMOS MZJ LOTE 11-B LOTIZACION SEMIRUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-450, ha sido aceptado', '7nSiiLyXvRvDxQ0v0sXfE5E+Jpw=', '2', '2021-05-17 17:32:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('193', 'T001-0000451', '2021-05-19', '-', 'VENTA', '94', '20', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20341848955', '6', 'GATE GOURMET PERU S.R.L.', '01', '1', 'ERI 622', '76917423', '1', 'FRANK JOVE LLOCLLA', NULL, '2021-05-19', '070101', 'AV. ELMER FOUCET S.N. AREOPUERTO INTERNACIONAL JORGE CHAVEZ - RAMPA NORTE', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA', '1', '0', 'El Comprobante  numero T001-451, ha sido aceptado', 's25lh301h1JVQOCmzbV2qClJHnM=', '2', '2021-05-19 19:14:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('194', 'T001-0000452', '2021-05-20', '-', 'VENTA', '497', '116', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20602029558', '6', 'INTER ANDINA JGBL S.A.C.', '01', '2', 'ERI 622', '76917423', '1', 'FRANK JOVE', NULL, '2021-05-20', '150142', 'CARRETERA PANAMERICANA SUR KM 19.2 LOTE 1 FUNDO NARANJAL', '150125', 'CALLE LOS ALAMOS, MZ J LOTE 11 B LOTIZACION SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-452, ha sido aceptado', 'jzmLvDcvgxy9o1/lK2Njn4zbaAs=', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('195', 'T001-0000453', '2021-05-20', '-', 'VENTA', '500', '144', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20348266684', '6', 'MAXON PERU SAC', '01', '1', 'ANG 754', '09832517', '1', 'LUIS ARRIAGA', NULL, '2021-05-20', '150108', 'Comunidad industrial 377, urb la villa', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON, PUENTE PIEDRA - LIMA', '1', '0', 'El Comprobante  numero T001-453, ha sido aceptado', 'WN6nStFP0VB+sOAHZyB5L/+qHrE=', '2', '2021-05-20 22:30:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('196', 'T001-0000454', '2021-05-21', '-', 'VENTA', '9', '1', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20605520104', '6', 'CANCINO COORPORATIVO E.I.R.L.', '01', '1', 'ERI 622', '76917423', '1', 'FRANK JOVE', NULL, '2021-05-21', '150115', 'AV. MEXICO 1187', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-454, ha sido aceptado', 'PmtzozGPn8Bngf/vLSZ7IEId9ig=', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('197', 'T001-0000455', '2021-05-21', '-', '0', '9', '1', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20606683066', '6', 'CANCINO COORPORATIVO E.I.R.L.', '01', '1', '0', '0', '6', 'AGENCIA SHALOM', NULL, '2021-05-21', '230101', 'CALLE MOLLENDO NRO 59 DPTO 202', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-455, ha sido aceptado', 'TWzH7N03jbn1yraUvqfW87q1J0M=', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('198', 'T001-0000456', '2021-05-21', '-', 'VENTA', '22', '27', 'KGM', '6', 'DXL APPAREL GROUP SAC', '20348266684', '6', 'MAXON PERU SAC', '01', '1', 'BFG 713', '28297214', '1', 'TITO CUBA', NULL, '2021-05-21', '150108', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON', '150125', 'CALLE LOS ALAMOS, MZ J, LOTE 11-B, LOTIZACIÓN SEMI RUSTICA CHILLON', '1', '0', 'El Comprobante  numero T001-456, ha sido aceptado', 'C2aUIirk/GObR2elsxLFRYzBfss=', '2', '2021-05-21 21:59:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('199', 'T001-0000457', '2021-08-13', 'rhtgf', 'VENTA', '5', '5', 'LTR', '6', 'Demo', '20172977911', '1', 'COLEGIO DE ARQUITECTOS DEL PERU-REGIONAL LIMA', '01', '1', 'rr54', '12345678912', '6', 'alexander Ponte', NULL, '2021-08-16', '170202', 'xxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxx', '040304', 'xxxxxxxxxxxxx', '1', '0', 'El Comprobante numero T001-0000457 ha sido aceptado', 'MUzxcgNbbIx2fUZsFO/KPgIhR8c=', '1', '2021-08-13 16:07:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('200', 'T001-458', '2023-04-17 09:04:05', 'guia de remision de transporte publico', '0', '9', '9', 'KGM', '6', 'Demo', '70980622', '1', 'PONTE TRUJILLO ALEXANDER KENY', '01', '1', 'dss34r', '10709806225', '6', 'PONTE TRUJILLO ALEXANDER KENY', '', '2023-04-17', '160302', 'Direccion de llegada', '160606', 'Direccion de salida', NULL, NULL, NULL, NULL, '1', '2023-04-18 02:31:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('201', 'T001-459', '2023-04-17 09:04:05', 'guia de remision de transporte publico', '0', '9', '9', 'KGM', '6', 'Demo', '70980622', '1', 'PONTE TRUJILLO ALEXANDER KENY', '01', '1', 'dss34r', '10709806225', '6', 'PONTE TRUJILLO ALEXANDER KENY', '', '2023-04-17', '160302', 'Direccion de llegada', '160606', 'Direccion de salida', NULL, NULL, NULL, NULL, '1', '2023-04-18 02:31:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('202', 'T001-460', '2023-04-17 09:04:20', 'guia de remision de transporte publico', '0', '45', '67', 'KGM', '6', 'Demo', '70980622', '1', 'LOPEZ MIRANDA YONATAN', '01', '1', 'dss34r', '10709806225', '6', 'PONTE TRUJILLO ALEXANDER KENY', '', '2023-04-17', '140117', 'canto chico', '020604', 'ecddddddddddddddddddddddddddd  ddddddddddddddddd dddddddd', NULL, NULL, NULL, NULL, '1', '2023-04-18 02:50:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('203', 'T001-461', '2023-04-17 09:04:09', 'guia de remision de transporte publico', 'VENTA', '44', '4', 'KGM', '6', 'Demo', '70980610', '1', 'LOPEZ MIRANDA YONATAN', '01', '1', 'dss34r', '10709806225', '6', 'PONTE TRUJILLO ALEXANDER KENY', '', '2023-04-17', '150905', 'Direccion de llegada', '180301', 'Direccion de salida', NULL, NULL, NULL, NULL, '1', '2023-04-18 02:55:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('204', 'T001-462', '2023-04-17 09:04:09', 'guia de remision de transporte publico', 'VENTA', '44', '4', 'KGM', '6', 'Demo', '70980610', '1', 'LOPEZ MIRANDA YONATAN', '01', '1', 'dss34r', '10709806225', '6', 'PONTE TRUJILLO ALEXANDER KENY', '', '2023-04-17', '150905', 'Direccion de llegada', '180301', 'Direccion de salida', NULL, NULL, NULL, NULL, '1', '2023-04-18 02:55:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('205', 'T001-463', '2023-04-17 09:04:09', 'guia de remision de transporte publico', 'VENTA', '44', '4', 'KGM', '6', 'Demo', '70980610', '1', 'LOPEZ MIRANDA YONATAN', '01', '1', 'dss34r', '10709806225', '6', 'PONTE TRUJILLO ALEXANDER KENY', '', '2023-04-17', '150905', 'Direccion de llegada', '180301', 'Direccion de salida', '1', '0', 'ACEPTADA', '', '1', '2023-04-18 02:59:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('206', 'T001-464', '2023-04-17 09:04:09', 'guia de remision de transporte publico', 'VENTA', '44', '4', 'KGM', '6', 'Demo', '70980610', '1', 'LOPEZ MIRANDA YONATAN', '01', '1', 'dss34r', '10709806225', '6', 'PONTE TRUJILLO ALEXANDER KENY', '', '2023-04-17', '150905', 'Direccion de llegada', '180301', 'Direccion de salida', '1', '0', 'ACEPTADA', '', '1', '2023-04-18 03:01:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('207', 'T001-465', '2023-04-17 09:04:09', 'guia de remision de transporte publico', 'VENTA', '44', '4', 'KGM', '6', 'Demo', '70980610', '1', 'LOPEZ MIRANDA YONATAN', '01', '1', 'dss34r', '10709806225', '6', 'PONTE TRUJILLO ALEXANDER KENY', '', '2023-04-17', '150905', 'Direccion de llegada', '180301', 'Direccion de salida', '1', '0', 'ACEPTADA', '', '1', '2023-04-18 03:09:50', NULL, NULL, '1');
INSERT INTO `tec_referral_guide` (`id`, `serieNumero`, `IssueDate`, `Note`, `DescriptionReasonTransfer`, `TotalGrossWeightGRE`, `NumberPackages`, `unitCodeGrossWeightGRE`, `TypeDocumenttransmitter`, `transmitterName`, `addresseeID`, `TypeDocumentaddressee`, `addresseeName`, `motivemovedCode`, `transfermobility`, `LicensePlateID`, `DriverPersonID`, `DriverPersonDocumentType`, `nameTransportista`, `licenseTransport`, `movedstartdate`, `DeliveryUbi`, `Delivery`, `OriginAddressUbi`, `OriginAddress`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('208', 'T001-466', '2023-04-17 11:04:59', 'Nota de prueba', 'Venta', '10', '10', 'KGM', '6', 'Demo', '20544105494', '6', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '01', '2', 'CBH013', '10306843', '1', 'ELIDIO ALFREDO, CONTRERAS ROJAS', 'A10306843', '2023-04-18', '040101', 'La Tomilla S/N', '150140', 'Av. Tomas Marsano 4163', '1', '0', 'ACEPTADA', '', '1', '2023-04-18 04:10:59', NULL, NULL, '1');


#
# TABLE STRUCTURE FOR: tec_referral_guide_files
#

DROP TABLE IF EXISTS `tec_referral_guide_files`;

CREATE TABLE `tec_referral_guide_files` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `referral_guide_id` int(11) NOT NULL,
  `file_name` varchar(300) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=195 DEFAULT CHARSET=utf8;

INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('1', '1', 'ATmQy3RUYt0KcZBFFko8.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('2', '2', '0xRnKit7Eb7cdEeTlQd.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('3', '5', 'kmdjwXoNcvtfAgHxeOBW.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('4', '6', 'YrCXaHVu9LTEjKEcgwEI.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('5', '7', '0pGFjyxwajKVP0jGew72.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('6', '8', '17G8U30jv9r6WNXKWt7s.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('7', '9', 'Ii9lhdrpu3kgsKp97ETL.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('8', '10', 'XH3cpUWNdaFCx1XDacND.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('9', '11', 'FeM2s78fScj957IxJgh.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('10', '12', 'Zd5knIlbu6hxaAnTmAe.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('11', '13', 'hPFwtZtFEqOMwoxZmTDn.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('12', '14', 'Sy4Z2RQEp9lf8aICLlA.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('13', '15', 'WY1IiQLP7zUSEC9Sgq1h.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('14', '16', 'lL7FMp4jJeDPL7AJtPX6.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('15', '17', 'tqUnthHLjLJ4ZQ1mw67Y.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('16', '18', 'VxjqyOYRRfk2fLDI2VDn.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('17', '19', 'B5MWxbOyGQhw6eYJTGjl.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('18', '20', 'muCVMZvh3Ht1IInuB5Fb.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('19', '21', 'xcNjKNonbOWN1bHzIYd.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('20', '22', 'OrWz46VrM1KiGlCNCTIH.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('21', '23', '9QdD5v4xIez8p2PlBr5o.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('22', '24', 'uavhhOY243S6jXf5JhTq.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('23', '25', 'p2FAKQzdyYJ5MNDuoAth.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('24', '26', 'kqSiDsisBdlIiXzsxYQd.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('25', '27', 'JNMYLQkekESZLGYE2h0k.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('26', '28', 'pYptd0DX7JKG3oeHpF.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('27', '29', 'xCa9VOWPxvh0bEr9Euml.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('28', '30', 'wEO4mLEPhEFCqTmEjISM.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('29', '31', 'AhxyqQwqvULMN2gAQPZW.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('30', '32', 'BvzlMi6tcjcOLTZi4iq.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('31', '33', 'I6I6nXNXp7MzgILXRYvJ.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('32', '34', 'zy8jeLN64sp27OjyUmHA.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('33', '35', 'FaunbK9PaShyKJmLXi0t.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('34', '36', 'tZhESDKrwAIepYDMdHP4.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('35', '37', 'H7vjYOItH7rnVCbprNa.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('36', '38', 'GjyhMBNlPcNpZJejfzkH.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('37', '39', 'txm50PZN1wjhwhYmKJv.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('38', '40', 'hlbOH73kt9rsy4FLPh.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('39', '41', 'erOH7DBlSqCAEHt8eJ2e.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('40', '42', 'ElroXqkufLYq2tkHgHIR.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('41', '43', 'UusBXzAZ0tih8XjkCO8x.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('42', '44', 'kdFCiHplkcKpCOD93KGL.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('43', '45', '2Ie5lbyYe9akbSg7Pqn.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('44', '46', 'cbxuj86l4koymPPXMQgC.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('45', '47', 'OVunVZBzadKwUqJm23j.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('46', '48', '6xYknOhEjwwMkjtJHsyH.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('47', '49', 'PxfLD8THM8N6Mkg0KvFY.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('48', '50', '9NCR6dTrd60AhATLCm25.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('49', '51', 'ECztacDUBR5yL1xT3WyQ.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('50', '52', 'juBF1cXAHIXyvlpZaZKe.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('51', '53', 'zW7gfRqC8j3LJvKMQBxr.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('52', '54', 'iw3mVSsnJQzi5h76Xi4.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('53', '55', 'hGjraus6AEfi2aRxIwYi.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('54', '56', 'ryJYfZe1g6FVYDwHzay.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('55', '57', 'MtdcTGMj7o88M9agoAN.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('56', '58', 'nrinGDyXWjR7UrMgtvdG.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('57', '59', 'u1bCFU5oJznhLhG72b2A.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('58', '60', 'q4rLvWKbYkUcyL7R4Nr2.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('59', '61', 'Ax7fXjnHn6OxbHLDTZSJ.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('60', '62', 'CyEMH5OvPpnhZfUtsK1.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('61', '63', 'M6irleVOWwm7cKSrdZG.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('62', '64', 'vhe6xktaTVoPjX61g90B.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('63', '65', 'tJZTV00Yc49B2ZquSpNZ.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('64', '66', '2sYaxorKZgX9zF15mYO.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('65', '67', 'ItOH0u8rqGyxXN6jeA.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('66', '68', 'jdDd2zJMIeZv44vmvNDn.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('67', '69', 'DzID3DMkk1wc2JFfRBPa.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('68', '70', 'RGbHw3ED66EuJ4DtVrY.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('69', '71', '1TvLFdzHLJ9cP5V2Or8.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('70', '72', 'om772Sc6hbJAZNNAkwNx.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('71', '73', 'NoSfQ6Rrmo7qbH4b8nDe.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('72', '74', 'fHZW4TvvMbm6Li2GegJM.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('73', '75', 'n7A7qeK8no7Old0HkASY.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('74', '76', 'XV86gZSvwQX8A8ow29V8.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('75', '77', 'zloMv2Frc0hbrwOLjoHE.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('76', '78', 'uinG10L93qiwdogVYEV.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('77', '79', 'Sf5udGgijJa8ymmlqOtq.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('78', '80', 'P2HEeSvRV417QjotRzPD.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('79', '81', 'V3ZgZHDUHXtYXRc7mMQ9.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('80', '82', 'yIPaoU3dHgpUzlc0S9lC.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('81', '83', 'qJl6mIpVsyPKcHxGthk4.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('82', '84', '1x37GDj06U2qafmxdEP.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('83', '85', 'SneFMJPi3bpq7qwf3jFd.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('84', '86', 'JVY4vPV1ZwR2ACNZGX0B.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('85', '87', 'DcOVV0zXQZqjfUtIU7au.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('86', '88', 'fWrIrb0SLggXvgm6Iip.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('87', '89', 'xrBGc5kPSwNWePlo1cvg.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('88', '90', '833K6uy9sh59ncEhRfiw.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('89', '91', 'fr0BeVEVpiYHQRpCJrzs.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('90', '92', '69AT8fXxwInvKTkLcdH1.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('91', '93', '7HdJmKqyIi4nDtKRJheB.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('92', '94', 'SinsNNmoE70JrokxWnTm.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('93', '95', 'LHjgozhoZE2AyLZJhJ4g.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('94', '96', 'RjXLygxJKejdYiW0mTXd.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('95', '97', 'pUxQygMfYSV6iJf0mxWN.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('96', '98', 'kdGdHQ9PpBNitfk2Cx9.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('97', '99', 'EpfE801eo05faoDVNqjR.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('98', '100', 'QLIEhlGDKkKbphU9Sx3h.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('99', '101', 'o1x5uutddVW8stVaS8cz.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('100', '102', 'Evm0ATwAmeyzdEUN8GRb.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('101', '103', '9mI3gE0b2rORyomqZP7J.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('102', '104', 'QW6N2EZ57oWxQK0AFxYI.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('103', '105', 'qlhpAtRT563Z4LDHak65.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('104', '106', 'HuOhJRC6vUzWNWxXj7Xo.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('105', '107', 'iE2YHIb8QlYVrt4sItk.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('106', '108', 'YzLczXmadkQqonqJlWA.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('107', '109', 'lqBR5wP1hCHJF7T0wIm5.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('108', '110', 'vkurBQUF4XvqDJznav2T.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('109', '111', 'yg4pqsnOAIZchcEtFF2p.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('110', '112', 'stBcotulS5Xe7py8rWmB.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('111', '113', '5ApFyThibdqUVbVU3T1v.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('112', '114', 'wDxyZzOSDEUmJbnSCE7o.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('113', '115', 't4wB5XIHQQTpn79LXh3d.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('114', '116', 'T82WHVqYQNL4ft8NMRSq.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('115', '117', 'zznOjiM70N8WCxcEQu1L.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('116', '118', '5FEzc71In0K13QeXawR.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('117', '120', 'XfNDi5YH5IpiUoLFLgVd.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('118', '121', 'TwqfE0gVgQ2WqPPzWM2d.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('119', '122', 'yRaxQIloYQKEew0KCcNH.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('120', '123', 'dO9aYAnge86dAPYg8wUk.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('121', '124', 'PQ55eyy0i2MIqMuPlkE.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('122', '125', 'tUqhbgFthhvHiGsP8mYd.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('123', '126', 'RB8VmSkQ5QIsq5tmUFuZ.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('124', '127', 'ytqMnxLZsyHpMzlnHNuz.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('125', '128', 't7mcu1cGKhuBrX2UBESg.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('126', '129', 'c6iI3I9Xg43rlqOmyLig.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('127', '130', 'HTOeLIaqboNQ8kJQs7h3.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('128', '131', 'wD71VNcDOfPc5wlZ0bQb.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('129', '132', 'CLxJO9TDwjRmbmme0IBM.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('130', '133', 'QjcIhN8V7KH4LZdTz5K.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('131', '134', 'PFyRYEJekyHptPFwIIfS.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('132', '136', '8AlF6xRmP2OvrY0Up6hV.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('133', '137', 'hCXsDAxNgXYFXC9ziaCR.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('134', '138', 'n1oLTuyJdrdtbWn9m2f.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('135', '139', 'Pc9h3L1E1NJk8PYSsupa.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('136', '140', 'iblo4EaG042tQBr6wZ3n.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('137', '141', 'IB87vPuA3GnHkrnYp05.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('138', '142', '9B5kXfyHrIWl38fMxAxm.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('139', '143', 'qm6dU71TZscJmVRbBi8I.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('140', '145', 'lwnQt94b2SG9aY21QYVk.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('141', '146', 'EBZn7u8emP6RF52XQWIp.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('142', '147', 'liAHtNKooAOIZ7RmGTa0.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('143', '148', 'HOsU8fHdw5lnLpILjBz.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('144', '149', 'Ix9dnXBTPjQY9YVZHs6h.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('145', '150', '0rmUu4s5tJqwMzadyabw.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('146', '151', 'nz6gnbxMsomWckZjpK.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('147', '152', '0oPpBTEUgvjxgekPI8K.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('148', '153', 'UhGOc9svgHOPAcRWXkzv.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('149', '154', 'g7akBFgbEqXkY3ZBYp8.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('150', '155', 'Zw8mDB4uB4PzHHN0GH.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('151', '156', 'fS0u6bBavS5amM5pQB1.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('152', '157', 'tdnTxD2wzAjTzLEUKTZ8.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('153', '159', 'aKGEwJQPfRUyjLx3cco.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('154', '160', 'YkwTNIyvzQj6s4wmeCQZ.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('155', '161', 'P6Sn0yQCc05Fgi6OwEis.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('156', '162', 'vWUuxjXXccPhMPfeaw7Y.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('157', '163', 'D4ZRwBOBoP5pniaF1sP.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('158', '164', '22ABDGkDiTSihqADuucX.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('159', '165', 'Kw8LHXFBB3ZdH5MXCPE7.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('160', '166', 'BaZI8gVdMT56oH576Uh7.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('161', '167', 'CIL7fNq7lEuOibdCBAnl.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('162', '168', 'V3YGkG8nQppdQ8CFax2.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('163', '169', 'Dz7kD4dhknfYG9nibwff.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('164', '171', 'TtPEaKvc18FMGRgOsPnr.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('165', '172', 'iqRN6Te2uelJLdCDwQW.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('166', '173', 'guZVvasyMWX8uhwokN6L.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('167', '174', 'y10SDF7P56fjJZq2byE8.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('168', '175', '3YIgaDckvzkyVgA0htJi.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('169', '176', '2sOFEXalMtNeAjlfa7Uh.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('170', '177', 'bmlgxvu6lpQLCAsCIoWh.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('171', '178', 'iO5KtqvmiI93qFeJCX.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('172', '179', 'o9Zwm1yQeRGnIVUqXm1G.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('173', '180', '5B2jjfGBLawSOk6PHvA6.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('174', '181', 'iyVzKuS40EB1MWhAWQpj.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('175', '182', 'gt804RT09vOFgkRGTwJY.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('176', '183', '6A7fk4iM8b8NM76Wy4eC.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('177', '184', 'RIXjXMe1C3DgvPs5syYx.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('178', '185', 'OHbyhxoxDQEK57mHEfZo.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('179', '187', 'zcvnWOM0fezXCx0u7DEI.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('180', '188', 'tUK4zLAmeSoy2PT6DfU.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('181', '189', '7zVIcgMW8K0oXErw0coy.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('182', '190', 'LQypUKcXbSEMT4RswlLA.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('183', '191', 'Zv6j11x6zD43591uFlrm.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('184', '192', 'gpYlCRiq1j69eNcT0sdg.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('185', '193', 'ye3ACMF34derIjDzKDb9.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('186', '194', '1VAE8C2Si9hgIIKYeh8z.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('187', '195', 'adTT3QNLcUrIl6HxgxA.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('188', '196', 'j6ygFkco9A8lc8KfEl6S.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('189', '197', 'uXzvIBzRtbtIs44ORjW.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('190', '198', 'cG4dBoYKx8LPuYmvMui.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('191', '199', 'lrPaJHU2hmSbEp4k7Ew.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('192', '206', 'sZNlxxB4uxFe4AJBtcxE.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('193', '205', 'EPWUog7jTPbFIY2iMu.pdf');
INSERT INTO `tec_referral_guide_files` (`id`, `referral_guide_id`, `file_name`) VALUES ('194', '208', 'AmycHJzsd46mnUAyQMGd.pdf');


#
# TABLE STRUCTURE FOR: tec_referral_guide_items
#

DROP TABLE IF EXISTS `tec_referral_guide_items`;

CREATE TABLE `tec_referral_guide_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `id_referral_guide` int(11) NOT NULL,
  `ProductID` varchar(20) NOT NULL,
  `ProductCode` varchar(50) NOT NULL,
  `ProductName` varchar(100) NOT NULL,
  `QuantityProduct` int(11) NOT NULL,
  `unitCode` varchar(10) NOT NULL,
  `user_create` int(11) NOT NULL,
  `date_create` datetime NOT NULL,
  `user_upgrade` int(11) DEFAULT NULL,
  `date_upgrade` datetime DEFAULT NULL,
  `estado` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=766 DEFAULT CHARSET=utf8;

INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('1', '1', '0', '7', 'AGUA DE MESA HOLO 620ML', '10', 'NIU', '2', '2021-02-01 14:53:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('2', '1', '0', '12345', 'AGUA DE MESA HOLO 7LT', '100', 'NIU', '2', '2021-02-01 14:53:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('3', '2', '0', '12345', 'AGUA DE MESA HOLO 7LT', '100', 'NIU', '2', '2021-02-01 18:53:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('4', '2', '0', '7', 'AGUA DE MESA HOLO 620ML', '10', 'NIU', '2', '2021-02-01 18:53:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('5', '3', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648', 'NIU', '2', '2021-02-03 14:01:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('6', '4', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648', 'NIU', '2', '2021-02-03 14:03:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('7', '5', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648', 'NIU', '2', '2021-02-03 14:55:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('8', '6', '0', '6', 'AGUA DE MESA HOLO 500ML', '25', 'NIU', '2', '2021-02-04 13:02:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('9', '6', '0', '8', 'AGUA DE MESA 7LT', '100', 'NIU', '2', '2021-02-04 13:02:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('10', '7', '152', '83', 'CHIP DE QUINUA NATURAL', '30', 'NIU', '2', '2021-02-04 15:58:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('11', '7', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '36', 'NIU', '2', '2021-02-04 15:58:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('12', '7', '155', '79', 'CEREAL DE QUINUA NATURAL', '24', 'NIU', '2', '2021-02-04 15:58:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('13', '7', '151', '125', 'GALLETA DE QUINUA', '30', 'NIU', '2', '2021-02-04 15:58:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('14', '8', '0', '12345', 'AGUA DE MESA HOLO 7LT', '100', 'NIU', '2', '2021-02-04 16:20:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('15', '9', '0', '1235', 'AJEU X 15 UND', '3825', 'NIU', '2', '2021-02-04 17:19:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('16', '10', '0', '12345', 'AGUA DE MESA HOLO 7LT', '56', 'NIU', '2', '2021-02-05 13:47:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('17', '10', '0', '6', 'AGUA DE MESA HOLO 500ML', '55', 'NIU', '2', '2021-02-05 13:47:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('18', '11', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '70', 'NIU', '2', '2021-02-05 14:31:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('19', '11', '155', '79', 'CEREAL DE QUINUA NATURAL', '20', 'NIU', '2', '2021-02-05 14:31:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('20', '11', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30', 'NIU', '2', '2021-02-05 14:31:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('21', '11', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '20', 'NIU', '2', '2021-02-05 14:31:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('22', '11', '152', '83', 'CHIP DE QUINUA NATURAL', '20', 'NIU', '2', '2021-02-05 14:31:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('23', '12', '0', '1236', 'AJIZ X 15 UND', '3808', 'NIU', '2', '2021-02-05 21:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('24', '13', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160', 'NIU', '2', '2021-02-09 13:50:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('25', '14', '0', '1235', 'AJEU X 15 UND', '1080', 'NIU', '2', '2021-02-09 21:14:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('26', '15', '0', '1235', 'AJEU X 15 UND', '900', 'NIU', '2', '2021-02-09 22:47:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('27', '16', '0', '1235', 'AJEU X 15 UND', '434', 'NIU', '2', '2021-02-09 23:05:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('28', '17', '0', '1500', 'AMJVR X 15 UND', '1100', 'NIU', '2', '2021-02-10 21:10:55', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('29', '18', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '480', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('30', '18', '155', '79', 'CEREAL DE QUINUA NATURAL', '480', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('31', '18', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3312', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('32', '18', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('33', '18', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1584', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('34', '18', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2448', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('35', '18', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '720', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('36', '18', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('37', '18', '152', '83', 'CHIP DE QUINUA NATURAL', '42', 'NIU', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('38', '19', '155', '79', 'CEREAL DE QUINUA NATURAL', '48', 'NIU', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('39', '19', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '48', 'NIU', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('40', '19', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('41', '19', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('42', '19', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('43', '19', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24', 'NIU', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('44', '19', '152', '83', 'CHIP DE QUINUA NATURAL', '36', 'NIU', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('45', '20', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '7', 'NIU', '2', '2021-02-11 14:51:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('46', '20', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '8', 'NIU', '2', '2021-02-11 14:51:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('47', '20', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '20', 'NIU', '2', '2021-02-11 14:51:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('48', '20', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '30', 'NIU', '2', '2021-02-11 14:51:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('49', '20', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30', 'NIU', '2', '2021-02-11 14:51:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('50', '20', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '30', 'NIU', '2', '2021-02-11 14:51:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('51', '21', '155', '79', 'CEREAL DE QUINUA NATURAL', '48', 'NIU', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('52', '21', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '48', 'NIU', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('53', '21', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('54', '21', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('55', '21', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('56', '21', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24', 'NIU', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('57', '21', '152', '83', 'CHIP DE QUINUA NATURAL', '36', 'NIU', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('58', '22', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('59', '22', '155', '79', 'CEREAL DE QUINUA NATURAL', '11', 'NIU', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('60', '22', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30', 'NIU', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('61', '22', '152', '83', 'CHIP DE QUINUA NATURAL', '80', 'NIU', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('62', '22', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '30', 'NIU', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('63', '22', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30', 'NIU', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('64', '22', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('65', '22', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('66', '23', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('67', '23', '155', '79', 'CEREAL DE QUINUA NATURAL', '11', 'NIU', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('68', '23', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30', 'NIU', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('69', '23', '152', '83', 'CHIP DE QUINUA NATURAL', '80', 'NIU', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('70', '23', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '30', 'NIU', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('71', '23', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30', 'NIU', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('72', '23', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('73', '23', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('74', '24', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648', 'NIU', '2', '2021-02-12 13:40:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('75', '25', '0', '1236', 'AJIZ X 15 UND', '1777', 'NIU', '2', '2021-02-12 18:35:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('76', '26', '0', '1236', 'AJIZ X 15 UND', '2031', 'NIU', '2', '2021-02-12 21:36:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('77', '27', '0', '1236', 'AJIZ X 15 UND', '1407', 'NIU', '2', '2021-02-15 22:05:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('78', '28', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '24', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('79', '28', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '24', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('80', '28', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('81', '28', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('82', '28', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('83', '28', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('84', '28', '155', '79', 'CEREAL DE QUINUA NATURAL', '5', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('85', '28', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('86', '28', '152', '83', 'CHIP DE QUINUA NATURAL', '10', 'NIU', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('87', '29', '0', '030713', 'UNID. CONCENTRADO FRESA DXL-05', '17', 'NIU', '2', '2021-02-18 16:15:12', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('88', '30', '0', ' FRACCION D ', 'UNID. CONCENTRADO FRESA DXL-05 ', '17', 'NIU', '2', '2021-02-18 16:29:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('89', '31', '0', ' FRACCION D ', 'UNID. CONCENTRADO FRESA DXL-05 ', '17', 'NIU', '2', '2021-02-18 16:33:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('90', '32', '0', '06', 'AGUA DE MESA HOLO 500ML', '270', 'NIU', '2', '2021-02-19 13:56:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('91', '33', '0', '06', 'AGUA DE MESA HOLO 500ML', '321', 'NIU', '2', '2021-02-22 14:01:12', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('92', '34', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1296', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('93', '34', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1584', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('94', '34', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1008', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('95', '34', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1008', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('96', '34', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('97', '34', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '288', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('98', '34', '152', '83', 'CHIP DE QUINUA NATURAL', '210', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('99', '34', '155', '79', 'CEREAL DE QUINUA NATURAL', '240', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('100', '34', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '240', 'NIU', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('101', '35', '151', '125', 'GALLETA DE QUINUA', '50', 'NIU', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('102', '35', '152', '83', 'CHIP DE QUINUA NATURAL', '50', 'NIU', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('103', '35', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '200', 'NIU', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('104', '35', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '100', 'NIU', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('105', '35', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '10', 'NIU', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('106', '35', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '10', 'NIU', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('107', '35', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('108', '35', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '100', 'NIU', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('109', '36', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('110', '36', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('111', '36', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('112', '36', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('113', '36', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('114', '36', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('115', '36', '152', '83', 'CHIP DE QUINUA NATURAL', '24', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('116', '36', '155', '79', 'CEREAL DE QUINUA NATURAL', '24', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('117', '36', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('118', '36', '151', '125', 'GALLETA DE QUINUA', '24', 'NIU', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('119', '37', '151', '125', 'GALLETA DE QUINUA', '15', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('120', '37', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('121', '37', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '10', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('122', '37', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '8', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('123', '37', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('124', '37', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('125', '37', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('126', '37', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '10', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('127', '37', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('128', '38', '0', '1271', 'PUERTA DE TRABLERO ELECTRICO', '1', 'NIU', '2', '2021-02-23 21:31:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('129', '38', '0', '1272', 'COMPUERTA DE PLACAS DE INYECCION DE AIRE DEL HORNO', '1', 'NIU', '2', '2021-02-23 21:31:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('130', '39', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('131', '39', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('132', '39', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('133', '39', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('134', '39', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '4', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('135', '39', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '4', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('136', '39', '152', '83', 'CHIP DE QUINUA NATURAL', '6', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('137', '39', '155', '79', 'CEREAL DE QUINUA NATURAL', '3', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('138', '39', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('139', '39', '151', '125', 'GALLETA DE QUINUA', '4', 'NIU', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('140', '40', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1728', 'NIU', '2', '2021-02-26 19:07:03', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('141', '41', '0', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '8784', 'NIU', '2', '2021-03-02 14:44:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('142', '42', '155', '79', 'CEREAL DE QUINUA NATURAL', '216', 'NIU', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('143', '42', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '108', 'NIU', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('144', '42', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016', 'NIU', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('145', '42', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1872', 'NIU', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('146', '42', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1152', 'NIU', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('147', '42', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1584', 'NIU', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('148', '42', '152', '83', 'CHIP DE QUINUA NATURAL', '84', 'NIU', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('149', '43', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '40', 'NIU', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('150', '43', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '40', 'NIU', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('151', '43', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '40', 'NIU', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('152', '43', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '40', 'NIU', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('153', '43', '152', '83', 'CHIP DE QUINUA NATURAL', '36', 'NIU', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('154', '43', '155', '79', 'CEREAL DE QUINUA NATURAL', '24', 'NIU', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('155', '43', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24', 'NIU', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('156', '44', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('157', '44', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('158', '44', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('159', '44', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('160', '44', '152', '83', 'CHIP DE QUINUA NATURAL', '24', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('161', '44', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('162', '44', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('163', '44', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('164', '44', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('165', '45', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('166', '45', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('167', '45', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '144', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('168', '45', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '144', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('169', '45', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '144', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('170', '45', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '144', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('171', '45', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '144', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('172', '45', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('173', '45', '152', '83', 'CHIP DE QUINUA NATURAL', '42', 'NIU', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('174', '46', '155', '79', 'CEREAL DE QUINUA NATURAL', '48', 'NIU', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('175', '46', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '48', 'NIU', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('176', '46', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '60', 'NIU', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('177', '46', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '60', 'NIU', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('178', '46', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '60', 'NIU', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('179', '46', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '60', 'NIU', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('180', '46', '151', '125', 'GALLETA DE QUINUA', '60', 'NIU', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('181', '46', '152', '83', 'CHIP DE QUINUA NATURAL', '36', 'NIU', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('182', '47', '155', '79', 'CEREAL DE QUINUA NATURAL', '36', 'NIU', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('183', '47', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '120', 'NIU', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('184', '47', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '48', 'NIU', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('185', '47', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('186', '47', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '48', 'NIU', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('187', '47', '151', '125', 'GALLETA DE QUINUA', '24', 'NIU', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('188', '47', '152', '83', 'CHIP DE QUINUA NATURAL', '60', 'NIU', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('189', '48', '0', '7', 'AGUA DE MESA HOLO 620ML', '50', 'NIU', '2', '2021-03-05 22:06:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('190', '49', '0', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '142', 'NIU', '2', '2021-03-09 19:40:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('191', '49', '0', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '142', 'NIU', '2', '2021-03-09 19:40:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('192', '50', '0', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440', 'NIU', '2', '2021-03-10 16:30:50', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('193', '51', '0', '06', 'AGUA DE MESA HOLO 500ML', '270', 'NIU', '2', '2021-03-10 17:36:13', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('194', '52', '0', '06', 'AGUA DE MESA HOLO 500ML', '1080', 'NIU', '2', '2021-03-10 17:43:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('195', '53', '0', '79', 'CEREAL DE QUINUA NATURAL', '15', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('196', '53', '0', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '15', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('197', '53', '0', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('198', '53', '0', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('199', '53', '0', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('200', '53', '0', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('201', '53', '0', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('202', '53', '0', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('203', '53', '0', '83', 'CHIP DE QUINUA NATURAL', '15', 'NIU', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('204', '54', '0', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1728', 'NIU', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('205', '54', '0', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1152', 'NIU', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('206', '54', '0', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720', 'NIU', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('207', '54', '0', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1584', 'NIU', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('208', '54', '0', '79', 'CEREAL DE QUINUA NATURAL', '288', 'NIU', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('209', '54', '0', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '96', 'NIU', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('210', '54', '0', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '144', 'NIU', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('211', '54', '0', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144', 'NIU', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('212', '55', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160', 'NIU', '2', '2021-03-17 18:58:28', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('213', '56', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '167', 'NIU', '2', '2021-03-17 18:59:46', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('214', '56', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167', 'NIU', '2', '2021-03-17 18:59:46', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('215', '57', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '167', 'NIU', '2', '2021-03-17 19:21:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('216', '57', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167', 'NIU', '2', '2021-03-17 19:21:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('217', '58', '0', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1728', 'NIU', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('218', '58', '0', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1872', 'NIU', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('219', '58', '0', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1728', 'NIU', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('220', '58', '0', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1720', 'NIU', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('221', '58', '0', '79', 'CEREAL DE QUINUA NATURAL', '156', 'NIU', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('222', '58', '0', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120', 'NIU', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('223', '58', '0', '83', 'CHIP DE QUINUA NATURAL', '126', 'NIU', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('224', '59', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('225', '59', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '20', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('226', '59', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '20', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('227', '59', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '20', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('228', '59', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '20', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('229', '59', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '20', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('230', '59', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '20', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('231', '59', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('232', '59', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('233', '59', '151', '125', 'GALLETA DE QUINUA', '50', 'NIU', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('234', '60', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1728', 'NIU', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('235', '60', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1872', 'NIU', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('236', '60', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1728', 'NIU', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('237', '60', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720', 'NIU', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('238', '60', '155', '79', 'CEREAL DE QUINUA NATURAL', '156', 'NIU', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('239', '60', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120', 'NIU', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('240', '60', '152', '83', 'CHIP DE QUINUA NATURAL', '126', 'NIU', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('241', '61', '0', '545', 'ABJG   HOLITA  X 15 UNIDADES', '4', 'NIU', '2', '2021-03-22 18:17:55', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('242', '62', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('243', '62', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('244', '62', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '25', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('245', '62', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('246', '62', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '25', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('247', '62', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '20', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('248', '62', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '20', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('249', '62', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('250', '62', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('251', '63', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '120', 'NIU', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('252', '63', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '120', 'NIU', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('253', '63', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '120', 'NIU', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('254', '63', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '120', 'NIU', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('255', '63', '152', '83', 'CHIP DE QUINUA NATURAL', '24', 'NIU', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('256', '63', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24', 'NIU', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('257', '63', '155', '79', 'CEREAL DE QUINUA NATURAL', '24', 'NIU', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('258', '63', '151', '125', 'GALLETA DE QUINUA', '24', 'NIU', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('259', '64', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('260', '64', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('261', '64', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('262', '64', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('263', '64', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('264', '64', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('265', '64', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('266', '64', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('267', '64', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('268', '64', '151', '125', 'GALLETA DE QUINUA', '12', 'NIU', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('269', '65', '155', '79', 'CEREAL DE QUINUA NATURAL', '252', 'NIU', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('270', '65', '36', '71', 'CAJA DE CEREAL CHOCOLATE', '216', 'NIU', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('271', '65', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1872', 'NIU', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('272', '65', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160', 'NIU', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('273', '65', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720', 'NIU', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('274', '65', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '864', 'NIU', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('275', '65', '152', '83', 'CHIP DE QUINUA NATURAL', '252', 'NIU', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('276', '65', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '288', 'NIU', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('277', '66', '0', '277', 'AGUA DE MESA MAQUILA 500ML', '194', 'NIU', '2', '2021-03-25 15:21:23', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('278', '67', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-03-25 16:27:22', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('279', '68', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2304', 'NIU', '2', '2021-03-25 17:13:53', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('280', '69', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '96', 'NIU', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('281', '69', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '132', 'NIU', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('282', '69', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '48', 'NIU', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('283', '69', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '72', 'NIU', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('284', '69', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '36', 'NIU', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('285', '69', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '36', 'NIU', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('286', '69', '152', '83', 'CHIP DE QUINUA NATURAL', '96', 'NIU', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('287', '70', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '90', 'NIU', '2', '2021-03-25 18:40:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('288', '70', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '72', 'NIU', '2', '2021-03-25 18:40:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('289', '70', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30', 'NIU', '2', '2021-03-25 18:40:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('290', '70', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '36', 'NIU', '2', '2021-03-25 18:40:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('291', '71', '75', 'SC3', 'AJMG X 15 UND', '5', 'NIU', '2', '2021-03-25 20:25:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('292', '72', '152', '83', 'CHIP DE QUINUA NATURAL', '60', 'NIU', '2', '2021-03-25 20:27:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('293', '72', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-03-25 20:27:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('294', '72', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '18', 'NIU', '2', '2021-03-25 20:27:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('295', '72', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36', 'NIU', '2', '2021-03-25 20:27:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('296', '72', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '18', 'NIU', '2', '2021-03-25 20:27:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('297', '72', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-03-25 20:27:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('298', '73', '0', '06', 'AGUA DE MESA HOLO 500ML', '90', 'NIU', '2', '2021-03-25 22:32:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('299', '74', '0', '06', 'AGUA DE MESA HOLO 500ML', '180', 'NIU', '2', '2021-03-26 14:03:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('300', '75', '0', '06', 'AGUA DE MESA HOLO 500ML', '192', 'NIU', '2', '2021-03-26 20:47:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('301', '76', '0', '06', 'AGUA DE MESA HOLO 500ML', '108', 'NIU', '2', '2021-03-26 20:57:04', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('302', '77', '0', '06', 'AGUA DE MESA HOLO 500ML', '258', 'NIU', '2', '2021-03-26 21:04:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('303', '78', '0', '06', 'AGUA DE MESA HOLO 500ML', '108', 'NIU', '2', '2021-03-26 21:07:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('304', '79', '0', '06', 'AGUA DE MESA HOLO 500ML', '150', 'NIU', '2', '2021-03-27 12:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('305', '80', '0', '06', 'AGUA DE MESA HOLO 500ML', '90', 'NIU', '2', '2021-03-27 14:15:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('306', '81', '0', '277', 'AGUA DE MESA MAQUILA 500ML', '1500', 'NIU', '2', '2021-03-27 21:56:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('307', '82', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-03-29 13:28:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('308', '83', '0', '06', 'AGUA DE MESA HOLO 500ML', '304', 'NIU', '2', '2021-03-29 13:32:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('309', '84', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-03-29 13:39:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('310', '85', '0', '06', 'AGUA DE MESA HOLO 500ML', '10', 'NIU', '2', '2021-03-29 13:50:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('311', '86', '0', '06', 'AGUA DE MESA HOLO 500ML', '130', 'NIU', '2', '2021-03-29 15:16:26', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('312', '87', '0', '06', 'AGUA DE MESA HOLO 500ML', '150', 'NIU', '2', '2021-03-29 15:48:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('313', '88', '0', '06', 'AGUA DE MESA HOLO 500ML', '472', 'NIU', '2', '2021-03-29 16:53:03', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('314', '89', '0', '06', 'AGUA DE MESA HOLO 500ML', '248', 'NIU', '2', '2021-03-29 17:04:50', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('315', '90', '0', '06', 'AGUA DE MESA HOLO 500ML', '118', 'NIU', '2', '2021-03-29 17:20:17', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('316', '91', '0', '06', 'AGUA DE MESA HOLO 500ML', '300', 'NIU', '2', '2021-03-29 17:52:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('317', '92', '0', '06', 'AGUA DE MESA HOLO 500ML', '50', 'NIU', '2', '2021-03-29 19:02:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('318', '93', '0', '06', 'AGUA DE MESA HOLO 500ML', '480', 'NIU', '2', '2021-03-29 20:46:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('319', '94', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-03-29 21:30:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('320', '95', '0', '06', 'AGUA DE MESA HOLO 500ML', '250', 'NIU', '2', '2021-03-30 15:57:46', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('321', '96', '0', '06', 'AGUA DE MESA HOLO 500ML', '180', 'NIU', '2', '2021-03-30 17:05:26', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('322', '97', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-03-30 18:08:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('323', '98', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('324', '98', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('325', '98', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('326', '98', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('327', '98', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('328', '98', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('329', '98', '152', '83', 'CHIP DE QUINUA NATURAL', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('330', '98', '155', '79', 'CEREAL DE QUINUA NATURAL', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('331', '98', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1', 'NIU', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('332', '99', '0', '06', 'AGUA DE MESA HOLO 500ML', '440', 'NIU', '2', '2021-03-30 21:01:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('333', '100', '0', '06', 'AGUA DE MESA HOLO 500ML', '472', 'NIU', '2', '2021-03-30 21:18:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('334', '101', '0', '06', 'AGUA DE MESA HOLO 500ML', '136', 'NIU', '2', '2021-03-30 21:59:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('335', '102', '0', '06', 'AGUA DE MESA HOLO 500ML', '150', 'NIU', '2', '2021-03-30 22:01:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('336', '103', '155', '79', 'CEREAL DE QUINUA NATURAL', '36', 'NIU', '2', '2021-03-31 14:01:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('337', '103', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '36', 'NIU', '2', '2021-03-31 14:01:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('338', '103', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '144', 'NIU', '2', '2021-03-31 14:01:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('339', '103', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '144', 'NIU', '2', '2021-03-31 14:01:43', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('340', '104', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('341', '104', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('342', '104', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('343', '104', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('344', '104', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '25', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('345', '104', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '25', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('346', '104', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '20', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('347', '104', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '20', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('348', '104', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('349', '105', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-03-31 14:23:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('350', '106', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('351', '106', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('352', '106', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('353', '106', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('354', '106', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('355', '106', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('356', '106', '152', '83', 'CHIP DE QUINUA NATURAL', '16', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('357', '106', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('358', '106', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('359', '106', '151', '125', 'GALLETA DE QUINUA', '12', 'NIU', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('360', '107', '0', '06', 'AGUA DE MESA HOLO 500ML', '248', 'NIU', '2', '2021-03-31 14:59:13', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('361', '108', '155', '79', 'CEREAL DE QUINUA NATURAL', '48', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('362', '108', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('363', '108', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '576', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('364', '108', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('365', '108', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '576', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('366', '108', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '576', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('367', '108', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '144', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('368', '108', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('369', '108', '152', '83', 'CHIP DE QUINUA NATURAL', '168', 'NIU', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('370', '109', '0', '06', 'AGUA DE MESA HOLO 500ML', '460', 'NIU', '2', '2021-03-31 16:25:24', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('371', '110', '0', '06', 'AGUA DE MESA HOLO 500ML', '264', 'NIU', '2', '2021-03-31 17:01:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('372', '111', '0', '277', 'AGUA DE MESA MAQUILA 500ML', '100', 'NIU', '2', '2021-03-31 17:48:35', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('373', '112', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('374', '112', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('375', '112', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('376', '112', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('377', '112', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '25', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('378', '112', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '25', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('379', '112', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '20', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('380', '112', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '20', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('381', '112', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('382', '113', '0', '06', 'AGUA DE MESA HOLO 500ML', '130', 'NIU', '2', '2021-04-05 18:04:57', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('383', '114', '0', '06', 'AGUA DE MESA HOLO 500ML', '60', 'NIU', '2', '2021-04-05 22:26:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('384', '115', '0', '06', 'AGUA DE MESA HOLO 500ML', '260', 'NIU', '2', '2021-04-06 13:20:52', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('385', '116', '0', '06', 'AGUA DE MESA HOLO 500ML', '40', 'NIU', '2', '2021-04-06 13:36:53', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('386', '117', '0', '06', 'AGUA DE MESA HOLO 500ML', '988', 'NIU', '2', '2021-04-06 13:54:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('387', '118', '0', '06', 'AGUA DE MESA HOLO 500ML', '50', 'NIU', '2', '2021-04-06 20:04:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('388', '119', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160', 'NIU', '2', '2021-04-06 20:27:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('389', '120', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160', 'NIU', '2', '2021-04-06 20:37:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('390', '121', '0', '06', 'AGUA DE MESA HOLO 500ML', '300', 'NIU', '2', '2021-04-07 13:24:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('391', '122', '0', '06', 'AGUA DE MESA HOLO 500ML', '20', 'NIU', '2', '2021-04-07 14:17:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('392', '122', '0', '545', 'ABJG   HOLITA  X 15 UNIDADES', '10', 'NIU', '2', '2021-04-07 14:17:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('393', '123', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160', 'NIU', '2', '2021-04-07 15:30:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('394', '124', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-04-07 16:44:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('395', '125', '0', '06', 'AGUA DE MESA HOLO 500ML', '20', 'NIU', '2', '2021-04-07 18:08:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('396', '126', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-04-07 20:35:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('397', '127', '0', '545', 'ABJG   HOLITA  X 15 UNIDADES', '330', 'NIU', '2', '2021-04-08 13:26:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('398', '128', '0', '06', 'AGUA DE MESA HOLO 500ML', '54', 'NIU', '2', '2021-04-08 14:07:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('399', '129', '0', '06', 'AGUA DE MESA HOLO 500ML', '40', 'NIU', '2', '2021-04-08 14:16:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('400', '130', '0', '545', 'ABJG   HOLITA  X 15 UNIDADES', '100', 'NIU', '2', '2021-04-08 18:59:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('401', '131', '0', '06', 'AGUA DE MESA HOLO 500ML', '100', 'NIU', '2', '2021-04-08 19:13:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('402', '132', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('403', '132', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('404', '132', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('405', '132', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('406', '132', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('407', '132', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('408', '132', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('409', '132', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('410', '132', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('411', '133', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '150', 'NIU', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('412', '133', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '150', 'NIU', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('413', '133', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '150', 'NIU', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('414', '133', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '150', 'NIU', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('415', '133', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('416', '133', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '16', 'NIU', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('417', '133', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '16', 'NIU', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('418', '134', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '200', 'NIU', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('419', '134', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '200', 'NIU', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('420', '134', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '200', 'NIU', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('421', '134', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '200', 'NIU', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('422', '134', '155', '79', 'CEREAL DE QUINUA NATURAL', '16', 'NIU', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('423', '134', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '16', 'NIU', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('424', '134', '152', '83', 'CHIP DE QUINUA NATURAL', '50', 'NIU', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('425', '135', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 14:57:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('426', '135', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-04-09 14:57:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('427', '136', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6', 'NIU', '2', '2021-04-09 15:09:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('428', '136', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6', 'NIU', '2', '2021-04-09 15:09:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('429', '136', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-04-09 15:09:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('430', '136', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-04-09 15:09:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('431', '136', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 15:09:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('432', '136', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-04-09 15:09:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('433', '137', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('434', '137', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('435', '137', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('436', '137', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('437', '137', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('438', '137', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('439', '137', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('440', '137', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('441', '137', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('442', '138', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '150', 'NIU', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('443', '138', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '150', 'NIU', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('444', '138', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '150', 'NIU', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('445', '138', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '150', 'NIU', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('446', '138', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('447', '138', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '16', 'NIU', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('448', '138', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '16', 'NIU', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('449', '139', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '200', 'NIU', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('450', '139', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '200', 'NIU', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('451', '139', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '200', 'NIU', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('452', '139', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '200', 'NIU', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('453', '139', '155', '79', 'CEREAL DE QUINUA NATURAL', '16', 'NIU', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('454', '139', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '16', 'NIU', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('455', '139', '152', '83', 'CHIP DE QUINUA NATURAL', '50', 'NIU', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('456', '140', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 15:26:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('457', '140', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-04-09 15:26:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('458', '141', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6', 'NIU', '2', '2021-04-09 15:28:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('459', '141', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6', 'NIU', '2', '2021-04-09 15:28:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('460', '141', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-04-09 15:28:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('461', '141', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-04-09 15:28:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('462', '141', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-09 15:28:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('463', '141', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-04-09 15:28:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('464', '142', '155', '79', 'CEREAL DE QUINUA NATURAL', '252', 'NIU', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('465', '142', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120', 'NIU', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('466', '142', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2736', 'NIU', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('467', '142', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440', 'NIU', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('468', '142', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720', 'NIU', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('469', '142', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1440', 'NIU', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('470', '142', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '432', 'NIU', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('471', '142', '152', '83', 'CHIP DE QUINUA NATURAL', '168', 'NIU', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('472', '143', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880', 'NIU', '2', '2021-04-13 21:09:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('473', '144', '155', '79', 'CEREAL DE QUINUA NATURAL', '132', 'NIU', '2', '2021-04-19 17:04:25', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('474', '144', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120', 'NIU', '2', '2021-04-19 17:04:25', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('475', '144', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016', 'NIU', '2', '2021-04-19 17:04:25', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('476', '144', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '720', 'NIU', '2', '2021-04-19 17:04:25', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('477', '144', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720', 'NIU', '2', '2021-04-19 17:04:25', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('478', '144', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1152', 'NIU', '2', '2021-04-19 17:04:25', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('479', '144', '152', '83', 'CHIP DE QUINUA NATURAL', '168', 'NIU', '2', '2021-04-19 17:04:25', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('480', '145', '155', '79', 'CEREAL DE QUINUA NATURAL', '132', 'NIU', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('481', '145', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120', 'NIU', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('482', '145', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016', 'NIU', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('483', '145', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '720', 'NIU', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('484', '145', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720', 'NIU', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('485', '145', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1152', 'NIU', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('486', '145', '152', '83', 'CHIP DE QUINUA NATURAL', '168', 'NIU', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('487', '146', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3600', 'NIU', '2', '2021-04-20 18:41:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('488', '147', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '31', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('489', '147', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('490', '147', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '15', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('491', '147', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '15', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('492', '147', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '10', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('493', '147', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '10', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('494', '147', '152', '83', 'CHIP DE QUINUA NATURAL', '24', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('495', '147', '155', '79', 'CEREAL DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('496', '147', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('497', '147', '151', '125', 'GALLETA DE QUINUA', '12', 'NIU', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('498', '148', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('499', '148', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('500', '148', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('501', '148', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('502', '148', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '16', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('503', '148', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '16', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('504', '148', '152', '83', 'CHIP DE QUINUA NATURAL', '36', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('505', '148', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('506', '148', '155', '79', 'CEREAL DE QUINUA NATURAL', '20', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('507', '148', '151', '125', 'GALLETA DE QUINUA', '24', 'NIU', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('508', '149', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('509', '149', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('510', '149', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('511', '149', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('512', '149', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '3', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('513', '149', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '3', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('514', '149', '152', '83', 'CHIP DE QUINUA NATURAL', '6', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('515', '149', '155', '79', 'CEREAL DE QUINUA NATURAL', '3', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('516', '149', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('517', '149', '151', '125', 'GALLETA DE QUINUA', '6', 'NIU', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('518', '150', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('519', '150', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('520', '150', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('521', '150', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('522', '150', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '16', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('523', '150', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '16', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('524', '150', '152', '83', 'CHIP DE QUINUA NATURAL', '36', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('525', '150', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('526', '150', '155', '79', 'CEREAL DE QUINUA NATURAL', '20', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('527', '150', '151', '125', 'GALLETA DE QUINUA', '24', 'NIU', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('528', '151', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('529', '151', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('530', '151', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('531', '151', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('532', '151', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '16', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('533', '151', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '16', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('534', '151', '152', '83', 'CHIP DE QUINUA NATURAL', '36', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('535', '151', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('536', '151', '155', '79', 'CEREAL DE QUINUA NATURAL', '20', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('537', '151', '151', '125', 'GALLETA DE QUINUA', '24', 'NIU', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('538', '152', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('539', '152', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('540', '152', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('541', '152', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('542', '152', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '3', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('543', '152', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '3', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('544', '152', '152', '83', 'CHIP DE QUINUA NATURAL', '6', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('545', '152', '155', '79', 'CEREAL DE QUINUA NATURAL', '3', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('546', '152', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('547', '152', '151', '125', 'GALLETA DE QUINUA', '6', 'NIU', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('548', '153', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '167', 'NIU', '2', '2021-04-23 21:07:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('549', '153', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167', 'NIU', '2', '2021-04-23 21:07:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('550', '154', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '60', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('551', '154', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '60', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('552', '154', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '60', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('553', '154', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '60', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('554', '154', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('555', '154', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('556', '154', '152', '83', 'CHIP DE QUINUA NATURAL', '24', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('557', '154', '151', '125', 'GALLETA DE QUINUA', '14', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('558', '154', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('559', '154', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '24', 'NIU', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('560', '155', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160', 'NIU', '2', '2021-04-26 20:37:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('561', '156', '155', '79', 'CEREAL DE QUINUA NATURAL', '216', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('562', '156', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('563', '156', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1176', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('564', '156', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '888', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('565', '156', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '456', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('566', '156', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '288', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('567', '156', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '168', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('568', '156', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '600', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('569', '156', '152', '83', 'CHIP DE QUINUA NATURAL', '42', 'NIU', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('570', '157', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('571', '157', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('572', '157', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('573', '157', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('574', '157', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '30', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('575', '157', '152', '83', 'CHIP DE QUINUA NATURAL', '28', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('576', '157', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('577', '157', '155', '79', 'CEREAL DE QUINUA NATURAL', '15', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('578', '157', '151', '125', 'GALLETA DE QUINUA', '12', 'NIU', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('579', '158', '0', '12314', 'AJMEU X 15 UND', '1260', 'NIU', '2', '2021-04-28 17:35:40', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('580', '159', '0', '12314', 'AJMEU X 15 UND', '1260', 'NIU', '2', '2021-04-28 17:53:27', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('581', '160', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '36', 'NIU', '2', '2021-04-29 17:47:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('582', '160', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '36', 'NIU', '2', '2021-04-29 17:47:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('583', '160', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-04-29 17:47:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('584', '161', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '10', 'NIU', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('585', '161', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('586', '161', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6', 'NIU', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('587', '161', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '10', 'NIU', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('588', '161', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '8', 'NIU', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('589', '161', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('590', '161', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12', 'NIU', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('591', '162', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-04-29 17:59:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('592', '162', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-04-29 17:59:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('593', '162', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-04-29 17:59:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('594', '162', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-04-29 17:59:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('595', '162', '152', '83', 'CHIP DE QUINUA NATURAL', '12', 'NIU', '2', '2021-04-29 17:59:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('596', '162', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-04-29 17:59:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('597', '163', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648', 'NIU', '2', '2021-04-29 18:02:57', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('598', '164', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('599', '164', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('600', '164', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('601', '164', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('602', '164', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '15', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('603', '164', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '15', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('604', '164', '152', '83', 'CHIP DE QUINUA NATURAL', '40', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('605', '164', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('606', '164', '155', '79', 'CEREAL DE QUINUA NATURAL', '15', 'NIU', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('607', '165', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '167', 'NIU', '2', '2021-04-29 21:44:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('608', '165', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167', 'NIU', '2', '2021-04-29 21:44:37', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('609', '166', '155', '79', 'CEREAL DE QUINUA NATURAL', '15', 'NIU', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('610', '166', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24', 'NIU', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('611', '166', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('612', '166', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('613', '166', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '24', 'NIU', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('614', '166', '152', '83', 'CHIP DE QUINUA NATURAL', '50', 'NIU', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('615', '166', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '15', 'NIU', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('616', '167', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30', 'NIU', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('617', '167', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25', 'NIU', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('618', '167', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25', 'NIU', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('619', '167', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '20', 'NIU', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('620', '167', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('621', '167', '152', '83', 'CHIP DE QUINUA NATURAL', '20', 'NIU', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('622', '167', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('623', '167', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('624', '168', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880', 'NIU', '2', '2021-05-03 16:42:44', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('625', '169', '0', '12314', 'AJMEU X 15 UND', '1239', 'NIU', '2', '2021-05-03 20:31:45', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('626', '170', '155', '79', 'CEREAL DE QUINUA NATURAL', '168', 'NIU', '2', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('627', '170', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '156', 'NIU', '2', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('628', '170', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1152', 'NIU', '2', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('629', '170', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440', 'NIU', '2', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('630', '170', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1296', 'NIU', '2', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('631', '170', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1584', 'NIU', '2', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('632', '170', '152', '83', 'CHIP DE QUINUA NATURAL', '42', 'NIU', '2', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('633', '171', '155', '79', 'CEREAL DE QUINUA NATURAL', '168', 'NIU', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('634', '171', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '156', 'NIU', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('635', '171', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1152', 'NIU', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('636', '171', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440', 'NIU', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('637', '171', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1296', 'NIU', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('638', '171', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1584', 'NIU', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('639', '171', '152', '83', 'CHIP DE QUINUA NATURAL', '42', 'NIU', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('640', '172', '155', '79', 'CEREAL DE QUINUA NATURAL', '168', 'NIU', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('641', '172', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '156', 'NIU', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('642', '172', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1152', 'NIU', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('643', '172', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440', 'NIU', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('644', '172', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1296', 'NIU', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('645', '172', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1584', 'NIU', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('646', '172', '152', '83', 'CHIP DE QUINUA NATURAL', '42', 'NIU', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('647', '173', '0', '1114', 'COMPRESOR DORIN S7H 20 HP T/A R404A, R134A, R22 220-380 H2001CC', '1', 'NIU', '2', '2021-05-05 21:16:07', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('648', '174', '198', '1115', 'AJHP X 15 UND', '15', 'NIU', '2', '2021-05-05 22:15:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('649', '175', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24', 'NIU', '2', '2021-05-06 20:08:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('650', '175', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-05-06 20:08:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('651', '175', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-05-06 20:08:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('652', '175', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24', 'NIU', '2', '2021-05-06 20:08:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('653', '175', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '40', 'NIU', '2', '2021-05-06 20:08:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('654', '175', '155', '79', 'CEREAL DE QUINUA NATURAL', '40', 'NIU', '2', '2021-05-06 20:08:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('655', '176', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('656', '176', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('657', '176', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('658', '176', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('659', '176', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('660', '176', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '15', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('661', '176', '152', '83', 'CHIP DE QUINUA NATURAL', '24', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('662', '176', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('663', '176', '155', '79', 'CEREAL DE QUINUA NATURAL', '8', 'NIU', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('664', '177', '182', '1234', 'BJGH', '16', 'NIU', '2', '2021-05-11 20:24:06', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('665', '178', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '167', 'NIU', '2', '2021-05-12 19:16:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('666', '178', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167', 'NIU', '2', '2021-05-12 19:16:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('667', '179', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880', 'NIU', '2', '2021-05-12 19:29:56', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('668', '180', '155', '79', 'CEREAL DE QUINUA NATURAL', '240', 'NIU', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('669', '180', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '240', 'NIU', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('670', '180', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1008', 'NIU', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('671', '180', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '864', 'NIU', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('672', '180', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1296', 'NIU', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('673', '180', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1440', 'NIU', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('674', '180', '152', '83', 'CHIP DE QUINUA NATURAL', '42', 'NIU', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('675', '180', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '288', 'NIU', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('676', '181', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6480', 'NIU', '2', '2021-05-13 19:49:50', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('677', '182', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('678', '182', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('679', '182', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '36', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('680', '182', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '36', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('681', '182', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('682', '182', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('683', '182', '152', '83', 'CHIP DE QUINUA NATURAL', '48', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('684', '182', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('685', '182', '155', '79', 'CEREAL DE QUINUA NATURAL', '6', 'NIU', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('686', '183', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-05-13 22:14:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('687', '183', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-05-13 22:14:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('688', '183', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18', 'NIU', '2', '2021-05-13 22:14:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('689', '183', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-05-13 22:14:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('690', '183', '152', '83', 'CHIP DE QUINUA NATURAL', '90', 'NIU', '2', '2021-05-13 22:14:38', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('691', '184', '0', '1236', 'AJIZ X 15 UND', '15', 'NIU', '2', '2021-05-13 22:23:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('692', '185', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-05-14 13:59:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('693', '185', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-05-14 13:59:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('694', '185', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18', 'NIU', '2', '2021-05-14 13:59:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('695', '185', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-05-14 13:59:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('696', '185', '152', '83', 'CHIP DE QUINUA NATURAL', '90', 'NIU', '2', '2021-05-14 13:59:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('697', '186', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-05-14 14:11:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('698', '186', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-05-14 14:11:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('699', '186', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18', 'NIU', '2', '2021-05-14 14:11:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('700', '186', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-05-14 14:11:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('701', '186', '152', '83', 'CHIP DE QUINUA NATURAL', '90', 'NIU', '2', '2021-05-14 14:11:11', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('702', '187', '0', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-05-14 14:16:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('703', '187', '0', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-05-14 14:16:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('704', '187', '0', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18', 'NIU', '2', '2021-05-14 14:16:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('705', '187', '0', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-05-14 14:16:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('706', '187', '0', '83', 'CHIP DE QUINUA NATURAL', '90', 'NIU', '2', '2021-05-14 14:16:54', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('707', '188', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12', 'NIU', '2', '2021-05-14 14:37:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('708', '188', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12', 'NIU', '2', '2021-05-14 14:37:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('709', '188', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18', 'NIU', '2', '2021-05-14 14:37:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('710', '188', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18', 'NIU', '2', '2021-05-14 14:37:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('711', '188', '152', '83', 'CHIP DE QUINUA NATURAL', '90', 'NIU', '2', '2021-05-14 14:37:15', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('712', '189', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6480', 'NIU', '2', '2021-05-14 14:45:26', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('713', '190', '0', '1115', 'AJHP X 15 UND', '3', 'NIU', '2', '2021-05-14 19:17:30', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('714', '191', '0', '1115', 'AJHP X 15 UND', '3', 'NIU', '2', '2021-05-14 19:36:49', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('715', '192', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167', 'NIU', '2', '2021-05-17 17:32:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('716', '192', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '167', 'NIU', '2', '2021-05-17 17:32:05', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('717', '193', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880', 'NIU', '2', '2021-05-19 19:14:21', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('718', '194', '155', '79', 'CEREAL DE QUINUA NATURAL', '276', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('719', '194', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '168', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('720', '194', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2592', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('721', '194', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3744', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('722', '194', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2160', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('723', '194', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1872', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('724', '194', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '432', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('725', '194', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('726', '194', '152', '83', 'CHIP DE QUINUA NATURAL', '126', 'NIU', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('727', '195', '0', '151564', 'CMTQC X 30 GR', '118', 'NIU', '2', '2021-05-20 22:30:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('728', '196', '0', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('729', '196', '0', '79', 'CEREAL DE QUINUA NATURAL', '3', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('730', '196', '0', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('731', '196', '0', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('732', '196', '0', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('733', '196', '0', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('734', '196', '0', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('735', '196', '0', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('736', '196', '0', '83', 'CHIP DE QUINUA NATURAL', '3', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('737', '196', '0', '279', 'CHIP DE QUINUA SABOR BARBECUE', '3', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('738', '196', '0', '1118', 'CHIP DE QUINUA SABOR FINAS HIERBAS', '3', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('739', '196', '0', '278', 'CHIP DE QUINUA SABOR GUACAMOLE', '3', 'NIU', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('740', '197', '0', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('741', '197', '0', '79', 'CEREAL DE QUINUA NATURAL', '3', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('742', '197', '0', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('743', '197', '0', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('744', '197', '0', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('745', '197', '0', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('746', '197', '0', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('747', '197', '0', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('748', '197', '0', '83', 'CHIP DE QUINUA NATURAL', '3', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('749', '197', '0', '279', 'CHIP DE QUINUA SABOR BARBECUE', '3', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('750', '197', '0', '1118', 'CHIP DE QUINUA SABOR FINAS HIERBAS', '3', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('751', '197', '0', '278', 'CHIP DE QUINUA SABOR GUACAMOLE', '3', 'NIU', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('752', '198', '0', '11114', 'CMTQCB X 30 GR POR UNIDAD', '547', 'NIU', '2', '2021-05-21 21:59:39', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('753', '199', '0', '229', 'TAPA ROSCA D-45 C/ANILLO AZUL', '1', 'NIU', '1', '2021-08-13 16:07:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('754', '199', '0', '285', 'TAPA PLÁSTICA CSD6 BLANCA HOLITA', '1', 'NIU', '1', '2021-08-13 16:07:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('755', '199', '0', '275', 'PREFORMA CRISTAL 17.7GR PET NORCOLA', '1', 'NIU', '1', '2021-08-13 16:07:08', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('756', '200', '0', 'DESARMADA', 'CAJA MASTER QFOODS ', '1', 'NIU', '1', '2023-04-18 02:31:41', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('757', '201', '0', 'DESARMADA', 'CAJA MASTER QFOODS ', '1', 'NIU', '1', '2023-04-18 02:31:58', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('758', '202', '0', 'DESARMADA', 'CAJA MASTER QFOODS ', '1', 'NIU', '1', '2023-04-18 02:50:20', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('759', '203', '0', '22', 'AROMAS FRESA FL-14205A', '1', 'NIU', '1', '2023-04-18 02:55:09', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('760', '204', '0', '22', 'AROMAS FRESA FL-14205A', '1', 'NIU', '1', '2023-04-18 02:55:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('761', '205', '0', '22', 'AROMAS FRESA FL-14205A', '1', 'NIU', '1', '2023-04-18 02:59:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('762', '206', '0', '22', 'AROMAS FRESA FL-14205A', '1', 'NIU', '1', '2023-04-18 03:01:36', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('763', '207', '0', '22', 'AROMAS FRESA FL-14205A', '1', 'NIU', '1', '2023-04-18 03:09:50', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('764', '208', '0', '55', 'BOLSA EMPAQUE PARA GALLETA DE AGUA ECONÓMICA', '5', 'NIU', '1', '2023-04-18 04:10:59', NULL, NULL, '1');
INSERT INTO `tec_referral_guide_items` (`id`, `id_referral_guide`, `ProductID`, `ProductCode`, `ProductName`, `QuantityProduct`, `unitCode`, `user_create`, `date_create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('765', '208', '0', '153', 'TAPA PLÁSTICA ROJA MAQUILA AGUA D.A.M.', '5', 'NIU', '1', '2023-04-18 04:10:59', NULL, NULL, '1');


#
# TABLE STRUCTURE FOR: tec_registers
#

DROP TABLE IF EXISTS `tec_registers`;

CREATE TABLE `tec_registers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `user_id` int(11) NOT NULL,
  `cash_in_hand` decimal(25,2) NOT NULL,
  `status` varchar(10) NOT NULL,
  `total_cash` decimal(25,2) DEFAULT NULL,
  `total_cheques` decimal(25,2) DEFAULT NULL,
  `total_cc_slips` decimal(25,2) DEFAULT NULL,
  `total_stripe` decimal(25,2) DEFAULT NULL,
  `total_cash_submitted` decimal(25,2) DEFAULT NULL,
  `total_cheques_submitted` decimal(25,2) DEFAULT NULL,
  `total_cc_slips_submitted` decimal(25,2) DEFAULT NULL,
  `total_stripe_submitted` decimal(25,2) DEFAULT NULL,
  `note` text,
  `closed_at` timestamp NULL DEFAULT NULL,
  `transfer_opened_bills` varchar(50) DEFAULT NULL,
  `closed_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `tec_registers` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_stripe`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `total_stripe_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES ('1', '2021-05-27 18:48:10', '1', '1.00', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: tec_sale_items
#

DROP TABLE IF EXISTS `tec_sale_items`;

CREATE TABLE `tec_sale_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_id` int(11) NOT NULL,
  `product_id` int(11) DEFAULT NULL,
  `code` varchar(50) DEFAULT NULL,
  `name` char(255) DEFAULT NULL,
  `quantity` decimal(15,2) NOT NULL,
  `unit_price` decimal(25,2) NOT NULL,
  `affect_price` decimal(25,2) NOT NULL,
  `non_affected_price` decimal(25,2) NOT NULL,
  `exonerated_price` decimal(25,2) NOT NULL,
  `gratuito_price` decimal(25,2) DEFAULT NULL,
  `price_affected_item` decimal(25,2) NOT NULL,
  `price_no_affected_item` decimal(25,2) NOT NULL,
  `price_exonerated_item` decimal(25,2) NOT NULL,
  `price_gratuito_item` decimal(25,2) DEFAULT NULL,
  `discount` varchar(20) DEFAULT NULL,
  `item_discount` decimal(25,2) DEFAULT NULL,
  `prr_discount` decimal(25,2) NOT NULL,
  `tax` decimal(25,2) NOT NULL,
  `item_tax` decimal(25,2) DEFAULT NULL,
  `tax_gratuito` decimal(25,2) DEFAULT '0.00',
  `item_tax_gratuito` decimal(25,2) DEFAULT '0.00',
  `igv` varchar(20) NOT NULL,
  `tax_ICBPER` decimal(25,2) NOT NULL,
  `quantity_ICBPER` int(11) NOT NULL,
  `subtotal` decimal(25,2) NOT NULL,
  `real_unit_price` decimal(25,2) DEFAULT NULL,
  `currency_cost` varchar(3) DEFAULT NULL,
  `cost` decimal(25,2) DEFAULT '0.00',
  `tax_method` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1545 DEFAULT CHARSET=utf8;

INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1', '1', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('2', '1', '21', '39', 'BOBINA DE BARRA DE QUINUA CON MANI Y PASAS', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('3', '1', '20', '38', 'BOBINA DE BARRA DE QUINUA CON MANI Y NARANJA', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('4', '2', '19', '37', 'BOBINA DE BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('5', '2', '21', '39', 'BOBINA DE BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('6', '2', '22', '40', 'BOBINA DE BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('7', '2', '20', '38', 'BOBINA DE BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('8', '3', '155', '79', 'CEREAL DE QUINUA NATURAL CAJA DE 200G', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('9', '3', '154', '77', 'CEREAL DE QUINUA CHOCOLATE CAJA DE 200G', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('10', '4', '24', '42', 'BOBINA DE BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('11', '5', '155', '79', 'CEREAL DE QUINUA NATURAL CAJA DE 200G', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('12', '5', '154', '77', 'CEREAL DE QUINUA CHOCOLATE CAJA DE 200G', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('13', '6', '19', '37', 'BOBINA DE BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('14', '6', '21', '39', 'BOBINA DE BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('15', '6', '22', '40', 'BOBINA DE BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('16', '6', '20', '38', 'BOBINA DE BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('17', '7', '21', '39', 'BOBINA DE BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('18', '7', '22', '40', 'BOBINA DE BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('19', '8', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('20', '9', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('21', '10', '155', '79', 'CEREAL DE QUINUA NATURAL', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('22', '11', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('23', '11', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('24', '11', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '0.00', 'PEN', '2.80', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('25', '11', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('26', '12', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('27', '12', '21', '39', 'BOBINA DE BARRA DE QUINUA CON MANI Y PASAS', '4.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.16', '0.00', '0.00', '18', '0.00', '0', '7.60', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('28', '12', '152', '83', 'CHIP DE QUINUA NATURAL', '4.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.71', '0.00', '0.00', '18', '0.00', '0', '11.20', '0.00', 'PEN', '2.80', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('29', '12', '23', '41', 'BOBINA DE BARRA ENERGETICA DE QUINUA CON DATILES', '3.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '1.51', '0.00', '0.00', '18', '0.00', '0', '9.90', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('30', '12', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('31', '13', '152', '83', 'CHIP DE QUINUA NATURAL', '13.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '5.55', '0.00', '0.00', '18', '0.00', '0', '36.40', '0.00', 'PEN', '2.80', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('32', '13', NULL, '', 'FLETE', '1.00', '9.50', '8.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.45', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('33', '14', '22', '40', 'BOBINA DE BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('34', '14', '21', '39', 'BOBINA DE BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('35', '14', '19', '37', 'BOBINA DE BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('36', '14', '20', '38', 'BOBINA DE BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('37', '14', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('38', '15', '22', '40', 'BOBINA DE BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1030.21', '0.00', '0.00', '18', '0.00', '0', '6753.60', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('39', '16', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1030.21', '0.00', '0.00', '18', '0.00', '0', '6753.60', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('40', '17', '155', '79', 'CEREAL DE QUINUA NATURAL', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('41', '17', '151', '125', 'GALLETA DE QUINUA', '12.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '0.00', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('42', '18', '155', '79', 'CEREAL DE QUINUA NATURAL', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('43', '18', '151', '125', 'GALLETA DE QUINUA', '12.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '0.00', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('44', '19', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('45', '19', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('46', '20', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('47', '20', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('48', '21', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('49', '21', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('50', '21', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('51', '21', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('52', '22', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('53', '22', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('54', '23', '182', '1234', 'BJGH', '1.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '12.00', 'PEN', '9.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('55', '23', NULL, '', 'BJGI', '3.00', '11.00', '9.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.68', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('56', '24', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1030.21', '0.00', '0.00', '18', '0.00', '0', '6753.60', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('57', '25', '22', '40', 'BOBINA DE BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('58', '26', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('59', '27', '151', '125', 'GALLETA DE QUINUA', '1.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.21', '0.00', '0.00', '18', '0.00', '0', '1.40', '0.00', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('60', '28', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1030.21', '0.00', '0.00', '18', '0.00', '0', '6753.60', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('61', '29', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('62', '30', '152', '83', 'CHIP DE QUINUA NATURAL', '30.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '0.00', 'PEN', '2.80', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('63', '30', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '36.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '24.71', '0.00', '0.00', '18', '0.00', '0', '162.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('64', '30', '155', '79', 'CEREAL DE QUINUA NATURAL', '24.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '16.47', '0.00', '0.00', '18', '0.00', '0', '108.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('65', '30', '151', '125', 'GALLETA DE QUINUA', '30.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '0.00', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('66', '31', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '0.00', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('67', '31', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('68', '31', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('69', '31', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('70', '31', '151', '125', 'GALLETA DE QUINUA', '7.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.49', '0.00', '0.00', '18', '0.00', '0', '9.80', '0.00', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('71', '32', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '4.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.79', '0.00', '0.00', '18', '0.00', '0', '5.20', '0.00', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('72', '32', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '8.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.59', '0.00', '0.00', '18', '0.00', '0', '10.40', '0.00', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('73', '33', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '60.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '11.90', '0.00', '0.00', '18', '0.00', '0', '78.00', '0.00', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('74', '34', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '70.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '48.05', '0.00', '0.00', '18', '0.00', '0', '315.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('75', '34', '155', '79', 'CEREAL DE QUINUA NATURAL', '20.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('76', '34', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('77', '34', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '20.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('78', '34', '152', '83', 'CHIP DE QUINUA NATURAL', '20.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '0.00', 'PEN', '2.80', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('79', '35', '153', '6', 'AGUA DE MESA HOLO 500ML', '100.00', '5.31', '4.50', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.81', '81.00', '0.00', '0.00', '18', '0.00', '0', '531.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('80', '35', '183', '12345', 'AGUA DE MESA HOLO 7LT', '456.00', '3.35', '2.84', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.51', '233.02', '0.00', '0.00', '18', '0.00', '0', '1527.60', '3.35', 'PEN', '3.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('81', '36', '152', '83', 'CHIP DE QUINUA NATURAL', '20.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '0.00', 'PEN', '2.80', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('82', '36', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '20.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('83', '36', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('84', '36', '155', '79', 'CEREAL DE QUINUA NATURAL', '20.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('85', '36', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '70.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '48.05', '0.00', '0.00', '18', '0.00', '0', '315.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('86', '37', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '70.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '48.05', '0.00', '0.00', '18', '0.00', '0', '315.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('87', '37', '155', '79', 'CEREAL DE QUINUA NATURAL', '20.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('88', '37', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('89', '37', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '20.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('90', '37', '152', '83', 'CHIP DE QUINUA NATURAL', '20.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '0.00', 'PEN', '2.80', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('91', '38', '183', '12345', 'AGUA DE MESA HOLO 7LT', '456.00', '3.35', '2.84', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.51', '233.02', '0.00', '0.00', '18', '0.00', '0', '1527.60', '3.35', 'PEN', '3.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('92', '38', '153', '6', 'AGUA DE MESA HOLO 500ML', '100.00', '5.31', '4.50', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.81', '81.00', '0.00', '0.00', '18', '0.00', '0', '531.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('93', '39', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('94', '39', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '2.38', '0.00', '0.00', '18', '0.00', '0', '15.60', '0.00', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('95', '40', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('96', '40', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '0.00', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('97', '40', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('98', '40', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('99', '40', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('100', '41', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '0.00', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('101', '42', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '0.00', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('102', '42', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('103', '43', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('104', '43', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('105', '44', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '0.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('106', '45', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('107', '46', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '349.92', '0.00', '0.00', '18', '0.00', '0', '2293.92', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('108', '47', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('109', '48', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '5.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.76', '0.00', '0.00', '18', '0.00', '0', '5.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('110', '48', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '4.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.79', '0.00', '0.00', '18', '0.00', '0', '5.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('111', '48', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '5.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.76', '0.00', '0.00', '18', '0.00', '0', '5.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('112', '48', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '5.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.76', '0.00', '0.00', '18', '0.00', '0', '5.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('113', '48', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('114', '49', '152', '83', 'CHIP DE QUINUA NATURAL', '1.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.21', '0.00', '0.00', '18', '0.00', '0', '1.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('115', '50', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '480.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '483.84', '0.00', '0.00', '18', '0.00', '0', '3171.84', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('116', '50', '155', '79', 'CEREAL DE QUINUA NATURAL', '480.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '483.84', '0.00', '0.00', '18', '0.00', '0', '3171.84', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('117', '50', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3312.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '550.18', '0.00', '0.00', '18', '0.00', '0', '3606.77', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('118', '50', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '239.21', '0.00', '0.00', '18', '0.00', '0', '1568.16', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('119', '50', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1584.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '263.37', '0.00', '0.00', '18', '0.00', '0', '1726.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('120', '50', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2448.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '407.03', '0.00', '0.00', '18', '0.00', '0', '2668.32', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('121', '50', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '720.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '303.13', '0.00', '0.00', '18', '0.00', '0', '1987.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('122', '50', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.60', '0.00', '0.00', '18', '0.00', '0', '397.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('123', '50', '152', '83', 'CHIP DE QUINUA NATURAL', '42.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '10.00', '0.00', '0.00', '18', '0.00', '0', '65.56', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('124', '51', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '7.69', '0.00', '0.00', '18', '0.00', '0', '50.40', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('125', '51', '155', '79', 'CEREAL DE QUINUA NATURAL', '11.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '14.09', '0.00', '0.00', '18', '0.00', '0', '92.40', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('126', '51', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('127', '51', '152', '83', 'CHIP DE QUINUA NATURAL', '80.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '21.36', '0.00', '0.00', '18', '0.00', '0', '140.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('128', '51', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '30.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('129', '51', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('130', '51', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '3.60', '3.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.55', '6.59', '0.00', '0.00', '18', '0.00', '0', '43.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('131', '51', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '3.60', '3.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.55', '6.59', '0.00', '0.00', '18', '0.00', '0', '43.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('132', '52', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '7.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '2.35', '0.00', '0.00', '18', '0.00', '0', '15.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('133', '52', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '8.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '2.68', '0.00', '0.00', '18', '0.00', '0', '17.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('134', '52', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '20.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('135', '52', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '30.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('136', '52', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('137', '52', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '30.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('138', '53', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '3.02', '0.00', '0.00', '18', '0.00', '0', '19.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('139', '53', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '3.02', '0.00', '0.00', '18', '0.00', '0', '19.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('140', '53', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('141', '54', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '4.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('142', '54', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '4.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('143', '54', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('144', '54', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('145', '54', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('146', '54', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '5.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('147', '54', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '5.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('148', '54', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '5.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('149', '54', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('150', '55', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '1.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('151', '55', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('152', '55', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('153', '55', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('154', '55', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.29', '0.00', '0.00', '18', '0.00', '0', '1.90', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('155', '55', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('156', '56', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('157', '56', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('158', '56', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('159', '56', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('160', '57', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('161', '57', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('162', '57', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('163', '57', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('164', '57', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('165', '57', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('166', '57', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('167', '58', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('168', '58', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('169', '58', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('170', '58', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('171', '58', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('172', '58', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('173', '58', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('174', '59', '155', '79', 'CEREAL DE QUINUA NATURAL', '48.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '40.27', '0.00', '0.00', '18', '0.00', '0', '264.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('175', '59', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '48.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '40.27', '0.00', '0.00', '18', '0.00', '0', '264.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('176', '59', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('177', '59', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('178', '59', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('179', '59', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('180', '59', '152', '83', 'CHIP DE QUINUA NATURAL', '36.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '6.59', '0.00', '0.00', '18', '0.00', '0', '43.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('181', '60', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('182', '60', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('183', '60', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('184', '60', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('185', '61', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('186', '61', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '4.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.16', '0.00', '0.00', '18', '0.00', '0', '7.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('187', '61', '152', '83', 'CHIP DE QUINUA NATURAL', '4.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.71', '0.00', '0.00', '18', '0.00', '0', '11.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('188', '61', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '3.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '1.51', '0.00', '0.00', '18', '0.00', '0', '9.90', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('189', '61', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('190', '62', '152', '83', 'CHIP DE QUINUA NATURAL', '13.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '5.55', '0.00', '0.00', '18', '0.00', '0', '36.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('191', '62', NULL, '', 'FLETE', '1.00', '9.50', '8.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.45', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('192', '63', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('193', '63', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('194', '63', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('195', '63', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('196', '63', NULL, '', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('197', '64', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '7.69', '0.00', '0.00', '18', '0.00', '0', '50.40', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('198', '64', '155', '79', 'CEREAL DE QUINUA NATURAL', '11.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '14.09', '0.00', '0.00', '18', '0.00', '0', '92.40', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('199', '64', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('200', '64', '152', '83', 'CHIP DE QUINUA NATURAL', '80.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '21.36', '0.00', '0.00', '18', '0.00', '0', '140.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('201', '64', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '30.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('202', '64', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('203', '64', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '3.60', '3.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.55', '6.59', '0.00', '0.00', '18', '0.00', '0', '43.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('204', '64', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '3.60', '3.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.55', '6.59', '0.00', '0.00', '18', '0.00', '0', '43.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('205', '65', '182', '1234', 'BJGH', '1.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '12.00', 'PEN', '9.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('206', '65', NULL, '', 'BJGI', '3.00', '11.00', '9.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.68', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('207', '66', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('208', '67', '151', '125', 'GALLETA DE QUINUA', '1.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.21', '0.00', '0.00', '18', '0.00', '0', '1.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('209', '68', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '8.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.59', '0.00', '0.00', '18', '0.00', '0', '10.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('210', '68', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '4.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.79', '0.00', '0.00', '18', '0.00', '0', '5.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('211', '69', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '60.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '11.90', '0.00', '0.00', '18', '0.00', '0', '78.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('212', '70', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('213', '70', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '2.38', '0.00', '0.00', '18', '0.00', '0', '15.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('214', '71', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('215', '71', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('216', '72', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('217', '73', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('218', '74', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('219', '75', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '5.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.76', '0.00', '0.00', '18', '0.00', '0', '5.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('220', '75', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '4.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.79', '0.00', '0.00', '18', '0.00', '0', '5.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('221', '75', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '5.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.76', '0.00', '0.00', '18', '0.00', '0', '5.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('222', '75', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '5.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.76', '0.00', '0.00', '18', '0.00', '0', '5.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('223', '75', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('224', '76', '152', '83', 'CHIP DE QUINUA NATURAL', '1.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.21', '0.00', '0.00', '18', '0.00', '0', '1.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('225', '77', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '3.02', '0.00', '0.00', '18', '0.00', '0', '19.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('226', '77', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '3.02', '0.00', '0.00', '18', '0.00', '0', '19.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('227', '77', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('228', '78', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '4.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('229', '78', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '4.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('230', '78', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('231', '78', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('232', '78', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('233', '78', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '5.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('234', '78', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '5.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('235', '78', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '5.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('236', '78', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('237', '79', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '1.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('238', '79', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('239', '79', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('240', '79', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('241', '79', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.29', '0.00', '0.00', '18', '0.00', '0', '1.90', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('242', '79', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('243', '80', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('244', '80', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('245', '80', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('246', '80', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('247', '81', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('248', '81', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('249', '81', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('250', '81', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('251', '81', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('252', '81', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.87', '0.00', '0.00', '18', '0.00', '0', '5.70', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('253', '81', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('254', '82', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '10.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('255', '83', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('256', '84', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1030.21', '0.00', '0.00', '18', '0.00', '0', '6753.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('257', '85', '151', '125', 'GALLETA DE QUINUA', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('258', '86', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('259', '87', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('260', '87', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('261', '87', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('262', '88', '155', '79', 'CEREAL DE QUINUA NATURAL', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('263', '88', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('264', '89', '151', '125', 'GALLETA DE QUINUA', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('265', '90', '155', '79', 'CEREAL DE QUINUA NATURAL', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('266', '90', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('267', '91', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('268', '91', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('269', '92', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('270', '92', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('271', '93', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('272', '93', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('273', '93', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('274', '93', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('275', '93', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('276', '94', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('277', '94', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('278', '94', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('279', '94', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('280', '95', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('281', '95', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('282', '95', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('283', '95', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('284', '96', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('285', '96', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('286', '97', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '8.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.59', '0.00', '0.00', '18', '0.00', '0', '10.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('287', '98', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('288', '98', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('289', '98', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('290', '99', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('291', '100', '151', '125', 'GALLETA DE QUINUA', '40.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('292', '100', '152', '83', 'CHIP DE QUINUA NATURAL', '50.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '11.44', '0.00', '0.00', '18', '0.00', '0', '75.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('293', '100', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '160.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '26.85', '0.00', '0.00', '18', '0.00', '0', '176.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('294', '101', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('295', '101', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '18.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('296', '101', '152', '83', 'CHIP DE QUINUA NATURAL', '4.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.71', '0.00', '0.00', '18', '0.00', '0', '11.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('297', '101', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '1.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('298', '101', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('299', '102', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '9.08', '0.00', '0.00', '18', '0.00', '0', '59.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('300', '102', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('301', '103', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '8.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '2.32', '0.00', '0.00', '18', '0.00', '0', '15.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('302', '103', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('303', '103', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('304', '103', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('305', '104', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('306', '104', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '3.48', '0.00', '0.00', '18', '0.00', '0', '22.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('307', '104', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '2.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('308', '104', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('309', '105', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '24.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '8.05', '0.00', '0.00', '18', '0.00', '0', '52.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('310', '105', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '24.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '8.05', '0.00', '0.00', '18', '0.00', '0', '52.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('311', '105', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('312', '105', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('313', '105', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('314', '105', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('315', '105', '155', '79', 'CEREAL DE QUINUA NATURAL', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('316', '105', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('317', '105', '152', '83', 'CHIP DE QUINUA NATURAL', '10.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('318', '106', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('319', '106', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('320', '107', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('321', '107', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('322', '107', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('323', '108', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('324', '109', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('325', '110', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('326', '110', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('327', '110', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('328', '110', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('329', '110', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('330', '111', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('331', '111', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('332', '111', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('333', '111', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('334', '111', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('335', '112', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('336', '112', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('337', '112', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('338', '112', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('339', '112', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('340', '112', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('341', '113', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('342', '114', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1296.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '215.49', '0.00', '0.00', '18', '0.00', '0', '1412.64', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('343', '114', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1584.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '263.37', '0.00', '0.00', '18', '0.00', '0', '1726.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('344', '114', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1008.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '167.45', '0.00', '0.00', '18', '0.00', '0', '1097.71', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('345', '114', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1008.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '167.45', '0.00', '0.00', '18', '0.00', '0', '1097.71', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('346', '114', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.60', '0.00', '0.00', '18', '0.00', '0', '397.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('347', '114', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '288.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '121.21', '0.00', '0.00', '18', '0.00', '0', '794.59', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('348', '114', '152', '83', 'CHIP DE QUINUA NATURAL', '210.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '49.88', '0.00', '0.00', '18', '0.00', '0', '326.97', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('349', '114', '155', '79', 'CEREAL DE QUINUA NATURAL', '240.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '241.92', '0.00', '0.00', '18', '0.00', '0', '1585.92', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('350', '114', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '240.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '241.92', '0.00', '0.00', '18', '0.00', '0', '1585.92', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('351', '115', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('352', '116', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('353', '116', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('354', '116', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('355', '116', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('356', '116', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('357', '116', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('358', '116', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('359', '117', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('360', '118', '151', '125', 'GALLETA DE QUINUA', '50.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('361', '118', '152', '83', 'CHIP DE QUINUA NATURAL', '50.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('362', '118', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '200.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '21.36', '0.00', '0.00', '18', '0.00', '0', '140.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('363', '118', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '100.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '10.68', '0.00', '0.00', '18', '0.00', '0', '70.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('364', '118', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '10.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '3.36', '0.00', '0.00', '18', '0.00', '0', '22.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('365', '118', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '10.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '3.36', '0.00', '0.00', '18', '0.00', '0', '22.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('366', '118', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('367', '118', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '100.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '10.68', '0.00', '0.00', '18', '0.00', '0', '70.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('368', '119', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('369', '119', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('370', '119', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('371', '119', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('372', '119', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('373', '119', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('374', '119', '152', '83', 'CHIP DE QUINUA NATURAL', '24.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '4.39', '0.00', '0.00', '18', '0.00', '0', '28.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('375', '119', '155', '79', 'CEREAL DE QUINUA NATURAL', '24.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '16.47', '0.00', '0.00', '18', '0.00', '0', '108.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('376', '119', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '16.47', '0.00', '0.00', '18', '0.00', '0', '108.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('377', '119', '151', '125', 'GALLETA DE QUINUA', '24.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('378', '120', '151', '125', 'GALLETA DE QUINUA', '15.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '4.00', '0.00', '0.00', '18', '0.00', '0', '26.25', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('379', '120', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('380', '120', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '10.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '2.29', '0.00', '0.00', '18', '0.00', '0', '15.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('381', '120', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '8.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('382', '120', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('383', '120', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('384', '120', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '7.69', '0.00', '0.00', '18', '0.00', '0', '50.40', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('385', '120', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '10.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('386', '120', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('387', '121', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('388', '121', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('389', '121', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('390', '121', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('391', '122', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('392', '122', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('393', '122', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('394', '122', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('395', '122', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '4.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '1.34', '0.00', '0.00', '18', '0.00', '0', '8.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('396', '122', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '4.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '1.34', '0.00', '0.00', '18', '0.00', '0', '8.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('397', '122', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '1.10', '0.00', '0.00', '18', '0.00', '0', '7.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('398', '122', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('399', '122', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('400', '122', '151', '125', 'GALLETA DE QUINUA', '4.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('401', '123', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('402', '123', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('403', '124', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('404', '124', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('405', '125', '155', '79', 'CEREAL DE QUINUA NATURAL', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('406', '125', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('407', '126', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('408', '126', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('409', '127', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1728.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '279.94', '0.00', '0.00', '18', '0.00', '0', '1835.14', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('410', '128', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '10.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '2.90', '0.00', '0.00', '18', '0.00', '0', '19.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('411', '128', '152', '83', 'CHIP DE QUINUA NATURAL', '8.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '3.42', '0.00', '0.00', '18', '0.00', '0', '22.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('412', '128', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('413', '128', '151', '125', 'GALLETA DE QUINUA', '6.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('414', '128', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('415', '129', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('416', '129', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '3.63', '0.00', '0.00', '18', '0.00', '0', '23.80', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('417', '129', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '3.02', '0.00', '0.00', '18', '0.00', '0', '19.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('418', '129', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '3.02', '0.00', '0.00', '18', '0.00', '0', '19.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('419', '129', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('420', '129', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('421', '129', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('422', '129', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('423', '130', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '19.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '5.51', '0.00', '0.00', '18', '0.00', '0', '36.10', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('424', '131', '182', '1234', 'BJGH', '4.00', '11.00', '9.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.68', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '12.00', 'PEN', '9.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('425', '132', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.32', '0.00', '0.00', '18', '0.00', '0', '2.10', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('426', '132', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.32', '0.00', '0.00', '18', '0.00', '0', '2.10', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('427', '132', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.32', '0.00', '0.00', '18', '0.00', '0', '2.10', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('428', '132', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.32', '0.00', '0.00', '18', '0.00', '0', '2.10', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('429', '133', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('430', '133', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('431', '134', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('432', '134', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('433', '135', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('434', '135', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('435', '136', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('436', '137', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('437', '138', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('438', '139', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '8784.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '937.95', '0.00', '0.00', '18', '0.00', '0', '6148.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('439', '140', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '8784.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '937.95', '0.00', '0.00', '18', '0.00', '0', '6148.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('440', '141', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '8784.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '937.95', '0.00', '0.00', '18', '0.00', '0', '6148.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('441', '142', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '8784.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '937.95', '0.00', '0.00', '18', '0.00', '0', '6148.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('442', '143', NULL, '', 'AJRM', '90.00', '8.00', '6.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.22', '109.83', '0.00', '0.00', '18', '0.00', '0', '720.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('443', '144', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('444', '144', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('445', '144', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('446', '144', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('447', '144', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('448', '144', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('449', '145', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('450', '146', '151', '125', 'GALLETA DE QUINUA', '12.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('451', '147', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('452', '148', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '8.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('453', '148', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '7.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('454', '148', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('455', '148', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '7.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('456', '149', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '4.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '7.26', '0.00', '0.00', '18', '0.00', '0', '47.60', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('457', '149', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('458', '150', '155', '79', 'CEREAL DE QUINUA NATURAL', '4.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '7.26', '0.00', '0.00', '18', '0.00', '0', '47.60', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('459', '150', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('460', '150', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('461', '151', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '3.84', '0.00', '0.00', '18', '0.00', '0', '25.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('462', '151', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '3.84', '0.00', '0.00', '18', '0.00', '0', '25.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('463', '151', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '24.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '8.05', '0.00', '0.00', '18', '0.00', '0', '52.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('464', '151', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '24.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '8.05', '0.00', '0.00', '18', '0.00', '0', '52.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('465', '151', '151', '125', 'GALLETA DE QUINUA', '36.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('466', '151', '155', '79', 'CEREAL DE QUINUA NATURAL', '16.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '10.98', '0.00', '0.00', '18', '0.00', '0', '72.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('467', '151', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '16.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '10.98', '0.00', '0.00', '18', '0.00', '0', '72.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('468', '152', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '40.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('469', '152', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '40.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('470', '152', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '40.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('471', '152', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '40.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('472', '152', '152', '83', 'CHIP DE QUINUA NATURAL', '36.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '6.59', '0.00', '0.00', '18', '0.00', '0', '43.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('473', '152', '155', '79', 'CEREAL DE QUINUA NATURAL', '24.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '16.47', '0.00', '0.00', '18', '0.00', '0', '108.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('474', '152', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '16.47', '0.00', '0.00', '18', '0.00', '0', '108.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('475', '153', '155', '79', 'CEREAL DE QUINUA NATURAL', '216.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '217.86', '0.00', '0.00', '18', '0.00', '0', '1428.19', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('476', '153', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '108.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '108.93', '0.00', '0.00', '18', '0.00', '0', '714.10', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('477', '153', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '335.20', '0.00', '0.00', '18', '0.00', '0', '2197.44', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('478', '153', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1872.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '310.97', '0.00', '0.00', '18', '0.00', '0', '2038.61', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('479', '153', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1152.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '191.37', '0.00', '0.00', '18', '0.00', '0', '1254.53', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('480', '153', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1584.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '263.13', '0.00', '0.00', '18', '0.00', '0', '1724.98', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('481', '153', '152', '83', 'CHIP DE QUINUA NATURAL', '84.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '19.99', '0.00', '0.00', '18', '0.00', '0', '131.04', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('482', '154', '155', '79', 'CEREAL DE QUINUA NATURAL', '10.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('483', '154', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '10.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('484', '154', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '50.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '5.34', '0.00', '0.00', '18', '0.00', '0', '35.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('485', '154', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '50.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '5.34', '0.00', '0.00', '18', '0.00', '0', '35.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('486', '154', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '50.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '5.34', '0.00', '0.00', '18', '0.00', '0', '35.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('487', '154', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '50.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '5.34', '0.00', '0.00', '18', '0.00', '0', '35.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('488', '154', '152', '83', 'CHIP DE QUINUA NATURAL', '50.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('489', '154', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '15.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('490', '154', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '15.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('491', '155', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '40.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('492', '155', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '40.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('493', '155', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '40.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('494', '155', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '40.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('495', '155', '152', '83', 'CHIP DE QUINUA NATURAL', '36.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '6.59', '0.00', '0.00', '18', '0.00', '0', '43.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('496', '155', '155', '79', 'CEREAL DE QUINUA NATURAL', '24.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '16.47', '0.00', '0.00', '18', '0.00', '0', '108.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('497', '155', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '16.47', '0.00', '0.00', '18', '0.00', '0', '108.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('498', '156', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('499', '156', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('500', '156', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('501', '156', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('502', '156', '152', '83', 'CHIP DE QUINUA NATURAL', '24.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '4.39', '0.00', '0.00', '18', '0.00', '0', '28.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('503', '156', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('504', '156', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('505', '156', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('506', '156', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('507', '157', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('508', '157', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('509', '157', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('510', '157', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('511', '157', '152', '83', 'CHIP DE QUINUA NATURAL', '24.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '4.39', '0.00', '0.00', '18', '0.00', '0', '28.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('512', '157', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('513', '157', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('514', '157', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('515', '157', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('516', '158', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('517', '158', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('518', '158', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '0.58', '0.00', '0.00', '18', '0.00', '0', '3.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('519', '158', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '4.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.16', '0.00', '0.00', '18', '0.00', '0', '7.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('520', '158', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('521', '159', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('522', '159', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('523', '159', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '144.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '15.38', '0.00', '0.00', '18', '0.00', '0', '100.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('524', '159', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '144.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '15.38', '0.00', '0.00', '18', '0.00', '0', '100.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('525', '159', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '144.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '15.38', '0.00', '0.00', '18', '0.00', '0', '100.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('526', '159', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '144.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '15.38', '0.00', '0.00', '18', '0.00', '0', '100.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('527', '159', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '144.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '48.33', '0.00', '0.00', '18', '0.00', '0', '316.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('528', '159', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '48.33', '0.00', '0.00', '18', '0.00', '0', '316.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('529', '159', '152', '83', 'CHIP DE QUINUA NATURAL', '42.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '7.69', '0.00', '0.00', '18', '0.00', '0', '50.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('530', '160', '155', '79', 'CEREAL DE QUINUA NATURAL', '48.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '40.26', '0.00', '0.00', '18', '0.00', '0', '263.95', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('531', '160', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '48.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '40.26', '0.00', '0.00', '18', '0.00', '0', '263.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('532', '160', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '60.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('533', '160', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '60.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('534', '160', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '60.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('535', '160', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '60.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('536', '160', '151', '125', 'GALLETA DE QUINUA', '60.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '9.18', '0.00', '0.00', '18', '0.00', '0', '60.18', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('537', '160', '152', '83', 'CHIP DE QUINUA NATURAL', '36.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '6.61', '0.00', '0.00', '18', '0.00', '0', '43.34', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('538', '161', '155', '79', 'CEREAL DE QUINUA NATURAL', '36.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '30.19', '0.00', '0.00', '18', '0.00', '0', '197.93', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('539', '161', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '120.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('540', '161', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '48.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '5.13', '0.00', '0.00', '18', '0.00', '0', '33.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('541', '161', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('542', '161', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '48.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '5.13', '0.00', '0.00', '18', '0.00', '0', '33.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('543', '161', '151', '125', 'GALLETA DE QUINUA', '24.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '3.67', '0.00', '0.00', '18', '0.00', '0', '24.07', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('544', '161', '152', '83', 'CHIP DE QUINUA NATURAL', '60.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '11.02', '0.00', '0.00', '18', '0.00', '0', '72.24', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('545', '162', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('546', '163', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('547', '163', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('548', '163', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('549', '164', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('550', '165', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('551', '166', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('552', '167', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('553', '168', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('554', '169', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('555', '169', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('556', '169', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('557', '169', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('558', '170', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('559', '170', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('560', '170', '151', '125', 'GALLETA DE QUINUA', '2.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.43', '0.00', '0.00', '18', '0.00', '0', '2.80', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('561', '171', '155', '79', 'CEREAL DE QUINUA NATURAL', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('562', '171', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('563', '172', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('564', '173', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '80.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '15.86', '0.00', '0.00', '18', '0.00', '0', '104.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('565', '173', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '80.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '15.86', '0.00', '0.00', '18', '0.00', '0', '104.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('566', '174', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('567', '174', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('568', '175', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('569', '176', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '142.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '32.49', '0.00', '0.00', '18', '0.00', '0', '213.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('570', '176', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '142.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '32.49', '0.00', '0.00', '18', '0.00', '0', '213.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('571', '177', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '233.28', '0.00', '0.00', '18', '0.00', '0', '1529.28', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('572', '178', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('573', '179', '151', '125', 'GALLETA DE QUINUA', '15.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('574', '180', '155', '79', 'CEREAL DE QUINUA NATURAL', '15.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '17.16', '0.00', '0.00', '18', '0.00', '0', '112.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('575', '180', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '15.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '17.16', '0.00', '0.00', '18', '0.00', '0', '112.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('576', '180', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('577', '180', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('578', '180', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('579', '180', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('580', '180', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('581', '180', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('582', '180', '152', '83', 'CHIP DE QUINUA NATURAL', '15.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '4.00', '0.00', '0.00', '18', '0.00', '0', '26.25', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('583', '181', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '20.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '5.80', '0.00', '0.00', '18', '0.00', '0', '38.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('584', '181', '188', '124', 'FLETE', '1.00', '9.50', '8.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.45', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('585', '182', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '8.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '14.64', '0.00', '0.00', '18', '0.00', '0', '96.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('586', '182', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('587', '183', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1728.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '287.32', '0.00', '0.00', '18', '0.00', '0', '1883.52', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('588', '183', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1152.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '191.54', '0.00', '0.00', '18', '0.00', '0', '1255.68', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('589', '183', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '119.72', '0.00', '0.00', '18', '0.00', '0', '784.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('590', '183', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1584.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '263.37', '0.00', '0.00', '18', '0.00', '0', '1726.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('591', '183', '155', '79', 'CEREAL DE QUINUA NATURAL', '288.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '290.39', '0.00', '0.00', '18', '0.00', '0', '1903.68', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('592', '183', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '96.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '96.80', '0.00', '0.00', '18', '0.00', '0', '634.56', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('593', '183', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '144.00', '2.75', '2.33', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.41', '0.00', '0.00', '18', '0.00', '0', '396.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('594', '183', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144.00', '2.75', '2.33', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.41', '0.00', '0.00', '18', '0.00', '0', '396.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('595', '184', '151', '125', 'GALLETA DE QUINUA', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('596', '185', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('597', '185', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('598', '186', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('599', '186', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('600', '186', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('601', '186', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('602', '187', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('603', '188', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('604', '188', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('605', '188', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('606', '189', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('607', '189', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('608', '190', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('609', '191', '155', '79', 'CEREAL DE QUINUA NATURAL', '10.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('610', '192', '155', '79', 'CEREAL DE QUINUA NATURAL', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('611', '192', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('612', '193', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('613', '194', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('614', '195', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('615', '196', '151', '125', 'GALLETA DE QUINUA', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('616', '197', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('617', '197', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('618', '197', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('619', '198', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('620', '199', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('621', '199', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('622', '199', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('623', '200', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('624', '200', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('625', '200', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('626', '201', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('627', '202', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('628', '203', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('629', '203', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('630', '204', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('631', '205', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('632', '206', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('633', '207', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('634', '207', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('635', '208', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '14.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('636', '208', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '13.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.98', '0.00', '0.00', '18', '0.00', '0', '13.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('637', '208', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '13.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.98', '0.00', '0.00', '18', '0.00', '0', '13.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('638', '209', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('639', '210', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('640', '211', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('641', '211', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('642', '212', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '349.92', '0.00', '0.00', '18', '0.00', '0', '2293.92', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('643', '213', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '349.92', '0.00', '0.00', '18', '0.00', '0', '2293.92', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('644', '214', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('645', '214', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('646', '215', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('647', '215', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('648', '216', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1728.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '287.32', '0.00', '0.00', '18', '0.00', '0', '1883.52', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('649', '216', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1872.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '311.26', '0.00', '0.00', '18', '0.00', '0', '2040.48', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('650', '216', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1728.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '287.32', '0.00', '0.00', '18', '0.00', '0', '1883.52', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('651', '216', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '119.72', '0.00', '0.00', '18', '0.00', '0', '784.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('652', '216', '155', '79', 'CEREAL DE QUINUA NATURAL', '156.00', '6.60', '5.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '157.06', '0.00', '0.00', '18', '0.00', '0', '1029.60', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('653', '216', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120.00', '6.60', '5.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '120.81', '0.00', '0.00', '18', '0.00', '0', '792.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('654', '216', '152', '83', 'CHIP DE QUINUA NATURAL', '126.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '29.89', '0.00', '0.00', '18', '0.00', '0', '195.93', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('655', '217', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('656', '217', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '20.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '3.36', '0.00', '0.00', '18', '0.00', '0', '22.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('657', '217', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '20.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '3.36', '0.00', '0.00', '18', '0.00', '0', '22.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('658', '217', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '20.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '3.36', '0.00', '0.00', '18', '0.00', '0', '22.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('659', '217', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '20.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '3.36', '0.00', '0.00', '18', '0.00', '0', '22.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('660', '217', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '20.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('661', '217', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '20.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('662', '217', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('663', '217', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('664', '217', '151', '125', 'GALLETA DE QUINUA', '50.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '13.35', '0.00', '0.00', '18', '0.00', '0', '87.50', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('665', '218', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '3.48', '0.00', '0.00', '18', '0.00', '0', '22.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('666', '218', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '3.48', '0.00', '0.00', '18', '0.00', '0', '22.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('667', '218', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '6.96', '0.00', '0.00', '18', '0.00', '0', '45.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('668', '218', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('669', '219', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('670', '220', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('671', '220', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('672', '220', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('673', '221', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('674', '221', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('675', '222', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('676', '222', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('677', '222', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('678', '223', NULL, '', 'ABJGHA  X 15 UNIDADES  500 ML', '5.00', '11.30', '9.58', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.72', '8.62', '0.00', '0.00', '18', '0.00', '0', '56.50', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('679', '224', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('680', '224', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('681', '225', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('682', '226', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('683', '226', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('684', '227', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('685', '227', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('686', '227', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('687', '227', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('688', '227', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('689', '227', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '20.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('690', '227', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '20.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('691', '227', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('692', '227', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('693', '228', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '120.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('694', '228', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '120.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('695', '228', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '120.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('696', '228', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '120.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('697', '228', '152', '83', 'CHIP DE QUINUA NATURAL', '24.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '4.41', '0.00', '0.00', '18', '0.00', '0', '28.90', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('698', '228', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '20.13', '0.00', '0.00', '18', '0.00', '0', '131.98', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('699', '228', '155', '79', 'CEREAL DE QUINUA NATURAL', '24.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '20.13', '0.00', '0.00', '18', '0.00', '0', '131.98', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('700', '228', '151', '125', 'GALLETA DE QUINUA', '24.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '3.67', '0.00', '0.00', '18', '0.00', '0', '24.07', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('701', '229', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('702', '229', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('703', '229', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('704', '229', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('705', '229', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('706', '229', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('707', '229', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('708', '229', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('709', '229', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('710', '229', '151', '125', 'GALLETA DE QUINUA', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('711', '230', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('712', '230', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('713', '230', '151', '125', 'GALLETA DE QUINUA', '2.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.43', '0.00', '0.00', '18', '0.00', '0', '2.80', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('714', '231', '151', '125', 'GALLETA DE QUINUA', '1.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.21', '0.00', '0.00', '18', '0.00', '0', '1.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('715', '232', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('716', '232', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('717', '233', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('718', '234', '155', '79', 'CEREAL DE QUINUA NATURAL', '7.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.81', '0.00', '0.00', '18', '0.00', '0', '31.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('719', '234', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('720', '235', '155', '79', 'CEREAL DE QUINUA NATURAL', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('721', '235', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('722', '236', '151', '125', 'GALLETA DE QUINUA', '1.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.21', '0.00', '0.00', '18', '0.00', '0', '1.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('723', '237', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('724', '238', '151', '125', 'GALLETA DE QUINUA', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('725', '239', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('726', '239', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('727', '239', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('728', '240', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('729', '241', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('730', '241', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('731', '242', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('732', '243', '151', '125', 'GALLETA DE QUINUA', '3.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('733', '244', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('734', '244', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('735', '245', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('736', '245', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('737', '246', '155', '79', 'CEREAL DE QUINUA NATURAL', '252.00', '6.60', '5.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '253.79', '0.00', '0.00', '18', '0.00', '0', '1663.70', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('738', '246', '36', '71', 'CAJA DE CEREAL CHOCOLATE', '216.00', '6.60', '5.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '217.53', '0.00', '0.00', '18', '0.00', '0', '1426.03', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('739', '246', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1872.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '311.26', '0.00', '0.00', '18', '0.00', '0', '2040.48', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('740', '246', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '359.15', '0.00', '0.00', '18', '0.00', '0', '2354.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('741', '246', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '119.72', '0.00', '0.00', '18', '0.00', '0', '784.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('742', '246', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '864.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '143.66', '0.00', '0.00', '18', '0.00', '0', '941.76', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('743', '246', '152', '83', 'CHIP DE QUINUA NATURAL', '252.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '59.97', '0.00', '0.00', '18', '0.00', '0', '393.12', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('744', '246', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '288.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '121.21', '0.00', '0.00', '18', '0.00', '0', '794.59', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('745', '247', '155', '79', 'CEREAL DE QUINUA NATURAL', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('746', '247', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '4.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('747', '248', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('748', '248', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('749', '249', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2304.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '373.25', '0.00', '0.00', '18', '0.00', '0', '2446.85', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('750', '250', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '20.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '6.10', '0.00', '0.00', '18', '0.00', '0', '40.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('751', '250', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('752', '251', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '40.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '12.20', '0.00', '0.00', '18', '0.00', '0', '80.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('753', '251', '152', '83', 'CHIP DE QUINUA NATURAL', '7.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '2.99', '0.00', '0.00', '18', '0.00', '0', '19.60', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('754', '251', '151', '125', 'GALLETA DE QUINUA', '4.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.71', '0.00', '0.00', '18', '0.00', '0', '11.20', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('755', '251', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('756', '252', '152', '83', 'CHIP DE QUINUA NATURAL', '10.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('757', '252', '151', '125', 'GALLETA DE QUINUA', '10.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('758', '252', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('759', '252', NULL, '', 'DESCUENTO', '-1.00', '11.20', '9.49', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.71', '-1.71', '0.00', '0.00', '18', '0.00', '0', '-11.20', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('760', '253', '151', '125', 'GALLETA DE QUINUA', '10.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('761', '253', '152', '83', 'CHIP DE QUINUA NATURAL', '10.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('762', '253', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '5.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('763', '253', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '5.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('764', '253', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('765', '253', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('766', '253', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('767', '253', NULL, '', 'DESCUENTO', '-1.00', '16.80', '14.24', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '2.56', '-2.56', '0.00', '0.00', '18', '0.00', '0', '-16.80', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('768', '254', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '96.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '10.25', '0.00', '0.00', '18', '0.00', '0', '67.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('769', '254', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '132.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '14.09', '0.00', '0.00', '18', '0.00', '0', '92.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('770', '254', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '48.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '5.13', '0.00', '0.00', '18', '0.00', '0', '33.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('771', '254', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '72.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '7.69', '0.00', '0.00', '18', '0.00', '0', '50.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('772', '254', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '36.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '12.08', '0.00', '0.00', '18', '0.00', '0', '79.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('773', '254', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '36.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '12.08', '0.00', '0.00', '18', '0.00', '0', '79.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('774', '254', '152', '83', 'CHIP DE QUINUA NATURAL', '96.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '17.57', '0.00', '0.00', '18', '0.00', '0', '115.20', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('775', '255', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '90.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '16.47', '0.00', '0.00', '18', '0.00', '0', '108.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('776', '255', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '72.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '13.18', '0.00', '0.00', '18', '0.00', '0', '86.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('777', '255', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '30.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('778', '255', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '36.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '6.59', '0.00', '0.00', '18', '0.00', '0', '43.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('779', '256', '152', '83', 'CHIP DE QUINUA NATURAL', '60.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '15.99', '0.00', '0.00', '18', '0.00', '0', '104.82', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('780', '256', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18.00', '7.51', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '20.61', '0.00', '0.00', '18', '0.00', '0', '135.09', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('781', '256', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '18.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '3.01', '0.00', '0.00', '18', '0.00', '0', '19.75', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('782', '256', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.02', '0.00', '0.00', '18', '0.00', '0', '39.49', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('783', '256', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '18.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '3.01', '0.00', '0.00', '18', '0.00', '0', '19.75', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('784', '256', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.02', '0.00', '0.00', '18', '0.00', '0', '39.49', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('785', '257', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('786', '257', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('787', '257', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('788', '257', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('789', '257', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('790', '257', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('791', '257', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('792', '257', NULL, '', 'DESCUENTO', '-1.00', '16.80', '14.24', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '2.56', '-2.56', '0.00', '0.00', '18', '0.00', '0', '-16.80', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('793', '258', NULL, '', 'AJMG X 15 UND', '5.00', '11.33', '9.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.73', '8.64', '0.00', '0.00', '18', '0.00', '0', '56.64', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('794', '259', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('795', '259', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('796', '259', '152', '83', 'CHIP DE QUINUA NATURAL', '20.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '8.54', '0.00', '0.00', '18', '0.00', '0', '56.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('797', '259', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('798', '259', NULL, '', 'DESCUENTO', '-1.00', '18.40', '15.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '2.81', '-2.81', '0.00', '0.00', '18', '0.00', '0', '-18.40', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('799', '260', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('800', '260', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('801', '260', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '2.70', '2.29', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.41', '1.24', '0.00', '0.00', '18', '0.00', '0', '8.10', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('802', '260', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('803', '260', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('804', '260', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('805', '260', NULL, '', 'DESCUENTO', '-1.00', '18.52', '15.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '2.83', '-2.83', '0.00', '0.00', '18', '0.00', '0', '-18.52', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('806', '261', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('807', '261', '151', '125', 'GALLETA DE QUINUA', '3.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('808', '261', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('809', '261', NULL, '', 'DESCUENTO', '-1.00', '8.88', '7.53', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.35', '-1.35', '0.00', '0.00', '18', '0.00', '0', '-8.88', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('810', '262', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('811', '262', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('812', '262', '152', '83', 'CHIP DE QUINUA NATURAL', '2.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '0.85', '0.00', '0.00', '18', '0.00', '0', '5.60', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('813', '262', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('814', '262', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('815', '262', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('816', '262', NULL, '', 'DESCUENTO', '-1.00', '13.12', '11.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '2.00', '-2.00', '0.00', '0.00', '18', '0.00', '0', '-13.12', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('817', '263', '155', '79', 'CEREAL DE QUINUA NATURAL', '7.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.81', '0.00', '0.00', '18', '0.00', '0', '31.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('818', '264', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('819', '265', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('820', '266', '151', '125', 'GALLETA DE QUINUA', '30.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('821', '267', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('822', '267', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('823', '267', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('824', '267', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('825', '267', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('826', '267', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('827', '267', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '4.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '4.58', '0.00', '0.00', '18', '0.00', '0', '30.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('828', '267', '155', '79', 'CEREAL DE QUINUA NATURAL', '4.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '4.58', '0.00', '0.00', '18', '0.00', '0', '30.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('829', '267', '151', '125', 'GALLETA DE QUINUA', '12.00', '1.70', '1.44', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.26', '3.11', '0.00', '0.00', '18', '0.00', '0', '20.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('830', '267', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('831', '268', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('832', '268', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('833', '268', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('834', '268', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('835', '268', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('836', '268', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('837', '268', '152', '83', 'CHIP DE QUINUA NATURAL', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('838', '268', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('839', '268', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('840', '268', NULL, '', 'DESCUENTO POR OPERACION GRATUITA', '-1.00', '9.00', '7.63', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.37', '-1.37', '0.00', '0.00', '18', '0.00', '0', '-9.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('841', '269', NULL, '', 'AJMG X 15 UND', '2.00', '11.33', '9.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.73', '3.46', '0.00', '0.00', '18', '0.00', '0', '22.66', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('842', '270', '155', '79', 'CEREAL DE QUINUA NATURAL', '36.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '24.71', '0.00', '0.00', '18', '0.00', '0', '162.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('843', '270', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '36.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '24.71', '0.00', '0.00', '18', '0.00', '0', '162.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('844', '270', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '144.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '15.38', '0.00', '0.00', '18', '0.00', '0', '100.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('845', '270', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '144.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '15.38', '0.00', '0.00', '18', '0.00', '0', '100.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('846', '271', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('847', '271', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('848', '271', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('849', '271', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('850', '271', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('851', '271', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('852', '271', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '20.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('853', '271', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '20.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('854', '271', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('855', '272', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('856', '272', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('857', '272', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('858', '272', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('859', '272', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('860', '272', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('861', '272', '152', '83', 'CHIP DE QUINUA NATURAL', '16.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('862', '272', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('863', '272', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('864', '272', '151', '125', 'GALLETA DE QUINUA', '12.00', '1.70', '1.44', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.26', '3.11', '0.00', '0.00', '18', '0.00', '0', '20.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('865', '273', '155', '79', 'CEREAL DE QUINUA NATURAL', '48.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '48.38', '0.00', '0.00', '18', '0.00', '0', '317.18', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('866', '273', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '25.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '25.20', '0.00', '0.00', '18', '0.00', '0', '165.20', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('867', '273', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '576.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '95.60', '0.00', '0.00', '18', '0.00', '0', '626.69', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('868', '273', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '334.59', '0.00', '0.00', '18', '0.00', '0', '2193.41', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('869', '273', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '576.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '95.60', '0.00', '0.00', '18', '0.00', '0', '626.69', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('870', '273', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '144.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.60', '0.00', '0.00', '18', '0.00', '0', '397.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('871', '273', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.60', '0.00', '0.00', '18', '0.00', '0', '397.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('872', '273', '152', '83', 'CHIP DE QUINUA NATURAL', '168.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '39.93', '0.00', '0.00', '18', '0.00', '0', '261.74', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('873', '273', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '576.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '95.60', '0.00', '0.00', '18', '0.00', '0', '626.69', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('874', '274', '155', '79', 'CEREAL DE QUINUA NATURAL', '48.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '48.39', '0.00', '0.00', '18', '0.00', '0', '317.23', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('875', '274', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '24.20', '0.00', '0.00', '18', '0.00', '0', '158.62', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('876', '274', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '576.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '95.60', '0.00', '0.00', '18', '0.00', '0', '626.69', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('877', '274', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '335.20', '0.00', '0.00', '18', '0.00', '0', '2197.44', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('878', '274', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '576.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '95.60', '0.00', '0.00', '18', '0.00', '0', '626.69', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('879', '274', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '576.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '95.60', '0.00', '0.00', '18', '0.00', '0', '626.69', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('880', '274', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '144.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.60', '0.00', '0.00', '18', '0.00', '0', '397.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('881', '274', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.60', '0.00', '0.00', '18', '0.00', '0', '397.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('882', '274', '152', '83', 'CHIP DE QUINUA NATURAL', '168.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '39.98', '0.00', '0.00', '18', '0.00', '0', '262.08', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('883', '275', '156', '277', 'AGUA DE MESA MAQUILA 500ML', '9416.00', '5.31', '4.50', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.81', '7626.96', '0.00', '0.00', '18', '0.00', '0', '49998.96', '0.00', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('884', '276', '152', '83', 'CHIP DE QUINUA NATURAL', '36.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '7.69', '0.00', '0.00', '18', '0.00', '0', '50.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('885', '276', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '17.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '2.59', '0.00', '0.00', '18', '0.00', '0', '17.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('886', '276', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '15.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '2.29', '0.00', '0.00', '18', '0.00', '0', '15.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('887', '276', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '15.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '2.29', '0.00', '0.00', '18', '0.00', '0', '15.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('888', '276', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '15.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '2.29', '0.00', '0.00', '18', '0.00', '0', '15.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('889', '277', '151', '125', 'GALLETA DE QUINUA', '3.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.64', '0.00', '0.00', '18', '0.00', '0', '4.20', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('890', '278', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('891', '278', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('892', '278', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('893', '278', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('894', '279', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '2.38', '0.00', '0.00', '18', '0.00', '0', '15.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('895', '280', '151', '125', 'GALLETA DE QUINUA', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('896', '281', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '349.92', '0.00', '0.00', '18', '0.00', '0', '2293.92', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('897', '282', '153', '06', 'AGUA DE MESA HOLO 500ML', '3.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '5.31', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('898', '282', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '5.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('899', '282', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '5.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('900', '282', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '4.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('901', '282', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '4.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('902', '282', NULL, '', 'AJG X 15 UND', '4.00', '11.00', '9.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.68', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('903', '283', NULL, '', 'AJG X 15 UND', '3.00', '11.00', '9.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.68', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('904', '284', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '10.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '3.05', '0.00', '0.00', '18', '0.00', '0', '20.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('905', '284', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '10.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '3.05', '0.00', '0.00', '18', '0.00', '0', '20.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('906', '284', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '8.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '2.44', '0.00', '0.00', '18', '0.00', '0', '16.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('907', '284', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '8.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '2.44', '0.00', '0.00', '18', '0.00', '0', '16.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('908', '284', NULL, '', 'BJG X 15 UND', '3.00', '11.00', '9.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.68', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('909', '285', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '349.92', '0.00', '0.00', '18', '0.00', '0', '2293.92', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('910', '286', '194', '545', 'ABJG   HOLITA  X 15 UNIDADES', '1.00', '9.60', '8.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.46', '1.46', '0.00', '0.00', '18', '0.00', '0', '9.60', '13.00', 'PEN', '13.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('911', '286', '153', '06', 'AGUA DE MESA HOLO 500ML', '1.00', '8.50', '7.20', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.30', '1.30', '0.00', '0.00', '18', '0.00', '0', '8.50', '5.31', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('912', '287', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('913', '287', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('914', '287', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('915', '287', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('916', '288', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('917', '288', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('918', '289', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('919', '289', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '5.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.76', '0.00', '0.00', '18', '0.00', '0', '5.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('920', '290', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('921', '291', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('922', '292', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '18.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('923', '293', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('924', '293', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('925', '294', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('926', '294', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('927', '295', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('928', '295', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('929', '295', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('930', '295', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('931', '296', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('932', '297', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('933', '297', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('934', '298', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('935', '299', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('936', '300', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('937', '300', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('938', '300', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('939', '301', '151', '125', 'GALLETA DE QUINUA', '1.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.21', '0.00', '0.00', '18', '0.00', '0', '1.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('940', '302', '151', '125', 'GALLETA DE QUINUA', '1.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.21', '0.00', '0.00', '18', '0.00', '0', '1.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('941', '303', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('942', '303', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('943', '303', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('944', '303', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('945', '304', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('946', '304', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('947', '305', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '5.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('948', '305', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '5.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('949', '305', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '5.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '2.52', '0.00', '0.00', '18', '0.00', '0', '16.50', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('950', '305', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('951', '305', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('952', '305', NULL, '', 'DESCUENTO', '-1.00', '12.10', '10.25', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.85', '-1.85', '0.00', '0.00', '18', '0.00', '0', '-12.10', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('953', '306', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('954', '306', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('955', '306', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('956', '306', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('957', '306', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('958', '306', NULL, '', 'DESCUENTO', '-1.00', '9.12', '7.73', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.39', '-1.39', '0.00', '0.00', '18', '0.00', '0', '-9.12', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('959', '307', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('960', '307', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('961', '307', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('962', '307', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('963', '307', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('964', '307', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('965', '307', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('966', '307', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('967', '307', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('968', '308', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '150.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '16.02', '0.00', '0.00', '18', '0.00', '0', '105.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('969', '308', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '150.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '16.02', '0.00', '0.00', '18', '0.00', '0', '105.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('970', '308', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '150.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '16.02', '0.00', '0.00', '18', '0.00', '0', '105.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('971', '308', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '150.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '16.02', '0.00', '0.00', '18', '0.00', '0', '105.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('972', '308', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '10.07', '0.00', '0.00', '18', '0.00', '0', '66.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('973', '308', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '16.00', '2.19', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.33', '5.35', '0.00', '0.00', '18', '0.00', '0', '35.04', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('974', '308', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '16.00', '2.19', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.33', '5.35', '0.00', '0.00', '18', '0.00', '0', '35.04', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('975', '309', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '200.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '21.36', '0.00', '0.00', '18', '0.00', '0', '140.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('976', '309', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '200.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '21.36', '0.00', '0.00', '18', '0.00', '0', '140.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('977', '309', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '200.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '21.36', '0.00', '0.00', '18', '0.00', '0', '140.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('978', '309', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '200.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '21.36', '0.00', '0.00', '18', '0.00', '0', '140.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('979', '309', '155', '79', 'CEREAL DE QUINUA NATURAL', '16.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '10.98', '0.00', '0.00', '18', '0.00', '0', '72.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('980', '309', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '16.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '10.98', '0.00', '0.00', '18', '0.00', '0', '72.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('981', '309', '152', '83', 'CHIP DE QUINUA NATURAL', '50.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('982', '310', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('983', '310', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('984', '311', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '4.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '7.32', '0.00', '0.00', '18', '0.00', '0', '48.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('985', '311', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('986', '312', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('987', '312', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('988', '312', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('989', '312', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('990', '312', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('991', '312', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('992', '312', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('993', '313', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('994', '313', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('995', '313', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('996', '313', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('997', '313', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('998', '313', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('999', '313', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1000', '313', '151', '125', 'GALLETA DE QUINUA', '1.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '0.43', '0.00', '0.00', '18', '0.00', '0', '2.80', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1001', '313', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1002', '314', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1003', '314', '151', '125', 'GALLETA DE QUINUA', '15.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1004', '314', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '4.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '7.32', '0.00', '0.00', '18', '0.00', '0', '48.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1005', '314', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1006', '315', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1007', '315', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1008', '315', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1009', '315', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1010', '315', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1011', '315', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1012', '316', '30', '251', 'ETIQUETA AUTOADHESIVA HOLO KOLA MIX 500ML', '3500.00', '0.01', '0.01', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.00', '6.94', '0.00', '0.00', '18', '0.00', '0', '45.50', '4.24', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1013', '317', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1014', '317', '155', '79', 'CEREAL DE QUINUA NATURAL', '7.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.81', '0.00', '0.00', '18', '0.00', '0', '31.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1015', '317', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1016', '318', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1017', '319', '155', '79', 'CEREAL DE QUINUA NATURAL', '7.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.81', '0.00', '0.00', '18', '0.00', '0', '31.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1018', '319', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1019', '320', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1020', '320', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '2.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.40', '0.00', '0.00', '18', '0.00', '0', '2.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1021', '320', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1022', '320', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1023', '321', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '2.38', '0.00', '0.00', '18', '0.00', '0', '15.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1024', '322', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1025', '322', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1026', '322', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1027', '322', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1028', '323', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1029', '323', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.19', '0.00', '0.00', '18', '0.00', '0', '7.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1030', '323', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1031', '323', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1032', '323', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1033', '324', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1034', '324', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1035', '325', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1036', '325', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '3.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.59', '0.00', '0.00', '18', '0.00', '0', '3.90', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1037', '325', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1038', '325', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1039', '325', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1040', '326', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1041', '326', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '3.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.59', '0.00', '0.00', '18', '0.00', '0', '3.90', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1042', '326', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1043', '326', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1044', '326', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1045', '327', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '5.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.76', '0.00', '0.00', '18', '0.00', '0', '5.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1046', '327', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1047', '328', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1048', '329', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1049', '329', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1050', '330', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1051', '331', '151', '125', 'GALLETA DE QUINUA', '2.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.43', '0.00', '0.00', '18', '0.00', '0', '2.80', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1052', '332', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1053', '332', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1054', '333', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '24.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '4.76', '0.00', '0.00', '18', '0.00', '0', '31.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1055', '334', '152', '83', 'CHIP DE QUINUA NATURAL', '2.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '0.43', '0.00', '0.00', '18', '0.00', '0', '2.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1056', '334', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1057', '334', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1058', '334', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1059', '334', '151', '125', 'GALLETA DE QUINUA', '5.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '1.14', '0.00', '0.00', '18', '0.00', '0', '7.50', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1060', '335', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1061', '335', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1062', '335', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1063', '336', '152', '83', 'CHIP DE QUINUA NATURAL', '24.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '5.13', '0.00', '0.00', '18', '0.00', '0', '33.60', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1064', '337', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1065', '337', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1066', '337', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1067', '338', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '1.28', '0.00', '0.00', '18', '0.00', '0', '8.40', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1068', '339', '155', '79', 'CEREAL DE QUINUA NATURAL', '252.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '254.02', '0.00', '0.00', '18', '0.00', '0', '1665.22', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1069', '339', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '120.96', '0.00', '0.00', '18', '0.00', '0', '792.96', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1070', '339', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2736.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '454.92', '0.00', '0.00', '18', '0.00', '0', '2982.24', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1071', '339', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '239.43', '0.00', '0.00', '18', '0.00', '0', '1569.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1072', '339', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '119.72', '0.00', '0.00', '18', '0.00', '0', '784.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1073', '339', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1440.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '239.43', '0.00', '0.00', '18', '0.00', '0', '1569.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1074', '339', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '432.00', '2.75', '2.33', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '181.42', '0.00', '0.00', '18', '0.00', '0', '1189.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1075', '339', '152', '83', 'CHIP DE QUINUA NATURAL', '168.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '39.93', '0.00', '0.00', '18', '0.00', '0', '261.74', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1076', '340', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '11.90', '10.08', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.82', '1.82', '0.00', '0.00', '18', '0.00', '0', '11.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1077', '340', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '18.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1078', '340', '152', '83', 'CHIP DE QUINUA NATURAL', '3.00', '2.70', '2.29', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.41', '1.24', '0.00', '0.00', '18', '0.00', '0', '8.10', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1079', '340', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '1.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1080', '340', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '1.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1081', '340', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1082', '341', '155', '79', 'CEREAL DE QUINUA NATURAL', '8.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '14.64', '0.00', '0.00', '18', '0.00', '0', '96.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1083', '341', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '5.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1084', '341', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '5.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '2.52', '0.00', '0.00', '18', '0.00', '0', '16.50', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1085', '341', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1086', '342', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1087', '342', '151', '125', 'GALLETA DE QUINUA', '2.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '0.85', '0.00', '0.00', '18', '0.00', '0', '5.60', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1088', '342', '152', '83', 'CHIP DE QUINUA NATURAL', '2.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '0.85', '0.00', '0.00', '18', '0.00', '0', '5.60', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1089', '342', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1090', '343', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1091', '343', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1092', '344', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1093', '345', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1094', '345', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1095', '346', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1096', '347', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1097', '347', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '13.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '2.58', '0.00', '0.00', '18', '0.00', '0', '16.90', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1098', '348', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1099', '348', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1100', '349', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1101', '349', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1102', '350', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1103', '350', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1104', '351', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1105', '351', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1106', '352', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1107', '352', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1108', '353', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1109', '354', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1110', '354', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1111', '355', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1112', '355', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1113', '356', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1114', '357', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1115', '357', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '13.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '2.58', '0.00', '0.00', '18', '0.00', '0', '16.90', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1116', '358', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1117', '358', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1118', '359', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1119', '359', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1120', '360', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1121', '360', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1122', '361', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1123', '361', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1124', '362', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '466.56', '0.00', '0.00', '18', '0.00', '0', '3058.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1125', '363', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '466.56', '0.00', '0.00', '18', '0.00', '0', '3058.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1126', '364', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '8.24', '0.00', '0.00', '18', '0.00', '0', '54.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1127', '365', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1128', '366', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1129', '366', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1130', '366', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1131', '367', '155', '79', 'CEREAL DE QUINUA NATURAL', '5.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1132', '367', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1133', '368', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1134', '368', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1135', '368', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1136', '368', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '2.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.40', '0.00', '0.00', '18', '0.00', '0', '2.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1137', '369', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1138', '370', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1139', '371', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1140', '372', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '5.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '2.52', '0.00', '0.00', '18', '0.00', '0', '16.50', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1141', '372', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '3.02', '0.00', '0.00', '18', '0.00', '0', '19.80', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1142', '373', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '10.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1143', '373', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '10.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1144', '373', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '10.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1145', '373', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '10.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '1.98', '0.00', '0.00', '18', '0.00', '0', '13.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1146', '373', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1147', '374', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '2.06', '0.00', '0.00', '18', '0.00', '0', '13.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1148', '375', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1149', '376', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1150', '376', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.92', '0.00', '0.00', '18', '0.00', '0', '6.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1151', '377', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1152', '377', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.46', '0.00', '0.00', '18', '0.00', '0', '3.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1153', '377', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1154', '377', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1155', '378', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '2.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '1.37', '0.00', '0.00', '18', '0.00', '0', '9.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1156', '379', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '4.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1157', '379', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '4.00', '1.30', '1.10', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '0.79', '0.00', '0.00', '18', '0.00', '0', '5.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1158', '380', '155', '79', 'CEREAL DE QUINUA NATURAL', '132.00', '6.60', '5.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '132.89', '0.00', '0.00', '18', '0.00', '0', '871.20', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1159', '380', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120.00', '6.60', '5.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '120.81', '0.00', '0.00', '18', '0.00', '0', '792.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1160', '380', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '335.20', '0.00', '0.00', '18', '0.00', '0', '2197.44', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1161', '380', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '720.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '119.72', '0.00', '0.00', '18', '0.00', '0', '784.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1162', '380', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '119.72', '0.00', '0.00', '18', '0.00', '0', '784.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1163', '380', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1152.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '191.54', '0.00', '0.00', '18', '0.00', '0', '1255.68', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1164', '380', '152', '83', 'CHIP DE QUINUA NATURAL', '168.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '39.93', '0.00', '0.00', '18', '0.00', '0', '261.74', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1165', '381', '155', '79', 'CEREAL DE QUINUA NATURAL', '132.00', '6.60', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '132.96', '0.00', '0.00', '18', '0.00', '0', '871.60', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1166', '381', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120.00', '6.60', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '120.87', '0.00', '0.00', '18', '0.00', '0', '792.36', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1167', '381', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2016.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '335.20', '0.00', '0.00', '18', '0.00', '0', '2197.44', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1168', '381', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '720.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '119.72', '0.00', '0.00', '18', '0.00', '0', '784.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1169', '381', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '720.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '119.72', '0.00', '0.00', '18', '0.00', '0', '784.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1170', '381', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1152.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '191.54', '0.00', '0.00', '18', '0.00', '0', '1255.68', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1171', '381', '152', '83', 'CHIP DE QUINUA NATURAL', '168.00', '1.55', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '39.80', '0.00', '0.00', '18', '0.00', '0', '260.90', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1172', '382', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '5.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.83', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1173', '382', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1174', '383', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1175', '383', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1176', '383', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1177', '383', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1178', '383', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1179', '383', '152', '83', 'CHIP DE QUINUA NATURAL', '60.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '16.02', '0.00', '0.00', '18', '0.00', '0', '105.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1180', '383', '151', '125', 'GALLETA DE QUINUA', '24.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1181', '384', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1182', '384', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1183', '384', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1184', '384', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '1.90', '1.61', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.29', '1.74', '0.00', '0.00', '18', '0.00', '0', '11.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1185', '384', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1186', '384', NULL, '', 'DESCUENTO', '-1.00', '9.12', '7.73', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.39', '-1.39', '0.00', '0.00', '18', '0.00', '0', '-9.12', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1187', '385', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3600.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '583.20', '0.00', '0.00', '18', '0.00', '0', '3823.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1188', '386', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3600.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '583.10', '0.00', '0.00', '18', '0.00', '0', '3823.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1189', '387', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '31.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '4.35', '0.00', '0.00', '18', '0.00', '0', '28.52', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1190', '387', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.37', '0.00', '0.00', '18', '0.00', '0', '22.08', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1191', '387', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '15.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '2.11', '0.00', '0.00', '18', '0.00', '0', '13.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1192', '387', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '15.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '2.11', '0.00', '0.00', '18', '0.00', '0', '13.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1193', '387', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '10.00', '2.52', '2.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.38', '3.84', '0.00', '0.00', '18', '0.00', '0', '25.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1194', '387', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '10.00', '2.52', '2.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.38', '3.84', '0.00', '0.00', '18', '0.00', '0', '25.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1195', '387', '152', '83', 'CHIP DE QUINUA NATURAL', '24.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '5.13', '0.00', '0.00', '18', '0.00', '0', '33.60', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1196', '387', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '5.70', '4.83', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.87', '10.43', '0.00', '0.00', '18', '0.00', '0', '68.40', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1197', '387', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18.00', '5.70', '4.83', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.87', '15.65', '0.00', '0.00', '18', '0.00', '0', '102.60', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1198', '387', '151', '125', 'GALLETA DE QUINUA', '12.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1199', '388', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '5.05', '0.00', '0.00', '18', '0.00', '0', '33.12', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1200', '388', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.37', '0.00', '0.00', '18', '0.00', '0', '22.08', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1201', '388', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.37', '0.00', '0.00', '18', '0.00', '0', '22.08', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1202', '388', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.37', '0.00', '0.00', '18', '0.00', '0', '22.08', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1203', '388', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '16.00', '2.52', '2.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.38', '6.15', '0.00', '0.00', '18', '0.00', '0', '40.32', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1204', '388', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '16.00', '2.52', '2.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.38', '6.15', '0.00', '0.00', '18', '0.00', '0', '40.32', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1205', '388', '152', '83', 'CHIP DE QUINUA NATURAL', '36.00', '1.32', '1.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '7.25', '0.00', '0.00', '18', '0.00', '0', '47.52', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1206', '388', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24.00', '5.80', '4.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.88', '21.23', '0.00', '0.00', '18', '0.00', '0', '139.20', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1207', '388', '155', '79', 'CEREAL DE QUINUA NATURAL', '20.00', '5.80', '4.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.88', '17.69', '0.00', '0.00', '18', '0.00', '0', '116.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1208', '388', '151', '125', 'GALLETA DE QUINUA', '24.00', '0.90', '0.76', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.29', '0.00', '0.00', '18', '0.00', '0', '21.60', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1209', '389', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '5.05', '0.00', '0.00', '18', '0.00', '0', '33.12', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1210', '389', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.37', '0.00', '0.00', '18', '0.00', '0', '22.08', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1211', '389', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.37', '0.00', '0.00', '18', '0.00', '0', '22.08', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1212', '389', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.37', '0.00', '0.00', '18', '0.00', '0', '22.08', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1213', '389', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '16.00', '2.52', '2.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.38', '6.15', '0.00', '0.00', '18', '0.00', '0', '40.32', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1214', '389', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '16.00', '2.52', '2.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.38', '6.15', '0.00', '0.00', '18', '0.00', '0', '40.32', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1215', '389', '152', '83', 'CHIP DE QUINUA NATURAL', '36.00', '1.32', '1.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.20', '7.25', '0.00', '0.00', '18', '0.00', '0', '47.52', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1216', '389', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '24.00', '5.80', '4.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.88', '21.23', '0.00', '0.00', '18', '0.00', '0', '139.20', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1217', '389', '155', '79', 'CEREAL DE QUINUA NATURAL', '20.00', '5.80', '4.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.88', '17.69', '0.00', '0.00', '18', '0.00', '0', '116.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1218', '389', '151', '125', 'GALLETA DE QUINUA', '24.00', '0.90', '0.76', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.29', '0.00', '0.00', '18', '0.00', '0', '21.60', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1219', '390', '151', '125', 'GALLETA DE QUINUA', '1.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.46', '0.43', '0.43', '0.00', '0.00', '18', '0.00', '0', '2.80', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1220', '390', '152', '83', 'CHIP DE QUINUA NATURAL', '1.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.46', '0.43', '0.43', '0.00', '0.00', '18', '0.00', '0', '2.80', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1221', '390', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '5.86', '1.83', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1222', '390', '188', '124', 'FLETE', '1.00', '9.50', '8.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.55', '1.45', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1223', '391', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '30.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.50', '15.10', '0.00', '0.00', '18', '0.00', '0', '99.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1224', '391', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1225', '392', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.66', '0.31', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1226', '392', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.66', '0.31', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1227', '392', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '3.19', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1228', '392', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '3.19', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1229', '392', '188', '124', 'FLETE', '1.00', '9.50', '8.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.58', '1.45', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1230', '393', '152', '83', 'CHIP DE QUINUA NATURAL', '30.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '15.51', '0.43', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1231', '393', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.29', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1232', '394', '151', '125', 'GALLETA DE QUINUA', '6.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '2.77', '0.43', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1233', '394', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.98', '0.31', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1234', '394', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '2.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.66', '0.31', '0.61', '0.00', '0.00', '18', '0.00', '0', '4.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1235', '394', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.98', '1.83', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1236', '394', '188', '124', 'FLETE', '1.00', '9.50', '8.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.57', '1.45', '1.45', '0.00', '0.00', '18', '0.00', '0', '9.50', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1237', '395', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1238', '395', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '3.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1239', '395', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '3.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1240', '395', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '3.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '0.50', '0.00', '0.00', '18', '0.00', '0', '3.30', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1241', '395', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '3.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1242', '395', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '3.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1243', '395', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '1.60', '0.00', '0.00', '18', '0.00', '0', '10.50', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1244', '395', '155', '79', 'CEREAL DE QUINUA NATURAL', '3.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1245', '395', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1246', '395', '151', '125', 'GALLETA DE QUINUA', '6.00', '1.70', '1.44', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.26', '1.56', '0.00', '0.00', '18', '0.00', '0', '10.20', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1247', '396', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1248', '396', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1249', '397', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '60.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1250', '397', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '60.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1251', '397', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '60.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1252', '397', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '60.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1253', '397', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '5.03', '0.00', '0.00', '18', '0.00', '0', '32.99', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1254', '397', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '5.03', '0.00', '0.00', '18', '0.00', '0', '32.99', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1255', '397', '152', '83', 'CHIP DE QUINUA NATURAL', '24.00', '1.20', '1.02', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.18', '4.41', '0.00', '0.00', '18', '0.00', '0', '28.90', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1256', '397', '151', '125', 'GALLETA DE QUINUA', '14.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1257', '397', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.33', '4.02', '0.00', '0.00', '18', '0.00', '0', '26.34', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1258', '397', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '24.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.33', '8.04', '0.00', '0.00', '18', '0.00', '0', '52.68', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1259', '398', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2160.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '349.92', '0.00', '0.00', '18', '0.00', '0', '2293.92', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1260', '399', '155', '79', 'CEREAL DE QUINUA NATURAL', '216.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '217.66', '0.00', '0.00', '18', '0.00', '0', '1426.90', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1261', '399', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '120.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '120.92', '0.00', '0.00', '18', '0.00', '0', '792.72', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1262', '399', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1176.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '195.53', '0.00', '0.00', '18', '0.00', '0', '1281.84', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1263', '399', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '888.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '147.65', '0.00', '0.00', '18', '0.00', '0', '967.92', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1264', '399', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '456.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '75.82', '0.00', '0.00', '18', '0.00', '0', '497.04', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1265', '399', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '288.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '47.89', '0.00', '0.00', '18', '0.00', '0', '313.92', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1266', '399', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '168.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '70.71', '0.00', '0.00', '18', '0.00', '0', '463.51', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1267', '399', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '600.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '252.52', '0.00', '0.00', '18', '0.00', '0', '1655.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1268', '399', '152', '83', 'CHIP DE QUINUA NATURAL', '42.00', '1.55', '1.31', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '9.93', '0.00', '0.00', '18', '0.00', '0', '65.10', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1269', '400', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1270', '400', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1271', '400', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1272', '400', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1273', '400', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '30.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '10.07', '0.00', '0.00', '18', '0.00', '0', '66.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1274', '400', '152', '83', 'CHIP DE QUINUA NATURAL', '28.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '7.47', '0.00', '0.00', '18', '0.00', '0', '49.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1275', '400', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '20.59', '0.00', '0.00', '18', '0.00', '0', '135.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1276', '400', '155', '79', 'CEREAL DE QUINUA NATURAL', '15.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '17.16', '0.00', '0.00', '18', '0.00', '0', '112.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1277', '400', '151', '125', 'GALLETA DE QUINUA', '12.00', '1.70', '1.44', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.26', '3.11', '0.00', '0.00', '18', '0.00', '0', '20.40', '1.50', 'PEN', '1.40', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1278', '401', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '6.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '2.40', '0.31', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1279', '401', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '6.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '2.40', '0.31', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1280', '401', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '4.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.60', '0.31', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1281', '401', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '4.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.60', '0.31', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1282', '401', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '3.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '7.20', '1.83', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1283', '401', '155', '79', 'CEREAL DE QUINUA NATURAL', '2.00', '12.00', '10.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '4.80', '1.83', '3.66', '0.00', '0.00', '18', '0.00', '0', '24.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1284', '401', '152', '83', 'CHIP DE QUINUA NATURAL', '10.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '5.60', '0.43', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1285', '402', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1286', '402', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1287', '402', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1288', '402', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1289', '402', '152', '83', 'CHIP DE QUINUA NATURAL', '12.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '3.20', '0.00', '0.00', '18', '0.00', '0', '21.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1290', '402', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1291', '403', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '36.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '17.57', '0.00', '0.00', '18', '0.00', '0', '115.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1292', '403', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '36.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '17.57', '0.00', '0.00', '18', '0.00', '0', '115.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1293', '403', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '8.50', '7.20', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.30', '15.56', '0.00', '0.00', '18', '0.00', '0', '102.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1294', '404', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '10.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1295', '404', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '7.69', '0.00', '0.00', '18', '0.00', '0', '50.40', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1296', '404', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '2.93', '0.00', '0.00', '18', '0.00', '0', '19.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1297', '404', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '10.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '2.29', '0.00', '0.00', '18', '0.00', '0', '15.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1298', '404', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '8.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1299', '404', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1300', '404', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '12.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1301', '405', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '9648.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1030.21', '0.00', '0.00', '18', '0.00', '0', '6753.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1302', '406', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1303', '406', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1304', '406', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1305', '406', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1306', '406', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '15.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1307', '406', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '15.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1308', '406', '152', '83', 'CHIP DE QUINUA NATURAL', '40.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '10.68', '0.00', '0.00', '18', '0.00', '0', '70.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1309', '406', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '20.59', '0.00', '0.00', '18', '0.00', '0', '135.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1310', '406', '155', '79', 'CEREAL DE QUINUA NATURAL', '15.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '17.16', '0.00', '0.00', '18', '0.00', '0', '112.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1311', '407', NULL, '', 'AJAE X 15 UND', '1500.00', '8.00', '6.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '750.00', '1.22', '1830.51', '0.00', '0.00', '18', '0.00', '0', '12000.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1312', '407', NULL, '', 'AJAE X 15 UND', '100.00', '8.00', '6.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '50.00', '1.22', '122.03', '0.00', '0.00', '18', '0.00', '0', '800.00', '0.00', '', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1313', '408', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1314', '408', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1315', '409', '155', '79', 'CEREAL DE QUINUA NATURAL', '15.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '19.22', '0.00', '0.00', '18', '0.00', '0', '126.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1316', '409', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1317', '409', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1318', '409', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '5.49', '0.00', '0.00', '18', '0.00', '0', '36.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1319', '409', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '24.00', '3.60', '3.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.55', '13.18', '0.00', '0.00', '18', '0.00', '0', '86.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1320', '409', '152', '83', 'CHIP DE QUINUA NATURAL', '50.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '13.35', '0.00', '0.00', '18', '0.00', '0', '87.50', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1321', '409', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '15.00', '8.40', '7.12', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.28', '19.22', '0.00', '0.00', '18', '0.00', '0', '126.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1322', '410', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30.00', '0.90', '0.76', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '4.12', '0.00', '0.00', '18', '0.00', '0', '27.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1323', '410', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25.00', '0.90', '0.76', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1324', '410', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25.00', '0.90', '0.76', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.43', '0.00', '0.00', '18', '0.00', '0', '22.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1325', '410', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '20.00', '0.90', '0.76', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '2.75', '0.00', '0.00', '18', '0.00', '0', '18.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1326', '410', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.52', '2.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.38', '4.61', '0.00', '0.00', '18', '0.00', '0', '30.24', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1327', '410', '152', '83', 'CHIP DE QUINUA NATURAL', '20.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1328', '410', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '5.70', '4.83', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.87', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1329', '410', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '5.70', '4.83', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.87', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1330', '411', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '30.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '4.21', '0.00', '0.00', '18', '0.00', '0', '27.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1331', '411', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.51', '0.00', '0.00', '18', '0.00', '0', '23.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1332', '411', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '3.51', '0.00', '0.00', '18', '0.00', '0', '23.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1333', '411', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '20.00', '0.92', '0.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.14', '2.81', '0.00', '0.00', '18', '0.00', '0', '18.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1334', '411', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.52', '2.14', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.38', '4.61', '0.00', '0.00', '18', '0.00', '0', '30.24', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1335', '411', '152', '83', 'CHIP DE QUINUA NATURAL', '20.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1336', '411', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '5.70', '4.83', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.87', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1337', '411', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '5.70', '4.83', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.87', '5.22', '0.00', '0.00', '18', '0.00', '0', '34.20', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1338', '412', '196', '1002', 'AJAE X 15 UND', '1600.00', '8.00', '6.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '800.00', '1.22', '1952.54', '0.00', '0.00', '18', '0.00', '0', '12800.00', '8.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1339', '413', '196', '1002', 'AJAE X 15 UND', '1600.00', '8.00', '6.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '800.00', '1.22', '1952.54', '0.00', '0.00', '18', '0.00', '0', '12800.00', '8.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1340', '414', '185', '1235', 'AJEU X 15 UND', '1260.00', '8.00', '6.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '366.34', '1.22', '1537.63', '0.00', '0.00', '18', '0.00', '0', '10080.00', '8.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1341', '415', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '10.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '3.05', '0.00', '0.00', '18', '0.00', '0', '20.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1342', '415', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '8.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '2.44', '0.00', '0.00', '18', '0.00', '0', '16.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1343', '415', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '8.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '2.44', '0.00', '0.00', '18', '0.00', '0', '16.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1344', '415', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '10.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '3.05', '0.00', '0.00', '18', '0.00', '0', '20.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1345', '415', '153', '06', 'AGUA DE MESA HOLO 500ML', '4.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.07', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '5.31', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1346', '416', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '466.56', '0.00', '0.00', '18', '0.00', '0', '3058.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1347', '417', '152', '83', 'CHIP DE QUINUA NATURAL', '10.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '4.56', '0.43', '4.27', '0.00', '0.00', '18', '0.00', '0', '28.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1348', '417', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '8.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '2.60', '0.31', '2.44', '0.00', '0.00', '18', '0.00', '0', '16.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1349', '417', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.33', '0.31', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1350', '417', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.33', '0.31', '0.31', '0.00', '0.00', '18', '0.00', '0', '2.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1351', '417', '188', '124', 'FLETE', '1.00', '11.00', '9.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.79', '1.68', '1.68', '0.00', '0.00', '18', '0.00', '0', '11.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1352', '418', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '2.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.10', '0.50', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1353', '418', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '2.00', '3.30', '2.80', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.10', '0.50', '1.01', '0.00', '0.00', '18', '0.00', '0', '6.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1354', '418', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '6.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '2.00', '0.31', '1.83', '0.00', '0.00', '18', '0.00', '0', '12.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1355', '418', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '5.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.67', '0.31', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1356', '418', '188', '124', 'FLETE', '1.00', '7.00', '5.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '1.17', '1.07', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '7.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1357', '419', '155', '79', 'CEREAL DE QUINUA NATURAL', '168.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '169.34', '0.00', '0.00', '18', '0.00', '0', '1110.14', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1358', '419', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '156.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '157.25', '0.00', '0.00', '18', '0.00', '0', '1030.85', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1359', '419', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1152.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '191.37', '0.00', '0.00', '18', '0.00', '0', '1254.53', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1360', '419', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '1440.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '239.43', '0.00', '0.00', '18', '0.00', '0', '1569.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1361', '419', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1296.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '215.29', '0.00', '0.00', '18', '0.00', '0', '1411.34', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1362', '419', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1584.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '263.37', '0.00', '0.00', '18', '0.00', '0', '1726.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1363', '419', '152', '83', 'CHIP DE QUINUA NATURAL', '42.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '9.98', '0.00', '0.00', '18', '0.00', '0', '65.39', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1364', '420', '152', '83', 'CHIP DE QUINUA NATURAL', '17.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '6.80', '0.31', '5.19', '0.00', '0.00', '18', '0.00', '0', '34.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1365', '420', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '5.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '2.80', '0.43', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1366', '421', '198', '1115', 'AJHP X 15 UND', '15.00', '9.00', '7.63', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.37', '20.59', '0.00', '0.00', '18', '0.00', '0', '135.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1367', '422', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1368', '422', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1369', '422', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1370', '422', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '24.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '2.56', '0.00', '0.00', '18', '0.00', '0', '16.80', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1371', '422', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '40.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '33.56', '0.00', '0.00', '18', '0.00', '0', '220.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1372', '422', '155', '79', 'CEREAL DE QUINUA NATURAL', '40.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '33.56', '0.00', '0.00', '18', '0.00', '0', '220.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1373', '423', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1374', '423', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1375', '423', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1376', '423', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '24.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1377', '423', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '4.03', '0.00', '0.00', '18', '0.00', '0', '26.40', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1378', '423', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '15.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '5.03', '0.00', '0.00', '18', '0.00', '0', '33.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1379', '423', '152', '83', 'CHIP DE QUINUA NATURAL', '24.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '6.41', '0.00', '0.00', '18', '0.00', '0', '42.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1380', '423', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1381', '423', '155', '79', 'CEREAL DE QUINUA NATURAL', '8.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1382', '424', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1383', '424', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1384', '424', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1385', '424', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '36.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '6.04', '0.00', '0.00', '18', '0.00', '0', '39.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1386', '424', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '6.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1387', '424', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.20', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1388', '424', '152', '83', 'CHIP DE QUINUA NATURAL', '48.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '12.81', '0.00', '0.00', '18', '0.00', '0', '84.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1389', '424', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1390', '424', '155', '79', 'CEREAL DE QUINUA NATURAL', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1391', '425', '153', '06', 'AGUA DE MESA HOLO 500ML', '100.00', '5.31', '4.50', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.81', '81.00', '0.00', '0.00', '18', '0.00', '0', '531.00', '5.31', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1392', '425', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '100.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '15.25', '0.00', '0.00', '18', '0.00', '0', '100.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1393', '426', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '100.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '15.25', '0.00', '0.00', '18', '0.00', '0', '100.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1394', '426', '177', '280', 'CHIP DE QUINUA SABOR SALSA VERDE', '50.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '7.63', '0.00', '0.00', '18', '0.00', '0', '50.00', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1395', '427', '182', '1234', 'BJGH', '16.00', '9.50', '8.05', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '9.50', '1.45', '23.19', '0.00', '0.00', '18', '0.00', '0', '152.00', '12.00', 'PEN', '9.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1396', '428', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1397', '428', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1398', '429', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '466.56', '0.00', '0.00', '18', '0.00', '0', '3058.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1399', '430', '155', '79', 'CEREAL DE QUINUA NATURAL', '240.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '241.92', '0.00', '0.00', '18', '0.00', '0', '1585.92', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1400', '430', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '240.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '241.92', '0.00', '0.00', '18', '0.00', '0', '1585.92', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1401', '430', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '1008.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '167.60', '0.00', '0.00', '18', '0.00', '0', '1098.72', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1402', '430', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '864.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '143.66', '0.00', '0.00', '18', '0.00', '0', '941.76', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1403', '430', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1296.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '215.49', '0.00', '0.00', '18', '0.00', '0', '1412.64', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1404', '430', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '1440.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '239.43', '0.00', '0.00', '18', '0.00', '0', '1569.60', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1405', '430', '152', '83', 'CHIP DE QUINUA NATURAL', '42.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '9.98', '0.00', '0.00', '18', '0.00', '0', '65.44', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1406', '430', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '288.00', '2.75', '2.33', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '120.90', '0.00', '0.00', '18', '0.00', '0', '792.58', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1407', '431', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '6480.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '691.93', '0.00', '0.00', '18', '0.00', '0', '4536.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1408', '432', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '18.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '8.79', '0.00', '0.00', '18', '0.00', '0', '57.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1409', '432', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '18.00', '3.20', '2.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.49', '8.79', '0.00', '0.00', '18', '0.00', '0', '57.60', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1410', '433', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.16', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1411', '433', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '12.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '2.01', '0.00', '0.00', '18', '0.00', '0', '13.16', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1412', '433', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '18.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '3.01', '0.00', '0.00', '18', '0.00', '0', '19.75', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1413', '433', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '18.00', '7.51', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '20.61', '0.00', '0.00', '18', '0.00', '0', '135.09', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1414', '433', '152', '83', 'CHIP DE QUINUA NATURAL', '90.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '23.98', '0.00', '0.00', '18', '0.00', '0', '157.23', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1415', '434', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25.00', '2.00', '1.69', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.31', '7.63', '0.00', '0.00', '18', '0.00', '0', '50.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1416', '434', '152', '83', 'CHIP DE QUINUA NATURAL', '20.00', '2.80', '2.37', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.43', '8.54', '0.00', '0.00', '18', '0.00', '0', '56.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1417', '435', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '7.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.75', '0.00', '0.00', '18', '0.00', '0', '4.90', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1418', '435', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '5.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '0.53', '0.00', '0.00', '18', '0.00', '0', '3.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1419', '435', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '10.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1420', '435', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '10.00', '0.70', '0.59', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.11', '1.07', '0.00', '0.00', '18', '0.00', '0', '7.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1421', '435', '155', '79', 'CEREAL DE QUINUA NATURAL', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1422', '435', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '1.00', '4.50', '3.81', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.69', '0.69', '0.00', '0.00', '18', '0.00', '0', '4.50', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1423', '436', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1424', '436', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '167.00', '1.50', '1.27', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.23', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1425', '437', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1426', '437', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1427', '437', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '20.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1428', '437', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '25.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '4.19', '0.00', '0.00', '18', '0.00', '0', '27.50', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1429', '437', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '20.00', '2.20', '1.86', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.34', '6.71', '0.00', '0.00', '18', '0.00', '0', '44.00', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1430', '437', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '13.73', '0.00', '0.00', '18', '0.00', '0', '90.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1431', '437', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '6.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1432', '437', '152', '83', 'CHIP DE QUINUA NATURAL', '6.00', '1.75', '1.48', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.27', '1.60', '0.00', '0.00', '18', '0.00', '0', '10.50', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1433', '438', '152', '83', 'CHIP DE QUINUA NATURAL', '10.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1434', '438', '175', '278', 'CHIP DE QUINUA SABOR GUACAMOLE', '10.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1435', '438', '176', '279', 'CHIP DE QUINUA SABOR BARBECUE', '10.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1436', '438', '199', '1118', 'CHIP DE QUINUA SABOR FINAS HIERBAS', '10.00', '1.40', '1.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.21', '2.14', '0.00', '0.00', '18', '0.00', '0', '14.00', '1.40', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1437', '438', '155', '79', 'CEREAL DE QUINUA NATURAL', '8.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1438', '438', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '8.00', '7.50', '6.36', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.14', '9.15', '0.00', '0.00', '18', '0.00', '0', '60.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1439', '439', '155', '79', 'CEREAL DE QUINUA NATURAL', '12.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '10.07', '0.00', '0.00', '18', '0.00', '0', '66.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1440', '439', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '12.00', '5.50', '4.66', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.84', '10.07', '0.00', '0.00', '18', '0.00', '0', '66.00', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1441', '440', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '6.00', '2.56', '2.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.39', '2.34', '0.00', '0.00', '18', '0.00', '0', '15.36', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1442', '440', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '12.00', '2.56', '2.17', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.39', '4.69', '0.00', '0.00', '18', '0.00', '0', '30.72', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1443', '441', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '2880.00', '1.06', '0.90', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.16', '466.56', '0.00', '0.00', '18', '0.00', '0', '3058.56', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1444', '442', '155', '79', 'CEREAL DE QUINUA NATURAL', '276.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '278.25', '0.00', '0.00', '18', '0.00', '0', '1824.08', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1445', '442', '154', '77', 'CEREAL DE QUINUA SABOR CHOCOLATE', '168.00', '6.61', '5.60', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.01', '169.37', '0.00', '0.00', '18', '0.00', '0', '1110.31', '4.50', 'PEN', '4.50', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1446', '442', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '2592.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '430.97', '0.00', '0.00', '18', '0.00', '0', '2825.28', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1447', '442', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '3744.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '621.95', '0.00', '0.00', '18', '0.00', '0', '4077.22', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1448', '442', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '2160.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '359.15', '0.00', '0.00', '18', '0.00', '0', '2354.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1449', '442', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '1872.00', '1.09', '0.92', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '310.97', '0.00', '0.00', '18', '0.00', '0', '2038.61', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1450', '442', '150', '33', 'BARRA ENERGETICA DE QUINUA CON HIGOS', '432.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '181.88', '0.00', '0.00', '18', '0.00', '0', '1192.32', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1451', '442', '149', '32', 'BARRA ENERGETICA DE QUINUA CON DATILES', '144.00', '2.76', '2.34', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.42', '60.63', '0.00', '0.00', '18', '0.00', '0', '397.44', '1.30', 'PEN', '1.30', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1452', '442', '152', '83', 'CHIP DE QUINUA NATURAL', '126.00', '1.56', '1.32', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.24', '29.95', '0.00', '0.00', '18', '0.00', '0', '196.31', '1.20', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1453', '443', '145', '28', 'BARRA DE QUINUA CON MANI Y CHOCOLATE', '144.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '24.16', '0.00', '0.00', '18', '0.00', '0', '158.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1454', '443', '146', '29', 'BARRA DE QUINUA CON MANI Y NARANJA', '144.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '24.16', '0.00', '0.00', '18', '0.00', '0', '158.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1455', '443', '147', '30', 'BARRA DE QUINUA CON MANI Y PASAS', '144.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '24.16', '0.00', '0.00', '18', '0.00', '0', '158.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1456', '443', '148', '31', 'BARRA DE QUINUA CON PASAS Y CHOCOLATE', '144.00', '1.10', '0.93', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.17', '24.16', '0.00', '0.00', '18', '0.00', '0', '158.40', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1457', '444', '206', 'KIT1', 'KIT UNO', '1.00', '25.00', '21.19', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.81', '3.81', '0.00', '0.00', '18', '0.00', '0', '25.00', '25.00', 'PEN', '15.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1458', '445', '3', '172', 'TAPA PLÁSTICA TRANSPARENTE MAQUILA AGUA D.A.M.', '1.00', '67.00', '56.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '10.22', '10.22', '0.00', '0.00', '18', '0.00', '0', '67.00', '0.01', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1459', '445', '32', '290', 'ETIQUETA ADHESIVA HOLITA KOLA MIX 500 ML', '1.00', '67.00', '56.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '10.22', '10.22', '0.00', '0.00', '18', '0.00', '0', '67.00', '4.24', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1460', '447', '204', '84615', 'hvbuh', '1.00', '20.00', '16.95', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.05', '3.05', '0.00', '0.00', '18', '0.00', '0', '20.00', '20.00', 'PEN', '15.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1461', '448', '204', '84615', 'hvbuh', '1.00', '20.00', '16.95', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.05', '3.05', '0.00', '0.00', '18', '0.00', '0', '20.00', '20.00', 'PEN', '15.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1462', '451', '12', '247', 'BOLSA DE POLIPROPILENO (PARA DISPLAYS)', '3000.00', '0.24', '0.20', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.04', '109.83', '0.00', '0.00', '18', '0.00', '0', '720.00', '0.24', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1463', '453', '196', '1002', 'AJAE X 15 UND', '1.00', '8.00', '6.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.22', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '8.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1464', '453', '204', '84615', 'hvbuh', '1.00', '20.00', '16.95', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.05', '3.05', '0.00', '0.00', '18', '0.00', '0', '20.00', '20.00', 'PEN', '15.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1465', '455', '196', '1002', 'AJAE X 15 UND', '1.00', '8.00', '6.78', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.22', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '8.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1466', '455', '207', 'HP806', 'IMPRESORA TÉRMICA 80MM HOIN HOP-H806 USB + SERIE + LAN INTERFACE', '1.00', '520.00', '440.68', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '79.32', '79.32', '0.00', '0.00', '18', '0.00', '0', '520.00', '520.00', 'PEN', '316.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1467', '455', '200', '151564', 'CMTQC X 30 GR', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1468', '458', '78', '11', 'AJINOMOTO (GLUTAMATO)', '3.00', '5.93', '5.03', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.90', '2.71', '0.00', '0.00', '18', '0.00', '0', '17.79', '5.93', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1469', '464', '25', '46', 'BOBINA DE CEREALES BOPP METALIZADA', '1.00', '15.00', '12.71', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0', '0.00', '0.00', '2.29', '2.29', '0.00', '0.00', '18', '0.00', '0', '15.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1470', '2546', '14', '209', 'PREFORMA CRISTAL 19.7GR PET HOLO', '1.00', '125.86', '106.66', '0.00', '0.00', NULL, '106.66', '0.00', '0.00', NULL, '0', '0.00', '0.00', '19.20', '19.20', '0.00', '0.00', '18', '0.00', '0', '125.86', '32.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1471', '2548', '25', '46', 'BOBINA DE CEREALES BOPP METALIZADA', '1.00', '21.94', '18.59', '0.00', '0.00', NULL, '18.59', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.35', '3.35', '0.00', '0.00', '18', '0.00', '0', '21.94', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1472', '2565', '100', '139', 'HARINA DE KIWICHA', '1.00', '223.00', '188.98', '0.00', '0.00', NULL, '188.98', '0.00', '0.00', NULL, '0', '0.00', '0.00', '34.02', '34.02', '0.00', '0.00', '18', '0.00', '0', '223.00', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1473', '2578', '34', '57', 'BOLSA DE SOBREEMPAQUE PARA GALLETA DE AGUA', '1.00', '25.00', '21.19', '0.00', '0.00', NULL, '21.19', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.81', '3.81', '0.00', '0.00', '18', '0.00', '0', '25.00', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1474', '2578', '15', '206', 'PREFORMA CRISTAL 15.7GR PET HOLO', '1.00', '50.00', '42.37', '0.00', '0.00', NULL, '42.37', '0.00', '0.00', NULL, '0', '0.00', '0.00', '7.63', '7.63', '0.00', '0.00', '18', '0.00', '0', '50.00', '0.00', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1475', '2581', '115', '214', 'QUINUA EN GRANO (CON PIEDRAS)', '1.00', '100.00', '84.75', '0.00', '0.00', NULL, '84.75', '0.00', '0.00', NULL, '0', '0.00', '0.00', '15.25', '15.25', '0.00', '0.00', '18', '0.00', '0', '100.00', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1476', '2585', '25', '46', 'BOBINA DE CEREALES BOPP METALIZADA', '1.00', '75.00', '63.56', '0.00', '0.00', NULL, '63.56', '0.00', '0.00', NULL, '0', '0.00', '0.00', '11.44', '11.44', '0.00', '0.00', '18', '0.00', '0', '75.00', '5.70', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1477', '2586', '196', '1002', 'AJAE X 15 UND', '1.00', '8.00', '6.78', '0.00', '0.00', NULL, '6.78', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.22', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '8.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1478', '2587', '196', '1002', 'AJAE X 15 UND', '1.00', '8.00', '6.78', '0.00', '0.00', NULL, '6.78', '0.00', '0.00', NULL, '0', '0.00', '0.00', '1.22', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '8.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1479', '2588', '198', '1115', 'AJHP X 15 UND', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1480', '2589', '198', '1115', 'AJHP X 15 UND', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1481', '2590', '198', '1115', 'AJHP X 15 UND', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1482', '2590', '14', '209', 'PREFORMA CRISTAL 19.7GR PET HOLO', '1.00', '125.01', '105.94', '0.00', '0.00', NULL, '105.94', '0.00', '0.00', NULL, '0', '0.00', '0.00', '19.07', '19.07', '0.00', '0.00', '18', '0.00', '0', '125.01', '125.01', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1483', '2591', '198', '1115', 'AJHP X 15 UND', '1.00', '1.00', '0.00', '1.00', '0.00', NULL, '0.00', '1.00', '0.00', NULL, '0', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '2');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1484', '2591', '14', '209', 'PREFORMA CRISTAL 19.7GR PET HOLO', '1.00', '125.01', '0.00', '125.01', '0.00', NULL, '0.00', '125.01', '0.00', NULL, '0', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0', '125.01', '125.01', 'USD', '0.00', '2');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1485', '2592', '50', '180', 'LECIVIT POWDER(LECITINA DE SOYA EN POLVO)', '1.00', '24.31', '20.61', '0.00', '0.00', NULL, '20.61', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.71', '3.71', '0.00', '0.00', '18', '0.00', '0', '24.31', '24.31', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1486', '2593', '10', '285', 'TAPA PLÁSTICA CSD6 BLANCA HOLITA', '1.00', '0.04', '0.03', '0.00', '0.00', NULL, '0.03', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.01', '0.01', '0.00', '0.00', '18', '0.00', '0', '0.04', '0.04', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1487', '2593', '204', '84615', 'hvbuh', '10.00', '20.00', '16.95', '0.00', '0.00', NULL, '169.49', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.05', '30.51', '0.00', '0.00', '18', '0.00', '0', '200.00', '20.00', 'PEN', '15.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1488', '2594', '10', '285', 'TAPA PLÁSTICA CSD6 BLANCA HOLITA', '1.00', '0.04', '0.03', '0.00', '0.00', NULL, '0.03', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.01', '0.01', '0.00', '0.00', '18', '0.00', '0', '0.04', '0.04', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1489', '2594', '204', '84615', 'hvbuh', '10.00', '20.00', '16.95', '0.00', '0.00', NULL, '169.49', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.05', '30.51', '0.00', '0.00', '18', '0.00', '0', '200.00', '20.00', 'PEN', '15.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1490', '2596', '29', '250', 'ETIQUETAS HOLO REDONDAS DE 5*6 CM COLOR AZUL', '10.00', '16.23', '13.75', '0.00', '0.00', NULL, '137.54', '0.00', '0.00', NULL, '0', '0.00', '0.00', '2.48', '24.76', '0.00', '0.00', '18', '0.00', '0', '162.30', '4.24', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1491', '2597', '50', '180', 'LECIVIT POWDER(LECITINA DE SOYA EN POLVO)', '1.00', '24.34', '20.63', '0.00', '0.00', NULL, '20.63', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.71', '3.71', '0.00', '0.00', '18', '0.00', '0', '24.34', '24.34', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1492', '2598', '10', '285', 'TAPA PLÁSTICA CSD6 BLANCA HOLITA', '1.00', '0.04', '0.03', '0.00', '0.00', NULL, '0.03', '0.00', '0.00', NULL, '0', '0.00', '0.00', '0.01', '0.01', '0.00', '0.00', '18', '0.00', '0', '0.04', '0.04', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1493', '2598', '204', '84615', 'hvbuh', '10.00', '20.00', '16.95', '0.00', '0.00', NULL, '169.49', '0.00', '0.00', NULL, '0', '0.00', '0.00', '3.05', '30.51', '0.00', '0.00', '18', '0.00', '0', '200.00', '20.00', 'PEN', '15.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1494', '2603', '11', '287', 'TAPA PLÁSTICA NARANJA MAQUILA AGUA D.A.M.', '1.00', '576.00', '488.14', '0.00', '0.00', NULL, '488.14', '0.00', '0.00', NULL, '0', '0.00', '25.12', '87.86', '87.86', '0.00', '0.00', '18', '0.00', '0', '576.00', '0.01', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1495', '2603', '16', '267', 'PREFORMA CRISTAL 14.5GR PET MAQUILA D.A.M', '1.00', '67.00', '56.78', '0.00', '0.00', NULL, '56.78', '0.00', '0.00', NULL, '0', '0.00', '2.92', '10.22', '10.22', '0.00', '0.00', '18', '0.00', '0', '67.00', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1496', '2603', '112', '197', 'PAPA SECA', '1.00', '45.00', '38.14', '0.00', '0.00', NULL, '38.14', '0.00', '0.00', NULL, '0', '0.00', '1.96', '6.86', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '0.00', 'PEN', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1497', '2604', '196', '1002', 'AJAE X 15 UND', '1.00', '8.00', '6.78', '0.00', '0.00', NULL, '6.78', '0.00', '0.00', NULL, '0', '0.00', '4.00', '1.22', '1.22', '0.00', '0.00', '18', '0.00', '0', '8.00', '8.00', 'PEN', '7.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1498', '2604', '195', '12314', 'AJMEU X 15 UND', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', '0.00', NULL, '0', '0.00', '0.50', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1499', '2604', '197', '1114', 'COMPRESOR DORIN S7H 20 HP T/A R404A, R134A, R22 220-380 H2001CC', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', '0.00', NULL, '0', '0.00', '0.50', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1500', '2605', '13', '207', 'PREFORMA CRISTAL 17.7GR PET HOLO', '1.00', '107.89', '91.43', '0.00', '0.00', NULL, '91.43', '0.00', '0.00', NULL, '0', '0.00', '9.82', '16.46', '16.46', '0.00', '0.00', '18', '0.00', '0', '107.89', '107.89', 'USD', '0.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1501', '2605', '198', '1115', 'AJHP X 15 UND', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', '0.00', NULL, '0', '0.00', '0.09', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1502', '2605', '195', '12314', 'AJMEU X 15 UND', '1.00', '1.00', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', '0.00', NULL, '0', '0.00', '0.09', '0.15', '0.15', '0.00', '0.00', '18', '0.00', '0', '1.00', '1.00', 'PEN', '1.00', '0');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1503', '2621', '30', '251', 'ETIQUETA AUTOADHESIVA HOLO KOLA MIX 500ML', '1.00', '15.44', '13.08', '0.00', '0.00', '0.00', '13.08', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '2.36', '2.36', '0.00', '0.00', '18', '0.00', '0', '15.44', '4.24', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1504', '2622', '25', '46', 'BOBINA DE CEREALES BOPP METALIZADA', '1.00', '20.76', '0.00', '0.00', '0.00', '20.76', '0.00', '0.00', '0.00', '20.76', '0', '0.00', '0.00', '0.00', '0.00', '3.74', '3.74', '18', '0.00', '0', '20.76', '5.70', 'USD', '0.00', '3');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1505', '2622', '30', '251', 'ETIQUETA AUTOADHESIVA HOLO KOLA MIX 500ML', '1.00', '15.44', '13.08', '0.00', '0.00', '0.00', '13.08', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '2.36', '2.36', '0.00', '0.00', '18', '0.00', '0', '15.44', '4.24', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1506', '2623', '73', '94', 'DATILES', '1.00', '16.10', '0.00', '0.00', '0.00', '16.10', '0.00', '0.00', '0.00', '16.10', '0', '0.00', '3.13', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0', '16.10', '16.10', 'PEN', '0.00', '10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1507', '2623', '35', '58', 'BOLSA EMPAQUE PARA GALLETA DE AGUA ESPECIAL', '1.00', '45.50', '0.00', '0.00', '0.00', '45.50', '0.00', '0.00', '0.00', '45.50', '0', '0.00', '8.84', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0', '45.50', '0.00', 'PEN', '0.00', '13');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1508', '2623', '30', '251', 'ETIQUETA AUTOADHESIVA HOLO KOLA MIX 500ML', '1.00', '15.44', '13.08', '0.00', '0.00', '0.00', '13.08', '0.00', '0.00', '0.00', '0', '0.00', '3.00', '2.36', '2.36', '0.00', '0.00', '18', '0.00', '0', '15.44', '4.24', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1509', '2624', '82', '19', 'ANTIMOHO PRESERVANTE', '1.00', '17.00', '14.41', '0.00', '0.00', '0.00', '14.41', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '2.59', '2.59', '0.00', '0.00', '18', '0.00', '0', '17.00', '17.00', 'PEN', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1510', '2624', '61', '22', 'AROMAS FRESA FL-14205A', '1.00', '45.00', '38.14', '0.00', '0.00', '0.00', '38.14', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '6.86', '6.86', '0.00', '0.00', '18', '0.00', '0', '45.00', '0.00', 'PEN', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1511', '2624', '35', '58', 'BOLSA EMPAQUE PARA GALLETA DE AGUA ESPECIAL', '1.00', '676.00', '572.88', '0.00', '0.00', '0.00', '572.88', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '103.12', '103.12', '0.00', '0.00', '18', '0.00', '0', '676.00', '0.00', 'PEN', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1512', '2625', '25', '46', 'BOBINA DE CEREALES BOPP METALIZADA', '45.00', '20.76', '17.59', '0.00', '0.00', '0.00', '791.69', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '3.17', '142.51', '0.00', '0.00', '18', '0.00', '0', '934.20', '5.70', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1513', '2626', NULL, '', 'pruebas', '2.00', '42.00', '0.00', '0.00', '0.00', '42.00', '0.00', '0.00', '0.00', '84.00', '0', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0', '84.00', '0.00', '', '0.00', '17');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1514', '2626', '73', '94', 'DATILES', '99.00', '16.10', '0.00', '16.10', '0.00', '0.00', '0.00', '1593.90', '0.00', '0.00', '0', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0', '1593.90', '16.10', 'PEN', '0.00', '11');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1515', '2626', '73', '94', 'DATILES', '20.00', '16.10', '0.00', '0.00', '0.00', '16.10', '0.00', '0.00', '0.00', '322.00', '0', '0.00', '0.00', '0.00', '0.00', '2.90', '57.96', '18', '0.00', '0', '322.00', '16.10', 'PEN', '0.00', '3');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1516', '2626', '82', '19', 'ANTIMOHO PRESERVANTE', '21.00', '17.00', '0.00', '0.00', '0.00', '17.00', '0.00', '0.00', '0.00', '357.00', '0', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0', '357.00', '17.00', 'PEN', '0.00', '10');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1517', '2626', '43', '269', 'ETIQUETA ADHESIVA AGUA MAQUILA D.A.M', '4.00', '45.00', '0.00', '0.00', '45.00', '0.00', '0.00', '0.00', '180.00', '0.00', '0', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0', '180.00', '0.00', 'PEN', '0.00', '9');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1518', '2626', '4', '223', 'TAPA PLÁSTICA CAF CELESTE', '45.00', '0.04', '0.03', '0.00', '0.00', '0.00', '1.53', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.01', '0.27', '0.00', '0.00', '18', '0.00', '0', '1.80', '0.01', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1519', '2627', '38', '73', 'CAJA MASTER QFOODS (DESARMADA)', '134.00', '3453.00', '2926.27', '0.00', '0.00', '0.00', '392120.34', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '526.73', '70581.66', '0.00', '0.00', '18', '0.00', '0', '462702.00', '0.00', 'PEN', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1520', '2627', '30', '251', 'ETIQUETA AUTOADHESIVA HOLO KOLA MIX 500ML', '112.00', '15.44', '13.08', '0.00', '0.00', '0.00', '1465.49', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '2.36', '263.79', '0.00', '0.00', '18', '0.00', '0', '1729.28', '4.24', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1521', '2628', NULL, '', 'Servicio de limpieza', '1.00', '250.50', '212.29', '0.00', '0.00', '0.00', '212.29', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '38.21', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '0.00', '', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1522', '2628', '11', '287', 'TAPA PLÁSTICA NARANJA MAQUILA AGUA D.A.M.', '1.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0', '0.00', '0.00', '0.00', '0.00', '1.80', '1.80', '18', '0.00', '0', '10.00', '0.01', 'USD', '0.00', '2');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1523', '2629', '4', '223', 'TAPA PLÁSTICA CAF CELESTE', '1.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0', '0.00', '0.00', '0.00', '0.00', '1.80', '1.80', '18', '0.00', '0', '10.00', '0.01', 'USD', '0.00', '2');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1524', '2629', '1', '130', 'TAPA PLÁSTICA CELESTE MAQUILA AGUA D.A.M.', '1.00', '250.50', '212.29', '0.00', '0.00', '0.00', '212.29', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '38.21', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '0.01', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1525', '2630', '32', '290', 'ETIQUETA ADHESIVA HOLITA KOLA MIX 500 ML', '1.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0', '0.00', '0.00', '0.00', '0.00', '1.80', '1.80', '18', '0.00', '0', '10.00', '4.24', 'USD', '0.00', '7');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1526', '2630', '4', '223', 'TAPA PLÁSTICA CAF CELESTE', '1.00', '250.50', '212.29', '0.00', '0.00', '0.00', '212.29', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '38.21', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '0.01', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1527', '2631', NULL, '', 'lkdlsjlsjdlskjdlskj', '1.00', '250.50', '212.29', '0.00', '0.00', '0.00', '212.29', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '38.21', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '0.00', '', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1528', '2631', '11', '287', 'TAPA PLÁSTICA NARANJA MAQUILA AGUA D.A.M.', '1.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0', '0.00', '0.00', '0.00', '0.00', '1.80', '1.80', '18', '0.00', '0', '10.00', '0.01', 'USD', '0.00', '2');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1529', '2632', NULL, '', 'Servicio de limpieza', '1.00', '250.50', '212.29', '0.00', '0.00', '0.00', '212.29', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '38.21', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '0.00', '', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1530', '2632', '2', '153', 'TAPA PLÁSTICA ROJA MAQUILA AGUA D.A.M.', '1.00', '10.00', '8.47', '0.00', '0.00', '0.00', '8.47', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '1.53', '1.53', '0.00', '0.00', '18', '0.00', '0', '10.00', '0.01', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1531', '2633', NULL, '', 'Servicio de limpieza', '1.00', '250.50', '212.29', '0.00', '0.00', '0.00', '212.29', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '38.21', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '0.00', '', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1532', '2633', '11', '287', 'TAPA PLÁSTICA NARANJA MAQUILA AGUA D.A.M.', '1.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0', '0.00', '0.00', '0.00', '0.00', '1.80', '1.80', '18', '0.00', '0', '10.00', '0.01', 'USD', '0.00', '3');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1533', '2634', '32', '290', 'ETIQUETA ADHESIVA HOLITA KOLA MIX 500 ML', '1.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0', '0.00', '0.00', '0.00', '0.00', '1.80', '1.80', '18', '0.00', '0', '10.00', '4.24', 'USD', '0.00', '2');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1534', '2634', '82', '19', 'ANTIMOHO PRESERVANTE', '1.00', '250.50', '212.29', '0.00', '0.00', '0.00', '212.29', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '38.21', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '17.00', 'PEN', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1535', '2635', NULL, '', 'ddddddddddd', '1.00', '250.50', '212.29', '0.00', '0.00', '0.00', '212.29', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '38.21', '38.21', '0.00', '0.00', '18', '0.00', '0', '250.50', '0.00', '', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1536', '2635', '11', '287', 'TAPA PLÁSTICA NARANJA MAQUILA AGUA D.A.M.', '1.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0.00', '0.00', '0.00', '10.00', '0', '0.00', '0.00', '0.00', '0.00', '1.80', '1.80', '18', '0.00', '0', '10.00', '0.01', 'USD', '0.00', '2');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1537', '2636', '25', '46', 'BOBINA DE CEREALES BOPP METALIZADA', '1.00', '20.86', '0.00', '0.00', '0.00', '20.76', '0.00', '0.00', '0.00', '20.76', '0', '0.00', '0.00', '0.00', '0.00', '3.74', '3.74', '18', '0.10', '1', '20.86', '5.70', 'USD', '0.00', '3');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1538', '2637', '1', '130', 'TAPA PLÁSTICA CELESTE MAQUILA AGUA D.A.M.', '1.00', '0.14', '0.00', '0.00', '0.00', '0.04', '0.00', '0.00', '0.00', '0.04', '0', '0.00', '0.00', '0.00', '0.00', '0.01', '0.01', '18', '0.10', '1', '0.14', '0.01', 'USD', '0.00', '2');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1539', '2638', '32', '290', 'ETIQUETA ADHESIVA HOLITA KOLA MIX 500 ML', '1.00', '15.73', '13.33', '0.00', '0.00', '0.00', '13.33', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '2.40', '2.40', '0.00', '0.00', '18', '0.00', '0', '15.73', '4.24', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1540', '2639', '14', '209', 'PREFORMA CRISTAL 19.7GR PET HOLO', '1.00', '121.32', '102.81', '0.00', '0.00', '0.00', '102.81', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '18.51', '18.51', '0.00', '0.00', '18', '0.00', '0', '121.32', '32.70', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1541', '2640', '4', '223', 'TAPA PLÁSTICA CAF CELESTE', '1.00', '0.04', '0.03', '0.00', '0.00', '0.00', '0.03', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.01', '0.01', '0.00', '0.00', '18', '0.00', '0', '0.04', '0.01', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1542', '2641', '32', '290', 'ETIQUETA ADHESIVA HOLITA KOLA MIX 500 ML', '1.00', '15.73', '13.33', '0.00', '0.00', '0.00', '13.33', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '2.40', '2.40', '0.00', '0.00', '18', '0.00', '0', '15.73', '4.24', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1543', '2642', '30', '251', 'ETIQUETA AUTOADHESIVA HOLO KOLA MIX 500ML', '1.00', '15.73', '13.33', '0.00', '0.00', '0.00', '13.33', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '2.40', '2.40', '0.00', '0.00', '18', '0.00', '0', '15.73', '4.24', 'USD', '0.00', '1');
INSERT INTO `tec_sale_items` (`id`, `sale_id`, `product_id`, `code`, `name`, `quantity`, `unit_price`, `affect_price`, `non_affected_price`, `exonerated_price`, `gratuito_price`, `price_affected_item`, `price_no_affected_item`, `price_exonerated_item`, `price_gratuito_item`, `discount`, `item_discount`, `prr_discount`, `tax`, `item_tax`, `tax_gratuito`, `item_tax_gratuito`, `igv`, `tax_ICBPER`, `quantity_ICBPER`, `subtotal`, `real_unit_price`, `currency_cost`, `cost`, `tax_method`) VALUES ('1544', '2643', '61', '22', 'AROMAS FRESA FL-14205A', '1.00', '100.00', '84.75', '0.00', '0.00', '0.00', '84.75', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '15.25', '15.25', '0.00', '0.00', '18', '0.00', '0', '100.00', '0.00', 'PEN', '0.00', '1');


#
# TABLE STRUCTURE FOR: tec_sale_quotas
#

DROP TABLE IF EXISTS `tec_sale_quotas`;

CREATE TABLE `tec_sale_quotas` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ruc` varchar(15) DEFAULT NULL,
  `sale_id` int(11) DEFAULT NULL,
  `quota` int(11) unsigned DEFAULT NULL,
  `sunat_code` varchar(10) DEFAULT NULL,
  `amount` decimal(20,3) DEFAULT NULL,
  `amount_paid` decimal(20,3) DEFAULT NULL,
  `status_quota` int(11) DEFAULT NULL,
  `payment_date` date DEFAULT NULL,
  `currency` varchar(10) DEFAULT NULL,
  `description` varchar(150) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1;

INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('1', '10123456781', '2625', '1', 'Cuota001', '300.000', NULL, '1', '2023-06-29', 'PEN', NULL, '1', '2023-06-28 11:06:55', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('2', '10123456781', '2625', '2', 'Cuota002', '300.000', NULL, '1', '2023-07-01', 'PEN', NULL, '1', '2023-06-28 11:06:55', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('3', '10123456781', '2625', '3', 'Cuota003', '334.200', NULL, '1', '2023-07-06', 'PEN', NULL, '1', '2023-06-28 11:06:55', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('4', '10123456781', '2626', '1', 'Cuota001', '500.000', NULL, '1', '2023-06-29', 'PEN', NULL, '1', '2023-06-28 11:06:12', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('5', '10123456781', '2626', '2', 'Cuota002', '500.000', NULL, '1', '2023-06-30', 'PEN', NULL, '1', '2023-06-28 11:06:12', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('6', '10123456781', '2626', '3', 'Cuota003', '500.000', NULL, '1', '2023-07-01', 'PEN', NULL, '1', '2023-06-28 11:06:12', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('7', '10123456781', '2626', '4', 'Cuota004', '275.700', NULL, '1', '2023-07-02', 'PEN', NULL, '1', '2023-06-28 11:06:12', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('8', '10123456781', '2627', '1', 'Cuota001', '464431.280', '464431.280', '2', '2023-06-28', 'PEN', NULL, '1', '2023-06-28 11:06:24', '1', '2023-06-28 23:41:24', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('9', '10123456781', '2628', '1', 'Cuota001', '200.000', NULL, '1', '2023-07-01', 'PEN', NULL, '1', '2023-06-30 03:06:12', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('10', '10123456781', '2628', '2', 'Cuota002', '50.600', NULL, '1', '2023-07-08', 'PEN', NULL, '1', '2023-06-30 03:06:12', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('11', '10123456781', '2629', '1', 'Cuota001', '200.000', NULL, '1', '2023-07-01', 'PEN', NULL, '1', '2023-06-30 04:06:05', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('12', '10123456781', '2629', '2', 'Cuota002', '50.500', NULL, '1', '2023-07-02', 'PEN', NULL, '1', '2023-06-30 04:06:05', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('13', '10123456781', '2630', '1', 'Cuota001', '200.000', NULL, '1', '2023-07-01', 'PEN', NULL, '1', '2023-06-30 04:06:34', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('14', '10123456781', '2630', '2', 'Cuota002', '50.500', NULL, '1', '2023-07-02', 'PEN', NULL, '1', '2023-06-30 04:06:34', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('15', '10123456781', '2631', '1', 'Cuota001', '200.000', NULL, '1', '2023-07-08', 'PEN', NULL, '1', '2023-07-04 02:07:24', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('16', '10123456781', '2631', '2', 'Cuota002', '50.500', NULL, '1', '2023-07-15', 'PEN', NULL, '1', '2023-07-04 02:07:24', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('17', '10123456781', '2632', '1', 'Cuota001', '250.000', NULL, '1', '2023-07-08', 'PEN', NULL, '1', '2023-07-04 02:07:26', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('18', '10123456781', '2632', '2', 'Cuota002', '10.500', NULL, '1', '2023-07-15', 'PEN', NULL, '1', '2023-07-04 02:07:26', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('19', '10123456781', '2633', '1', 'Cuota001', '200.000', NULL, '1', '2023-07-08', 'PEN', NULL, '1', '2023-07-04 02:07:33', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('20', '10123456781', '2633', '2', 'Cuota002', '50.500', NULL, '1', '2023-07-15', 'PEN', NULL, '1', '2023-07-04 02:07:33', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('21', '10123456781', '2634', '1', 'Cuota001', '200.000', NULL, '1', '2023-07-08', 'PEN', NULL, '1', '2023-07-04 02:07:04', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('22', '10123456781', '2634', '2', 'Cuota002', '50.600', NULL, '1', '2023-07-15', 'PEN', NULL, '1', '2023-07-04 02:07:04', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('23', '10123456781', '2635', '1', 'Cuota001', '200.000', NULL, '1', '2023-07-08', 'PEN', NULL, '1', '2023-07-04 02:07:09', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('24', '10123456781', '2635', '2', 'Cuota002', '50.600', NULL, '1', '2023-07-15', 'PEN', NULL, '1', '2023-07-04 02:07:09', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('25', '10123456781', '2636', '1', 'Cuota001', '0.100', NULL, '1', '2023-07-07', 'PEN', NULL, '1', '2023-07-07 02:07:14', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('26', '10123456781', '2637', '1', 'Cuota001', '0.100', NULL, '1', '2023-07-07', 'PEN', NULL, '1', '2023-07-07 02:07:33', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('27', '10123456781', '2638', '1', 'Cuota001', '22.000', '22.000', '2', '2023-07-10', 'PEN', NULL, '1', '2023-07-11 04:07:19', '1', '2023-07-11 04:39:20', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('28', '10123456781', '2639', '1', 'Cuota001', '22.000', NULL, '1', '2023-07-29', 'PEN', NULL, '1', '2023-07-11 04:07:03', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('29', '10123456781', '2640', '1', 'Cuota001', '0.040', '0.040', '2', '2023-08-09', 'PEN', NULL, '1', '2023-08-09 07:08:39', '1', '2023-08-09 07:04:39', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('30', '10123456781', '2641', '1', 'Cuota001', '15.730', '15.730', '2', '2023-08-09', 'PEN', NULL, '1', '2023-08-09 07:08:12', '1', '2023-08-09 07:05:12', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('31', '10123456781', '2642', '1', 'Cuota001', '7.000', NULL, '1', '2023-08-12', 'PEN', NULL, '1', '2023-08-09 07:08:45', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('32', '10123456781', '2642', '2', 'Cuota002', '8.730', NULL, '1', '2023-08-26', 'PEN', NULL, '1', '2023-08-09 07:08:45', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('33', '10123456781', '2643', '1', 'Cuota001', '50.000', NULL, '1', '2023-08-12', 'PEN', NULL, '1', '2023-08-09 07:08:49', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('34', '10123456781', '2643', '2', 'Cuota002', '50.000', NULL, '1', '2023-09-09', 'PEN', NULL, '1', '2023-08-09 07:08:49', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('35', '10123456781', '3440', '1', 'Cuota001', '7.000', '7.000', '2', '2023-08-24', 'PEN', NULL, '1', '2023-08-25 03:08:04', '1', '2023-08-25 03:33:04', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('36', '10123456781', '3441', '1', 'Cuota001', '42.000', '42.000', '2', '2023-08-24', 'PEN', NULL, '1', '2023-08-25 04:08:57', '1', '2023-08-25 04:12:57', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('37', '10123456781', '3442', '1', 'Cuota001', '1026.000', NULL, '1', '2023-09-02', 'PEN', NULL, '1', '2023-08-30 01:08:35', NULL, NULL, '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('38', '10123456781', '3443', '1', 'Cuota001', '85.580', '85.580', '2', '2023-08-31', 'PEN', NULL, '1', '2023-08-31 06:08:09', '1', '2023-08-31 18:10:10', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('39', '10123456781', '3444', '1', 'Cuota001', '85.580', '85.580', '2', '2023-08-31', 'PEN', NULL, '1', '2023-08-31 06:08:13', '1', '2023-08-31 18:15:14', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('40', '10123456781', '3445', '1', 'Cuota001', '85.580', '85.580', '2', '2023-08-31', 'PEN', NULL, '1', '2023-08-31 06:08:45', '1', '2023-08-31 18:26:45', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('41', '10123456781', '3446', '1', 'Cuota001', '672.120', '672.120', '2', '2023-09-18', 'PEN', NULL, '1', '2023-09-18 03:09:13', '1', '2023-09-18 15:22:14', '1');
INSERT INTO `tec_sale_quotas` (`id`, `ruc`, `sale_id`, `quota`, `sunat_code`, `amount`, `amount_paid`, `status_quota`, `payment_date`, `currency`, `description`, `created_by`, `created_at`, `updated_by`, `updated_at`, `status`) VALUES ('42', '10123456781', '3449', '1', 'Cuota001', '50.000', '50.000', '2', '2023-10-23', 'PEN', NULL, '1', '2023-10-24 04:10:14', '1', '2023-10-24 04:31:17', '1');


#
# TABLE STRUCTURE FOR: tec_sales
#

DROP TABLE IF EXISTS `tec_sales`;

CREATE TABLE `tec_sales` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `local_id` int(11) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer_name` varchar(55) NOT NULL,
  `document_type` int(11) DEFAULT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `exchange` decimal(25,3) DEFAULT NULL,
  `affected` decimal(25,2) NOT NULL,
  `non_affected` decimal(25,2) NOT NULL,
  `exonerated` decimal(25,2) NOT NULL,
  `gratuito` decimal(25,2) DEFAULT NULL,
  `total` decimal(25,2) NOT NULL,
  `product_discount` decimal(25,2) DEFAULT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `order_discount` decimal(25,2) DEFAULT NULL,
  `total_discount` decimal(25,2) DEFAULT NULL,
  `product_tax` decimal(25,2) DEFAULT NULL,
  `order_tax_id` varchar(20) DEFAULT NULL,
  `order_tax` decimal(25,2) DEFAULT NULL,
  `total_tax` decimal(25,2) DEFAULT NULL,
  `tax_ICBPER` decimal(25,2) NOT NULL,
  `mult_ICBPER` decimal(25,2) NOT NULL,
  `subtotal` decimal(25,2) NOT NULL,
  `amount` decimal(25,2) NOT NULL,
  `grand_total` decimal(25,2) NOT NULL,
  `total_items` int(11) DEFAULT NULL,
  `total_quantity` decimal(15,2) DEFAULT NULL,
  `paid` decimal(25,2) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `status` varchar(20) DEFAULT NULL,
  `rounding` decimal(8,2) DEFAULT NULL,
  `attachment` varchar(255) DEFAULT NULL,
  `expiration_date` date DEFAULT NULL,
  `canal_id` int(11) DEFAULT NULL,
  `custom_field_1` varchar(250) DEFAULT NULL,
  `custom_field_2` varchar(250) DEFAULT NULL,
  `custom_field_3` varchar(250) DEFAULT NULL,
  `invoice_id` varchar(12) DEFAULT NULL,
  `flg_response` int(1) DEFAULT NULL,
  `error_code` varchar(30) DEFAULT NULL,
  `response_descrip` varchar(2000) DEFAULT NULL,
  `digest_value` varchar(250) DEFAULT NULL,
  `estado_sunat` int(11) DEFAULT NULL,
  `estado` int(1) DEFAULT NULL,
  `payment_method_id` int(11) DEFAULT NULL,
  `payment_method_code_sunat` varchar(45) DEFAULT NULL,
  `trader_id` int(11) DEFAULT NULL,
  `retainer_percentage` decimal(4,2) NOT NULL,
  `retainer_total` decimal(25,2) NOT NULL,
  `tax_gratuito` decimal(25,2) DEFAULT '0.00',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2644 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;

INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2541', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2542', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2543', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2544', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2545', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2546', '2022-12-16 11:17:03', '1', '1', '10', 'LIVIOS REPRESENTACIONES S.R.L.', '2', 'PEN', '3.849', '106.66', '0.00', '0.00', NULL, '106.66', '0.00', '0.00', '0.00', '0.00', '19.20', '0', '0.00', '19.20', '0.00', '0.00', '125.86', '125.86', '125.86', '1', '1.00', '125.86', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000195', '1', '0', 'La Factura numero F002-0000195, ha sido aceptada', 'xszezzzZ9xx0yzhsnMczl7jWoy8=', NULL, '1', '1', 'Contado', '45', '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2547', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2548', '2022-12-16 12:45:05', '1', '1', '1', 'CLIENTES VARIOS', '1', 'PEN', '3.849', '18.59', '0.00', '0.00', NULL, '18.59', '0.00', '0.00', '0.00', '0.00', '3.35', '0', '0.00', '3.35', '0.00', '0.00', '21.94', '21.94', '21.94', '1', '1.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'B002-0000215', '1', '0', 'se genero correctamente el XML de la boleta B002-0000215', 'DBSJVn7jC0rjvs/E61Ur3VczG2E=', NULL, '1', '0', '', '49', '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2549', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2550', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2551', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2552', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2553', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2554', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2555', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2556', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2557', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2558', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2559', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2560', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2561', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2562', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2563', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2564', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2565', '2022-12-29 02:21:53', '1', '1', '21', 'CHIPA MALPARTIDA YARINE STEPHANY', '2', 'PEN', '3.817', '188.98', '0.00', '0.00', NULL, '188.98', '0.00', '0.00', '0.00', '0.00', '34.02', '0', '0.00', '34.02', '0.00', '0.00', '223.00', '223.00', '223.00', '1', '1.00', '223.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000196', '1', '0', 'La Factura numero F002-0000196, ha sido aceptada', 'LIak1e0CDQ5hO415Zeihwqx2Vj0=', NULL, '1', '1', 'Contado', NULL, '4.00', '8.58', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2566', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2567', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2568', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2569', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2570', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2571', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2572', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2573', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2574', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2575', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2576', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2577', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2578', '2022-12-29 22:35:49', '1', '1', '148', '6G E.I.R.L.', '2', 'PEN', '3.817', '63.56', '0.00', '0.00', NULL, '63.56', '0.00', '0.00', '0.00', '0.00', '11.44', '0', '0.00', '11.44', '0.00', '0.00', '75.00', '75.00', '75.00', '2', '2.00', '75.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000197', '1', '0', 'La Factura numero F002-0000197, ha sido aceptada', '25bTpvIM+q6/o6r4B/QXuwQatTw=', NULL, '1', '1', 'Contado', '44', '12.00', '8.04', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2579', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2580', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2581', '2022-12-29 22:55:16', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.817', '84.75', '0.00', '0.00', NULL, '84.75', '0.00', '0.00', '0.00', '0.00', '15.25', '0', '0.00', '15.25', '0.00', '0.00', '100.00', '100.00', '100.00', '1', '1.00', '150.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000198', '1', '0', 'La Factura numero F002-0000198, ha sido aceptada', 'gGTtvB/CJXtqUmKuirujf3FYYI4=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2582', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2583', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2584', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2585', '2023-01-04 22:16:54', '1', '1', '148', '6G E.I.R.L.', '2', 'PEN', '3.823', '63.56', '0.00', '0.00', NULL, '63.56', '0.00', '0.00', '0.00', '0.00', '11.44', '0', '0.00', '11.44', '0.00', '0.00', '75.00', '75.00', '75.00', '1', '1.00', '75.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000199', '1', '0', 'La Factura numero F002-0000199, ha sido aceptada', 'lQjXY3/fcAAfeRB07p3vdMOokS8=', NULL, '1', '1', 'Contado', NULL, '12.00', '9.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2586', '2023-01-04 23:58:51', '1', '1', '21', 'CHIPA MALPARTIDA YARINE STEPHANY', '2', 'PEN', '3.823', '6.78', '0.00', '0.00', NULL, '6.78', '0.00', NULL, '0.00', '0.00', '1.22', NULL, '0.00', '1.22', '0.00', '0.10', '8.00', '8.00', '8.00', '1', '1.00', '8.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '1', '', '', NULL, 'F002-0000200', '1', '0', 'La Factura numero F002-0000200, ha sido aceptada', 'b9ankdBmrLk0tsInXbtH+IPa/gg=', NULL, '1', '1', 'Contado', NULL, '4.00', '0.32', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2587', '2023-01-05 00:00:00', '1', '1', '21', 'CHIPA MALPARTIDA YARINE STEPHANY', '1', 'PEN', '3.823', '6.78', '0.00', '0.00', NULL, '6.78', '0.00', NULL, '0.00', '0.00', '1.22', NULL, '0.00', '1.22', '0.00', '0.10', '8.00', '8.00', '8.00', '1', '1.00', '8.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '1', '', '', NULL, 'B002-0000216', '1', '0', 'se genero correctamente el XML de la boleta B002-0000216', '3xPwSiKcnQ4F2Q3QrWxzww2n9Qo=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2588', '2023-01-05 00:00:36', '1', '1', '20', 'VILLEGAS TRELLES SOFIA ROXANA', '2', 'PEN', '3.823', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', NULL, '0.00', '0.00', '0.15', NULL, '0.00', '0.15', '0.00', '0.10', '1.00', '1.00', '1.00', '1', '1.00', '1.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '1', '', '', NULL, 'F002-0000201', '1', '0', 'La Factura numero F002-0000201, ha sido aceptada', 'VhwQIsD65cxr2EXP/GgypbexEWM=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2589', '2023-01-05 00:01:36', '1', '1', '20', 'VILLEGAS TRELLES SOFIA ROXANA', '2', 'PEN', '3.823', '0.85', '0.00', '0.00', NULL, '0.85', '0.00', NULL, '0.00', '0.00', '0.15', NULL, '0.00', '0.15', '0.00', '0.10', '1.00', '1.00', '1.00', '1', '1.00', '1.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '1', '', '', NULL, 'F002-0000202', '1', '0', 'La Factura numero F002-0000202, ha sido aceptada', 'uopzHv+oFI+RpsSh1cf62qSv3Lg=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2590', '2023-01-05 00:02:30', '1', '1', '18', 'SUPERMERCADO CANDY S.A.C.', '2', 'PEN', '3.823', '106.79', '0.00', '0.00', NULL, '106.79', '0.00', NULL, '0.00', '0.00', '19.22', NULL, '0.00', '19.22', '0.00', '0.10', '126.01', '126.01', '126.00', '2', '2.00', '126.00', '1', NULL, NULL, '', 'Pagado', '-0.01', NULL, NULL, '1', '', '', NULL, 'F002-0000203', '1', '0', 'La Factura numero F002-0000203, ha sido aceptada', 'JL5AWu8SGJHPnx4/Di1SAxPQfKg=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2591', '2023-01-05 00:03:00', '1', '1', '18', 'SUPERMERCADO CANDY S.A.C.', '3', 'PEN', '3.823', '0.00', '126.01', '0.00', NULL, '126.01', '0.00', NULL, '0.00', '0.00', '0.00', NULL, '0.00', '0.00', '0.00', '0.10', '126.01', '126.01', '126.00', '2', '2.00', '126.00', '1', NULL, NULL, '', 'Pagado', '-0.01', NULL, NULL, '1', '', '', NULL, 'NV001-0001', NULL, NULL, NULL, NULL, NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2592', '2023-01-05 00:03:34', '1', '1', '18', 'SUPERMERCADO CANDY S.A.C.', '2', 'PEN', '3.823', '20.61', '0.00', '0.00', NULL, '20.61', '0.00', NULL, '0.00', '0.00', '3.71', NULL, '0.00', '3.71', '0.00', '0.10', '24.32', '24.32', '24.30', '1', '1.00', '24.30', '1', NULL, NULL, '', 'Pagado', '-0.02', NULL, NULL, '1', '', '', NULL, 'F002-0000204', '1', '0', 'La Factura numero F002-0000204, ha sido aceptada', 'pXrLmKY/xFF2D6X0IhUrA8ev64Q=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2593', '2023-01-05 11:40:54', '1', '1', '148', '6G E.I.R.L.', '2', 'PEN', '3.827', '169.52', '0.00', '0.00', NULL, '169.52', '0.00', NULL, '0.00', '0.00', '30.51', NULL, '0.00', '30.51', '0.00', '0.10', '200.03', '200.03', '200.00', '2', '11.00', '200.00', '1', NULL, NULL, '', 'Pagado', '-0.03', NULL, NULL, '1', '', '', NULL, 'F002-0000205', '1', '0', 'La Factura numero F002-0000205, ha sido aceptada', 'dSukD4JZzuPssmvAcoNpxvFY+ro=', NULL, '1', '1', 'Contado', NULL, '12.00', '24.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2594', '2023-01-05 19:07:21', '1', '1', '148', '6G E.I.R.L.', '2', 'PEN', '3.827', '169.52', '0.00', '0.00', NULL, '169.52', '0.00', NULL, '0.00', '0.00', '30.51', NULL, '0.00', '30.51', '0.00', '0.10', '200.03', '200.03', '200.00', '2', '11.00', '200.00', '1', NULL, NULL, '', 'Pagado', '-0.03', NULL, NULL, '1', '', '', NULL, 'F002-0000206', '1', '0', 'La Factura numero F002-0000206, ha sido aceptada', 'XAyWvI69SHjCCNphJEDuG5qp9dw=', NULL, '1', '1', 'Contado', NULL, '12.00', '24.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2595', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2596', '2023-01-05 19:08:24', '1', '1', '148', '6G E.I.R.L.', '2', 'PEN', '3.827', '137.54', '0.00', '0.00', NULL, '137.54', '0.00', '0.00', '0.00', '0.00', '24.76', '0', '0.00', '24.76', '0.00', '0.00', '162.30', '162.30', '162.30', '1', '10.00', '162.30', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000207', '1', '0', 'La Factura numero F002-0000207, ha sido aceptada', 'B73xlPE7Ogu4TGUC5Dv/h9LvHcU=', NULL, '1', '1', 'Contado', NULL, '12.00', '19.48', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2597', '2023-01-05 20:58:09', '1', '1', '21', 'CHIPA MALPARTIDA YARINE STEPHANY', '2', 'PEN', '3.827', '20.63', '0.00', '0.00', NULL, '20.63', '0.00', NULL, '0.00', '0.00', '3.71', NULL, '0.00', '3.71', '0.00', '0.10', '24.34', '24.34', '24.30', '1', '1.00', '24.30', '1', NULL, NULL, '', 'Pagado', '-0.04', NULL, NULL, '1', '', '', NULL, 'F002-0000208', '1', '0', 'La Factura numero F002-0000208, ha sido aceptada', 'RWa0YHRzSSPkcwx3/J3gWN4UdGo=', NULL, '1', '1', 'Contado', NULL, '4.00', '0.97', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2598', '2023-01-05 21:07:34', '1', '1', '148', '6G E.I.R.L.', '2', 'PEN', '3.827', '169.52', '0.00', '0.00', NULL, '169.52', '0.00', NULL, '0.00', '0.00', '30.51', NULL, '0.00', '30.51', '0.00', '0.10', '200.03', '200.03', '200.00', '2', '11.00', '200.00', '1', NULL, NULL, '', 'Pagado', '-0.03', NULL, NULL, '1', '', '', NULL, 'F002-0000209', '1', '0', 'La Factura numero F002-0000209, ha sido aceptada', '3/rSukfZfrQufMUvh5WsCbFSbYM=', NULL, '1', '1', 'Contado', NULL, '12.00', '24.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2599', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2600', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2601', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2602', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2603', '2023-01-27 14:40:52', '1', '1', '275', 'PONTE TRUJILLO ALEXANDER KENY', '2', 'PEN', '3.867', '553.05', '0.00', '0.00', NULL, '553.05', '0.00', '30.00', '30.00', '30.00', '99.55', '0', '0.00', '99.55', '0.00', '0.00', '688.00', '652.60', '652.60', '3', '3.00', '652.60', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000210', '1', '0', 'La Factura numero F002-0000210, ha sido aceptada', 'Mu6i+qEwPc3iBg+LIMPcpnhDY5A=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2604', '2023-01-27 14:41:27', '1', '1', '275', 'PONTE TRUJILLO ALEXANDER KENY', '1', 'PEN', '3.867', '3.47', '0.00', '0.00', NULL, '3.47', '0.00', '5', '5.00', '5.00', '0.63', NULL, '0.00', '1.53', '0.00', '0.10', '10.00', '4.10', '5.00', '3', '3.00', '5.00', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '1', '', '', NULL, 'B002-0000217', '1', '0', 'se genero correctamente el XML de la boleta B002-0000217', 'iG8V8n9pNK6FjWzeOTeNro89UEA=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2605', '2023-01-27 14:42:38', '1', '1', '275', 'PONTE TRUJILLO ALEXANDER KENY', '2', 'PEN', '3.867', '83.13', '0.00', '0.00', NULL, '83.13', '0.00', '10', '10.00', '10.00', '14.96', NULL, '0.00', '16.76', '0.00', '0.10', '109.89', '98.09', '99.80', '3', '3.00', '99.80', '1', NULL, NULL, '', 'Pagado', '-0.09', NULL, NULL, '1', '', '', NULL, 'F002-0000211', '1', '0', 'La Factura numero F002-0000211, ha sido aceptada', 'qqKiTl86tx87vBnv8PDE1kh1gzE=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2606', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2607', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2608', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2609', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2610', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2611', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2612', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2613', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2614', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2615', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2616', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2617', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2618', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2619', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2620', '0000-00-00 00:00:00', '0', '1', '0', '', NULL, NULL, NULL, '0.00', '0.00', '0.00', NULL, '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00', '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2621', '2023-06-28 17:51:14', '1', '1', '4', 'TUEROS AYQUIPA JUANA NATIVIDAD', '2', 'PEN', '3.642', '13.08', '0.00', '0.00', '0.00', '13.08', '0.00', '0.00', '0.00', '0.00', '2.36', '0', '0.00', '2.36', '0.00', '0.00', '15.44', '15.44', '15.44', '1', '1.00', '15.44', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000212', '1', '0', 'La Factura numero F002-0000212, ha sido aceptada', 'vIFVSZqp9CBKW1V3d9cV5eiEWq8=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2622', '2023-06-28 17:56:49', '1', '1', '4', 'TUEROS AYQUIPA JUANA NATIVIDAD', '2', 'PEN', '3.642', '13.08', '0.00', '0.00', '20.76', '13.08', '0.00', '0.00', '0.00', '0.00', '2.36', '0', '0.00', '2.36', '0.00', '0.00', '15.44', '15.44', '15.44', '2', '2.00', '15.44', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000213', '1', '0', 'La Factura numero F002-0000213, ha sido aceptada', 'TxTAMcZmSUA6iH51pNyg73zdwhg=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '3.74');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2623', '2023-06-28 17:58:35', '1', '1', '4', 'TUEROS AYQUIPA JUANA NATIVIDAD', '2', 'PEN', '3.642', '10.08', '0.00', '0.00', '61.60', '10.08', '0.00', '3.00', '3.00', '3.00', '1.82', '0', '0.00', '1.82', '0.00', '0.00', '15.44', '11.90', '11.90', '3', '3.00', '11.90', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000214', '1', '0', 'La Factura numero F002-0000214, ha sido aceptada', 'rUc9CWfA034nCBjOxozJj5cKOqM=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2624', '2023-06-28 18:02:40', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '625.42', '0.00', '0.00', '0.00', '625.42', '0.00', '0.00', '0.00', '0.00', '112.58', '0', '0.00', '112.58', '0.00', '0.00', '738.00', '738.00', '738.00', '3', '3.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000215', '0', 'soap-env:Client.3249', 'Si el tipo de transaccion es al Credito debe existir al menos información de una cuota de pago - Detalle: xxx.xxx.xxx value=\'ticket: 1687993119148 error: INFO : 3249 (nodo: \"/\" valor: \"\")\'', '', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2625', '2023-06-28 18:11:55', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '791.69', '0.00', '0.00', '0.00', '791.69', '0.00', '0.00', '0.00', '0.00', '142.51', '0', '0.00', '142.51', '0.00', '0.00', '934.20', '934.20', '934.20', '1', '45.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000216', '1', '0', 'La Factura numero F002-0000216, ha sido aceptada', 'ptTOd5g9JNY5SR+OAsJ/FY1n34c=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2626', '2023-06-28 18:28:12', '1', '1', '7', 'OJEDA MARKET INVERSIONES E.I.R.L.', '2', 'PEN', '3.642', '1.53', '1593.90', '180.00', '763.00', '1775.43', '0.00', '0.00', '0.00', '0.00', '0.27', '0', '0.00', '0.27', '0.00', '0.00', '1775.70', '1775.70', '1775.70', '6', '191.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000217', '1', '0', 'La Factura numero F002-0000217, ha sido aceptada', 'ipwOEvcQ3xS2CNt/2Lt4VjSQeLY=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '57.96');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2627', '2023-06-28 18:41:23', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '393585.83', '0.00', '0.00', '0.00', '393585.83', '0.00', '0.00', '0.00', '0.00', '70845.45', '0', '0.00', '70845.45', '0.00', '0.00', '464431.28', '464431.28', '464431.28', '2', '246.00', '464431.28', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000218', '1', '0', 'La Factura numero F002-0000218, ha sido aceptada', 'G8lYlvp3AbLAp61bGgWI3w8kYqA=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2628', '2023-06-29 22:08:12', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '212.29', '0.00', '0.00', '10.00', '212.29', '0.00', '0.00', '0.00', '0.00', '38.21', '0', '0.00', '38.21', '0.00', '0.00', '250.50', '250.50', '250.50', '2', '2.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000219', '0', 'soap-env:Client.3319', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688094248260 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'', '', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '1.80');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2629', '2023-06-30 11:03:05', '1', '1', '7', 'OJEDA MARKET INVERSIONES E.I.R.L.', '2', 'PEN', '3.642', '212.29', '0.00', '0.00', '10.00', '212.29', '0.00', '0.00', '0.00', '0.00', '38.21', '0', '0.00', '38.21', '0.00', '0.00', '250.50', '250.50', '250.50', '2', '2.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000220', '1', '0', 'La Factura numero F002-0000220, ha sido aceptada', 'JhCcz8I50Htgx/p2xkkbT9hmXkE=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '1.80');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2630', '2023-06-30 11:14:34', '1', '1', '7', 'OJEDA MARKET INVERSIONES E.I.R.L.', '2', 'PEN', '3.642', '212.29', '0.00', '0.00', '10.00', '212.29', '0.00', '0.00', '0.00', '0.00', '38.21', '0', '0.00', '38.21', '0.00', '0.00', '250.50', '250.50', '250.50', '2', '2.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000221', '1', '0', 'La Factura numero F002-0000221, ha sido aceptada', 'SQYSSD/ORZ6sy1AGDxlYBpc2CQY=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '1.80');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2631', '2023-07-03 21:32:24', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '212.29', '0.00', '0.00', '10.00', '212.29', '0.00', '0.00', '0.00', '0.00', '38.21', '0', '0.00', '38.21', '0.00', '0.00', '250.50', '250.50', '250.50', '2', '2.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000222', '1', '0', 'La Factura numero F002-0000222, ha sido aceptada', 'EviAThHWAxHSiWMRAwbbBzlf0ZQ=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '1.80');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2632', '2023-07-03 21:34:26', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '220.76', '0.00', '0.00', '0.00', '220.76', '0.00', '0.00', '0.00', '0.00', '39.74', '0', '0.00', '39.74', '0.00', '0.00', '260.50', '260.50', '260.50', '2', '2.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000223', '1', '0', 'La Factura numero F002-0000223, ha sido aceptada', 'lqnabLfaaS1aLkV6kOhUQD5ujW4=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2633', '2023-07-03 21:37:32', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '212.29', '0.00', '0.00', '10.00', '212.29', '0.00', '0.00', '0.00', '0.00', '38.21', '0', '0.00', '38.21', '0.00', '0.00', '250.50', '250.50', '250.50', '2', '2.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000224', '1', '0', 'La Factura numero F002-0000224, ha sido aceptada', 'vRCrY8sbqIvgJCtCF+Q/HwR9EtQ=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '1.80');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2634', '2023-07-03 21:40:04', '1', '1', '7', 'OJEDA MARKET INVERSIONES E.I.R.L.', '2', 'PEN', '3.642', '212.29', '0.00', '0.00', '10.00', '212.29', '0.00', '0.00', '0.00', '0.00', '38.21', '0', '0.00', '38.21', '0.00', '0.00', '250.50', '250.50', '250.50', '2', '2.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000225', '0', 'soap-env:Client.3319', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688438153041 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'', '', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '1.80');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2635', '2023-07-03 21:40:09', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '212.29', '0.00', '0.00', '10.00', '212.29', '0.00', '0.00', '0.00', '0.00', '38.21', '0', '0.00', '38.21', '0.00', '0.00', '250.50', '250.50', '250.50', '2', '2.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000226', '0', 'soap-env:Client.3319', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688698219873 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.50\")\'', '', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '1.80');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2636', '2023-07-06 21:14:14', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '0.00', '0.00', '0.00', '20.76', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.10', '0.10', '0.10', '0.10', '0.10', '1', '1.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000227', '1', '0', 'La Factura numero F002-0000227, ha sido aceptada', 'pv5H0GPhs+uY+zBWQ2qVlXtnSHA=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '3.74');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2637', '2023-07-06 21:58:32', '1', '1', '6', 'LAZO MARKET S.A.C.', '2', 'PEN', '3.642', '0.00', '0.00', '0.00', '0.04', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0', '0.00', '0.00', '0.10', '0.10', '0.10', '0.10', '0.10', '1', '1.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000228', '1', '0', 'La Factura numero F002-0000228, ha sido aceptada', 'MpPaz2jzk+0zwjrNU47J3f618Ko=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '0.01');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2638', '2023-08-09 01:59:28', '1', '1', '1', 'CLIENTES VARIOS', '1', 'PEN', '3.710', '13.33', '0.00', '0.00', '0.00', '13.33', '0.00', '0.00', '0.00', '0.00', '2.40', '0', '0.00', '2.40', '0.00', '0.00', '15.73', '15.73', '15.73', '1', '1.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'B002-0000218', NULL, NULL, NULL, NULL, NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2639', '2023-08-09 02:02:21', '1', '1', '4', 'TUEROS AYQUIPA JUANA NATIVIDAD', '2', 'PEN', '3.710', '102.81', '0.00', '0.00', '0.00', '102.81', '0.00', '0.00', '0.00', '0.00', '18.51', '0', '0.00', '18.51', '0.00', '0.00', '121.32', '121.32', '121.32', '1', '1.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000229', '1', '0', 'La Factura numero F002-0000229, ha sido aceptada', 'qoImdcrEDIbsRmRnuixF+vVrFNw=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2640', '2023-08-09 02:04:39', '1', '1', '6', 'LAZO MARKET S.A.C.', '1', 'PEN', '3.710', '0.03', '0.00', '0.00', '0.00', '0.03', '0.00', '0.00', '0.00', '0.00', '0.01', '0', '0.00', '0.01', '0.00', '0.00', '0.04', '0.04', '0.04', '1', '1.00', '0.04', '1', '1', '2023-08-09 02:09:33', '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'B002-0000219', '1', '0', 'SYS: La anulación de la boleta B002-0000219, se encuentra pendiente de envio', '5RiD6z2tU4JsNYjw97G7ue1tDKg=', NULL, '0', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2641', '2023-08-09 02:05:12', '1', '1', '4', 'TUEROS AYQUIPA JUANA NATIVIDAD', '1', 'PEN', '3.710', '13.33', '0.00', '0.00', '0.00', '13.33', '0.00', '0.00', '0.00', '0.00', '2.40', '0', '0.00', '2.40', '0.00', '0.00', '15.73', '15.73', '15.73', '1', '1.00', '15.73', '1', NULL, NULL, '', 'Pagado', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'B002-0000220', '1', '0', 'SYS: se genero correctamente el XML de la boleta B002-0000220', 'bnN7FM7Dl28T75bHf5i4Z9MxaeE=', NULL, '1', '1', 'Contado', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2642', '2023-08-09 02:12:45', '1', '1', '1', 'CLIENTES VARIOS', '1', 'PEN', '3.710', '13.33', '0.00', '0.00', '0.00', '13.33', '0.00', '0.00', '0.00', '0.00', '2.40', '0', '0.00', '2.40', '0.00', '0.00', '15.73', '15.73', '15.73', '1', '1.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'B002-0000221', '1', '0', 'SYS: se genero correctamente el XML de la boleta B002-0000221', 'u827nOaU83jr7EY8C9KnQxsfiXc=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '0.00');
INSERT INTO `tec_sales` (`id`, `date`, `local_id`, `warehouse_id`, `customer_id`, `customer_name`, `document_type`, `currency`, `exchange`, `affected`, `non_affected`, `exonerated`, `gratuito`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `tax_ICBPER`, `mult_ICBPER`, `subtotal`, `amount`, `grand_total`, `total_items`, `total_quantity`, `paid`, `created_by`, `updated_by`, `updated_at`, `note`, `status`, `rounding`, `attachment`, `expiration_date`, `canal_id`, `custom_field_1`, `custom_field_2`, `custom_field_3`, `invoice_id`, `flg_response`, `error_code`, `response_descrip`, `digest_value`, `estado_sunat`, `estado`, `payment_method_id`, `payment_method_code_sunat`, `trader_id`, `retainer_percentage`, `retainer_total`, `tax_gratuito`) VALUES ('2643', '2023-08-09 02:13:49', '1', '1', '7', 'OJEDA MARKET INVERSIONES E.I.R.L.', '2', 'PEN', '3.710', '84.75', '0.00', '0.00', '0.00', '84.75', '0.00', '0.00', '0.00', '0.00', '15.25', '0', '0.00', '15.25', '0.00', '0.00', '100.00', '100.00', '100.00', '1', '1.00', '0.00', '1', NULL, NULL, '', 'DEBE', '0.00', NULL, NULL, '2', NULL, NULL, NULL, 'F002-0000230', '1', '0', 'SUNAT: La Factura numero F002-0000230, ha sido aceptada', 'Lasgo/+0kPfIUFeWQhDiOIIegsA=', NULL, '1', '2', 'Credito', NULL, '0.00', '0.00', '0.00');


#
# TABLE STRUCTURE FOR: tec_sales_channels
#

DROP TABLE IF EXISTS `tec_sales_channels`;

CREATE TABLE `tec_sales_channels` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ruc` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL,
  `code` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;

INSERT INTO `tec_sales_channels` (`id`, `ruc`, `code`, `name`, `description`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('7', '12345678912', 'A25416D45', 'TEST2', 'DESCRIPTION DE PRUEBA', '8', NULL, '2023-01-09 16:06:51', '2023-01-09 16:06:51', '1');
INSERT INTO `tec_sales_channels` (`id`, `ruc`, `code`, `name`, `description`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('8', '12345678912', 'A2546D474', 'CANAL 2', '', '8', '1', '2023-01-09 23:27:59', '2023-01-10 02:27:11', '1');
INSERT INTO `tec_sales_channels` (`id`, `ruc`, `code`, `name`, `description`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('9', '12345678912', 'A254166D45', '#$#$###{{{', '', '8', NULL, '2023-01-09 23:28:14', '2023-01-11 01:05:22', '0');
INSERT INTO `tec_sales_channels` (`id`, `ruc`, `code`, `name`, `description`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('10', '12345678912', '2541676D45', '#$#$###{{{', NULL, '8', NULL, '2023-01-09 23:29:11', '2023-01-09 23:29:11', '1');
INSERT INTO `tec_sales_channels` (`id`, `ruc`, `code`, `name`, `description`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('11', '12345678912', 'A2546D475', '#$#$###{{{', '', '0', NULL, '2023-01-09 23:29:45', '2023-01-09 23:29:45', '1');
INSERT INTO `tec_sales_channels` (`id`, `ruc`, `code`, `name`, `description`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('12', '12345678912', 'A2546D474', 'TPV', '', '0', NULL, '2023-01-10 02:23:13', '2023-01-10 02:23:13', '1');


#
# TABLE STRUCTURE FOR: tec_sales_files
#

DROP TABLE IF EXISTS `tec_sales_files`;

CREATE TABLE `tec_sales_files` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_id` int(11) NOT NULL,
  `file_name` varchar(300) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=486 DEFAULT CHARSET=utf8;

INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('1', '1', 'boletas/AGRbqgoLNsJHgaVrFIDl.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('2', '2', 'boletas/xgegxExAoAucTV9XYgVr.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('3', '3', 'facturas/RXJtvV8aDqHu31vdn4RX.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('4', '4', 'boletas/Be32IGYNw8f1bG9Ltc1E.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('5', '5', 'facturas/fCoaKZZZRM0vWZ5ETvxP.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('6', '6', 'facturas/YA6qVZrP7ListG1v03bl.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('7', '7', 'facturas/NBrGCb7VJOJ7MpaYh9CW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('8', '8', 'facturas/fDnlFR7u7eCxZM2Budx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('9', '9', 'boletas/NqFwFSTwE1PxAqAJzYid.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('10', '10', 'boletas/obdtRwPWkH4jWTPT5A7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('11', '11', 'boletas/t1DEBWjD43Avrmt0SLGi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('12', '12', 'boletas/Cgn1g89dSqRLJjAgaiSP.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('13', '13', 'boletas/A5iQYZ5r1Qnemykt27F.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('14', '14', 'boletas/GafWmV7KqHsxgUax8dnc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('15', '15', 'facturas/K2bL19wku6OA9Ow8vcAQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('16', '16', 'facturas/8MPAmlstWM0a5E5oHFw.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('17', '17', 'boletas/PHQAWkvoc0VK2tFjRYa5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('18', '18', 'facturas/j8xJoUU3XT7YQ1rQuEy.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('19', '19', 'facturas/fmySkrCIQDGl17r1S98W.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('20', '20', 'facturas/9YK7Cinde5bGYhtPQn4v.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('21', '21', 'facturas/VNGyTEas2xgy3uOtqS4r.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('22', '22', 'facturas/tYpzhi3jaSQbvI7QWqxj.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('23', '23', 'boletas/JH2D7dfprD0U5ZMwif7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('24', '24', 'facturas/qLhvvqhwOa17r7tI82JE.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('25', '25', 'boletas/BZYAvdwXPASKqN6feONU.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('26', '26', 'boletas/89rFSDANXs4SkoLSYs7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('27', '27', 'boletas/K2VRrHQQqSnnecTUQ5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('28', '28', 'facturas/89KYEvv8vKw4VpNmmArC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('29', '29', 'facturas/iKASlmJg2wrR9hlFGmjg.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('30', '30', 'facturas/022IIvRVLu77FBlsh4Ep.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('31', '31', 'facturas/uc4q3vMREgMdUf3OwYQI.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('32', '32', 'boletas/U0Keeolv0IAqvtfUgWe.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('33', '33', 'boletas/7r7Lcakn4bkslo2ZUdoe.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('34', '34', 'facturas/wPaPDrDBP3a0Dry5nI5m.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('35', '35', 'facturas/HJJ4oxndztxzd5rBCg5U.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('36', '36', 'facturas/7JqZgZ6U0Sy75ssif6f.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('37', '37', 'facturas/4jwC2gbuO45Nuj51GU2p.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('38', '38', 'facturas/julFwOIRTb8TwiIR1MW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('39', '39', 'boletas/M5X3wGTdvAJ6klMJ3G3u.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('40', '40', 'facturas/J2B9DKsm7ino7pBeEk8.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('41', '41', 'facturas/A0wfaiv4S8iI0jSby3u8.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('42', '42', 'facturas/QIKvOka0OMvknwS7NPK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('43', '43', 'boletas/jjGbDU3qP6VFNMQplLDx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('44', '44', 'boletas/FmZcFVZKE6TLzDNMtUSe.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('45', '45', 'boletas/vTMABZVYU4pgmz4qW0wW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('46', '46', 'facturas/mnlooE9sv5fLNTwaMA8x.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('47', '47', 'boletas/6Dd92ol0SHdy8aVpTxV.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('48', '48', 'boletas/t9Lc8HTXY2k85RsrLIj.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('49', '49', 'boletas/C4cZQFEEGalGw2EcsA.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('50', '50', 'facturas/okVrrR6sTpA7BVIPO6RA.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('51', '51', 'facturas/samvhL1120AnlQubc4KE.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('52', '52', 'facturas/ejYu1r2o3xWYGdmWYbE.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('53', '53', 'boletas/78HXV8jE3xELkBTVEXz.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('54', '54', 'boletas/aPOGja9SANJmGkpe.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('55', '55', 'boletas/nQd62K5uQP448VO8mft.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('56', '56', 'boletas/zdfyz82GleViclHuRAnK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('57', '57', 'boletas/TXdkHeFPOn582AjqTj3.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('58', '58', 'boletas/zQXzdjAzyT0b1yVgkdGX.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('59', '59', 'facturas/zxtR1YZBt3JTB6APxh.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('60', '60', 'boletas/ZHKJl3oiDWbg5HWyma94.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('61', '61', 'boletas/x8aGHhLKQtscX5r2ZCuY.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('62', '62', 'boletas/7KWFDZh9MTysPIjhuCB.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('63', '63', 'boletas/D3J3o7UpxKT171QQSlVQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('64', '64', 'facturas/pzxvuengvFjq0kbTBWKx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('65', '65', 'boletas/v3aM7tg2dPlLCxRo51du.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('66', '66', 'boletas/k9BWB8fDtAugrfjUPSr.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('67', '67', 'boletas/fwuPC8rFpXMgJii7WPQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('68', '68', 'boletas/9q2A7QJMbZ2852QPs884.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('69', '69', 'boletas/zwNL90GfaIJbaUPtNh.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('70', '70', 'boletas/nDtTIOYO0j8vLO8c708O.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('71', '71', 'boletas/aYEkLJQIcZKFtlZAHOcC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('72', '72', 'boletas/DzwUo7fbYlY8UXgx1EGV.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('73', '73', 'boletas/E0Q1Ax42HE8Lxmq6w2E7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('74', '74', 'boletas/GR1xP7KssY7jesJJYtko.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('75', '75', 'boletas/5JJjo6oastL4ZzIGBx5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('76', '76', 'boletas/IiUAUalO1dY81fYzxiSu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('77', '77', 'boletas/XEvqDxkhX6urHxhRrgMa.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('78', '78', 'boletas/I46UGjTQQD19zQBgTsM.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('79', '79', 'boletas/I9BP3M5tkblJikN4NgA0.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('80', '80', 'boletas/LGrwafDqD26gNcEQMewu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('81', '81', 'boletas/4J2PUw8ygiLFK1ryPvne.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('82', '82', 'boletas/SedNy33uQS5gsLQzAQes.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('83', '83', 'boletas/N1RUVCeDej2Mop7rnDAT.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('84', '84', 'facturas/3nYl07nqeIcgcVmX6hoK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('85', '85', 'facturas/ZO4GQYdXqOpgH06s9lX5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('86', '86', 'facturas/BYkIUM0X51peSNpuBv5r.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('87', '87', 'facturas/pt3aelW6wrKBGGNzsMUC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('88', '88', 'boletas/rVd0v9akJ2DVxbhOxCQm.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('89', '89', 'facturas/MPPB2OcSGupiSAe5TTYP.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('90', '90', 'facturas/HfSwNS33o1fs7BHcEhwT.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('91', '91', 'facturas/KRWgZabedtK9vaHEH8q.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('92', '92', 'facturas/ugABF8Dr7m9P4Lyq83O.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('93', '93', 'boletas/knqFkwtDG1gr7RCtf3mV.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('94', '94', 'boletas/1SYIZR877YU7Dh0UiE0v.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('95', '95', 'facturas/QewBGq7Px7qesj61gJmb.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('96', '96', 'boletas/Q0GFSsOzdyd60fScO77.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('97', '97', 'facturas/B6tybhjA2v0bANyFd6UC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('98', '98', 'boletas/HaDaSMp2H2NTG4MKGe8x.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('99', '99', 'facturas/vatRO17DrO09bB6LBmah.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('100', '100', 'boletas/tl5RC1tvAHAmhEj2BAv7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('101', '101', 'boletas/MIXSMMsSD1PZi8dHxTtc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('102', '102', 'boletas/BRHB20EooKtvXtWq5UN.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('103', '103', 'boletas/HXED0E33E0fW9S95NDF5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('104', '104', 'boletas/0ZtPBOItCqctQVoRBsW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('105', '105', 'facturas/4CtOoAxIKdGJfUnQZBqk.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('106', '106', 'boletas/gGK65Mcr4mneepsTPsML.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('107', '107', 'boletas/BjbprCDjLyCbhV8BIpu4.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('108', '108', 'boletas/2BRwICJD01wP9cKiPGcq.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('109', '109', 'boletas/uRZWJLiGpj0YWh30t2c.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('110', '110', 'boletas/HnYginFSJX4AByTbaShM.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('111', '111', 'boletas/8Yz3jnHqHZpSHVnJVLY1.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('112', '112', 'facturas/BaTttLuBbcJ9n3TSyZVK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('113', '113', 'boletas/Eha7r4DoLNTIKaXNJH5V.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('114', '114', 'facturas/PMckWbUOLQ4kQWbHtS2Z.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('115', '115', 'boletas/HdraVBvT3pYGNCj6NNUb.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('116', '116', 'boletas/Gc8RnyBeuU1CPNDnoCx1.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('117', '117', 'facturas/jCL9iQFsMoiDPvjlfcwk.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('118', '118', 'facturas/C5EsRd1XjUWJTXeWRYp.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('119', '119', 'facturas/tNiDB9ujeyuOqQnnDpz.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('120', '120', 'facturas/mrNQaQTJmeVSx1OE5F5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('121', '121', 'boletas/RUZtkIX20m53GlQPUGMD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('122', '122', 'facturas/rGMLpcCZStG2rdNj49X.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('123', '123', 'boletas/pG4K31w3xiChCIOh1uth.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('124', '124', 'boletas/Rk4whjM56k9HPGaKC91q.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('125', '125', 'facturas/X1XM1k9xsaBpod7HK87.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('126', '126', 'boletas/W9CjpB2desuKtE1BCHd.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('127', '127', 'facturas/NkBgi2qbiYEMO0GOAdY.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('128', '128', 'boletas/GYfkdYmJINw4R6mSNSjc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('129', '129', 'boletas/oDanKSDM2pi76P4ke.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('130', '130', 'boletas/JoDIzCncwpsMUvpnBy8J.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('131', '131', 'boletas/gzXtbrLjCHRDt92r9FIN.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('132', '132', 'boletas/A1c826djQk274411Wxqo.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('133', '133', 'boletas/jcSWmjvb0cHk1xHa03hh.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('134', '134', 'facturas/JHCEY9CLwxnHY9rqXjYS.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('135', '135', 'facturas/T7iDvpiK6xfG3BY9vSKc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('136', '136', 'boletas/a691VnX2xvvGBpAP5SWr.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('137', '137', 'boletas/Yw6UGtD7XaKK0fJ0FJf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('138', '138', 'boletas/8RO0AvU1Hazmo6GyEDH9.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('139', '139', 'boletas/rYu08hkAxyeeggokb1MH.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('140', '140', 'facturas/tqe3O42Aox0FyipPpyTP.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('141', '141', 'facturas/HCRMIhItP9dqeTf6kp.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('142', '142', 'facturas/cMfQb1q3NR3f7GWYeqo.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('143', '143', 'boletas/0zFWhmdwhySBhXpNY0e.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('144', '144', 'boletas/dlK7D5w2zMCSeFb09Iu0.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('145', '145', 'facturas/NiB60vtCKPAjhiYbE9z.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('146', '146', 'facturas/0vf5lMgkAp396j5TxZo.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('147', '147', 'boletas/IyaINOV1phsLlZYt5M6u.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('148', '148', 'boletas/yyunXiaCda2WIFqqu1d.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('149', '149', 'facturas/loPeKXRcSuQQyPshK9IW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('150', '150', 'boletas/myAjRddMPURdGborkX3.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('151', '151', 'facturas/Tdf2gsELVmBGFKtsO21z.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('152', '152', 'boletas/ticFqzm14mC90A8QVphz.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('153', '153', 'facturas/DsTsVXwd0Il9C8Tvbax1.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('154', '154', 'facturas/Dzkhb1zLLXEQIdlYAlf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('155', '155', 'facturas/a0TSNF4QhhwOhsaJWnTm.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('156', '156', 'boletas/39RElrqQ5ACs4RnS6a6d.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('157', '157', 'facturas/VFHZAC8aCOvYylpdTgI.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('158', '158', 'boletas/l76ny2E5cNY0eNWmRAUs.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('159', '159', 'facturas/ZtFKKQHf8jHWFDFQxLiT.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('160', '160', 'facturas/Blj09OvW3cGUWNeEr0xx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('161', '161', 'facturas/uVZdyIy8wtnw4TgKRhTk.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('162', '162', 'facturas/xerE1g2xQ5VB8O7ebDA.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('163', '163', 'boletas/JAojktlJGzLe1N7ArU9D.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('164', '164', 'facturas/kDfsnEmGCaGkUr9NCx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('165', '165', 'boletas/6Iy19PvTORtHFWO6lAbK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('166', '166', 'facturas/gkufeWgIwqDrMwBXz8BB.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('167', '167', 'boletas/eHAnQBJPD65J6HUP5hjH.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('168', '168', 'facturas/cbKFruED6IOOr1d5xepw.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('169', '169', 'boletas/ou7RjJGjVjYin2CAgn5v.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('170', '170', 'boletas/OooMY4XAaO1AuJVN5Be.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('171', '171', 'facturas/a9XbJBaHBda7q6YikhTk.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('172', '172', 'facturas/nFjlyiHl1ccWA4NskjKe.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('173', '173', 'facturas/pmiZzUHwiu6aKbOMRaHD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('174', '174', 'boletas/mZ2Q2ZESsYyR6b7zIYjx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('175', '175', 'boletas/SxT8IJF7rx15CJCqxkJQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('176', '176', 'facturas/h0F9R5TYhOJIEtIm0S9C.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('177', '177', 'facturas/C4yAi8YHgl7ec6ICof9P.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('178', '178', 'boletas/t2hI8AkPvRAqIOgUXWP.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('179', '179', 'facturas/wXRBTO8QHr6jwZfgTYUr.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('180', '180', 'facturas/8NWxgrE1IazxNV5PBwq4.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('181', '181', 'boletas/MRSDPajsSwi0ScytOwUS.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('182', '182', 'boletas/zWMPYIUcnJE0PsLaROfB.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('183', '183', 'facturas/2lvdLZbaz9jEK3ngwE5h.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('184', '184', 'boletas/dr5Mok9p9dsogGzsY4wp.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('185', '185', 'facturas/VA4mZVM2oGxiyBfN1Xkj.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('186', '186', 'facturas/99KgEUlPG3ONx93kzLK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('187', '187', 'boletas/gW1zFrDqFZsTKLqBcG45.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('188', '188', 'boletas/NgZggOSeqf7a7g81v0t8.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('189', '189', 'boletas/WFTBtuSTZQ6ROwFtAYww.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('190', '190', 'boletas/8LcR1g9xhe3WOmiQeNvQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('191', '191', 'facturas/hOyS8LcpF72dVYFcthi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('192', '192', 'facturas/3zFxxvF7IoWT95Jv4obv.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('193', '193', 'boletas/XBFUTFFN44VxsdKqQEzE.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('194', '194', 'boletas/LwVqegw5zYnDWrZ8zU4U.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('195', '195', 'facturas/BLlbUFDrlYmCCajJAW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('196', '196', 'boletas/4v3KiM9X5fHRNhdegFHD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('197', '197', 'boletas/yFlGgZ1KBUyw2qo1KD1r.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('198', '198', 'boletas/83ndwx1RfAfdxhV7dBFa.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('199', '199', 'boletas/JCFvVhM2icdqqVDgd3ap.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('200', '200', 'facturas/qfQniZ70wlcqHFcoUh3h.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('201', '201', 'facturas/tZpI1bTwy7R4KcOa5MFr.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('202', '202', 'boletas/ha7VWTL14U7WcRRSMKsY.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('203', '203', 'boletas/z0yMht69VSwbEvdNwk2C.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('204', '204', 'boletas/VW1zi8omvXh6sYErwCeR.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('205', '205', 'boletas/Kijy4HfS7P9CNKA3Dpvc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('206', '206', 'boletas/HLCIHodkpPfZki1NY95.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('207', '207', 'boletas/gBv5OK6GCzjkwcjJYRx7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('208', '208', 'boletas/rdbtbJMlgDJ8YoCcQ57.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('209', '209', 'boletas/A6JM8MULemvOgVFzkXnL.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('210', '210', 'boletas/EjTfdklaBVBD3CCwDmbw.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('211', '211', 'facturas/C7kReR4eeaTwu7mhtj4P.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('212', '212', 'facturas/jP09nAx4ZFznyLF7QqtD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('213', '213', 'facturas/k7a5YHPUkLAKi726iOV.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('214', '215', 'facturas/0Gro1TAKQmjosIwm18F.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('215', '216', 'facturas/ZWHNPglcjeLNgNGj4nTs.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('216', '217', 'facturas/57v41xcRl8M441ryUt4N.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('217', '218', 'boletas/aOhojluOCiwqTnLSglTC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('218', '219', 'boletas/Hx6GisRg1vWYF7CXuP.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('219', '220', 'facturas/Sfl2P4V2vm9in1MWytsW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('220', '221', 'boletas/WXC52hFiKvdUyaU3BNfA.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('221', '222', 'facturas/7WXDYBMYSMh3q3e8xdV.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('222', '223', 'facturas/Q9TcU2UiCwn4KliKGsnQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('223', '224', 'facturas/AyxgFCLZpIVeA1CnYP0I.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('224', '225', 'facturas/91Pto0OhVDV18dfFOixt.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('225', '226', 'boletas/QfrwoQz3yiN7v6tU2bg9.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('226', '227', 'facturas/hy3PhUL1NukrzvOQnOl6.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('227', '228', 'facturas/WqZ2laXkvUIXy2ib5AGH.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('228', '229', 'facturas/PgQ0gT6fPSWBZFZlm6s.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('229', '230', 'boletas/ZCqeagGkJJHsv2r9UtAO.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('230', '231', 'boletas/wfC9NkHdbzdqNSltKprf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('231', '232', 'boletas/WfJpEFss3Uo2RgBfThd.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('232', '233', 'boletas/e9Op3cftPZqAKA4kUpWm.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('233', '234', 'facturas/G946IArl9GmLxnAhXXwN.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('234', '235', 'boletas/T7WnPuF5BRtTki9xEbMo.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('235', '236', 'boletas/mWCTraf7edTZRNB93M.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('236', '237', 'facturas/3bmfizGNNT0GJCV8aJIc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('237', '238', 'boletas/WL2IZu179JKKDjd2InKy.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('238', '239', 'boletas/MlLMSUNTI80HXbJaikr.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('239', '240', 'boletas/Um7Yn3B4m9DqiAB0bGVO.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('240', '241', 'boletas/GCpEPn78k6FTvWoXA1Oi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('241', '242', 'boletas/R2914BQ1wU0Jf4CrSSJw.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('242', '243', 'boletas/4Xzai8gEURaBI4GmAi13.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('243', '244', 'boletas/pdVP6u608JwxebfQZ6wz.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('244', '245', 'facturas/9CHWocM10L0kVJBDDi3v.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('245', '246', 'facturas/w07Lp1EgVk9odKPUZJkl.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('246', '247', 'facturas/lrvnzby5FIjMDpYm0354.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('247', '248', 'facturas/MV5IKs4dXXOHPqfgYxBQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('248', '249', 'facturas/YbPoIah2uw1rJeHMKq8k.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('249', '250', 'boletas/4MH8JakeCNW04VJFAqJX.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('250', '251', 'boletas/1RFvaKRzuOFoJFCceab7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('251', '252', 'boletas/CtnAuiZldLqq6uJik1ml.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('252', '253', 'boletas/j363qQeuhsjcprP6Qejj.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('253', '254', 'facturas/BJJHyIm6zdPMyjOWS7p.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('254', '255', 'facturas/GtrHl1Xw0P9sGknqmFu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('255', '256', 'facturas/FC8747Mvb8aV40rd1I1C.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('256', '257', 'boletas/mWEvxzpYdoCvfKZIWeo.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('257', '258', 'facturas/WYvU3g3kWruEZ00ZyUyo.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('258', '259', 'boletas/k4LI3pS6C7IhEnBFvOPY.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('259', '260', 'boletas/f8gRflAPGVylntIQIjd.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('260', '261', 'boletas/3SLDzfXxf1lv415PLEy.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('261', '262', 'boletas/8dISjhLZEyNGympyro.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('262', '263', 'facturas/XTrwKUXuOhhOPpMxtQWg.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('263', '264', 'boletas/wUmyh6A6buXLWINmOkE0.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('264', '265', 'boletas/DUZtXLHFYSIL6gYBjy6E.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('265', '266', 'boletas/oisZaxdl98QIqN5R8TGf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('266', '267', 'facturas/Ux1URH0GfeM9GnXpsmA6.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('267', '268', 'facturas/L5UN1cxk4iz8ljRPT1Iv.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('268', '269', 'facturas/05XblGqSzYXtcjQCsLDU.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('269', '270', 'facturas/NJQzZqyz8xJyfKKUfkI5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('270', '271', 'facturas/9qewXyMYywM1aZKoeFbq.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('271', '272', 'facturas/RxEHDQ5CJrOS9W2eVVUD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('272', '273', 'boletas/GlVmra8MbEGgXZWwG5Q.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('273', '274', 'facturas/EI2plbYXsIqlInijyz2v.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('274', '275', 'boletas/K9ptBrl6HMsFq1q1bSdT.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('275', '276', 'facturas/aZkdPfKFXuSg5da5lRpF.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('276', '277', 'boletas/M8mj74kTlRYHmidxiipY.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('277', '278', 'facturas/qggKQwf6REe8XCz1Py0Q.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('278', '279', 'facturas/OnRsRZntp0M1IbKL4rx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('279', '280', 'boletas/ASu72ok5HtCfijWU3P96.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('280', '281', 'facturas/skphL6VnnyxHefny6IgU.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('281', '282', 'boletas/Q01fjKBB1cBwh9l0zzpW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('282', '283', 'boletas/Dd1O18Ffojf7l1YRV5ag.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('283', '284', 'boletas/2TM2dVlRFK8fFzu2tIVG.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('284', '285', 'facturas/4u95hROwRtOeZ6AO7fS0.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('285', '286', 'facturas/H7AwhDVxznw93hN2zNee.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('286', '287', 'facturas/pDNN7ItDYZphRR7rdvAO.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('287', '288', 'boletas/ttjnKlwyb07QPn8JKxwh.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('288', '289', 'boletas/Urk8Sf3JBZycH5VV0Li.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('289', '290', 'boletas/TmMLehnubIALdQXMRkH.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('290', '291', 'boletas/MQUsiX3H3gtejyFRYni.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('291', '292', 'boletas/1itySemE0rKXclPr0f2M.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('292', '293', 'boletas/tCafhgftVST4x6lIIVf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('293', '294', 'boletas/3gujO1KlM5Of3DSjjTdc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('294', '295', 'boletas/26BuMQVMPaYycOWqdYn.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('295', '296', 'boletas/fYDdc6arBF4aEV5TcpvR.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('296', '297', 'boletas/hqQMARg0TsGRg5rQg5L.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('297', '298', 'boletas/GT8Hzppl5jkXtuAW2c5p.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('298', '299', 'boletas/r2w3B6gMRZl3Ov13GUwQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('299', '300', 'boletas/f3zhNIxUy53yufkvx3d7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('300', '301', 'boletas/15VlxTM2w3D13b1oUZ5w.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('301', '302', 'facturas/FF5Q90SwO1HOxDW7d.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('302', '303', 'facturas/DbwoKSAWfAC7mLKUef0U.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('303', '304', 'facturas/ZtElTE3NUoriUdIjbhYT.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('304', '305', 'boletas/FYWezZt7xV2lqS0f8M3s.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('305', '306', 'boletas/pzQjKgUN32QJueX7e198.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('306', '307', 'facturas/ulVL8HbFelGNuKdbmG.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('307', '308', 'facturas/0dSI2eQnfRASPKORlJvu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('308', '309', 'facturas/yor8jr20KFD8uRh0DTD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('309', '310', 'facturas/touwTM60NGff5f80v3uv.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('310', '311', 'boletas/0C6ziFq0UDOsvWr7lhOq.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('311', '312', 'boletas/I1qOh64mSRDXEir9lYzG.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('312', '313', 'boletas/IzYTTTCyxonuUXJrKUi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('313', '314', 'boletas/CJQcFpn5t67oTdwyY0h.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('314', '315', 'facturas/PfN5ntmxvqDgDWHlVgRB.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('315', '316', 'boletas/4yNv4Sfj8Xk8w2pUYUeT.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('316', '317', 'facturas/mFy0SsSyN7mOBOy9IqU.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('317', '318', 'facturas/9rqzZivOtJQXMFDaSaXR.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('318', '319', 'boletas/FPUnDWu1003ZgAmgZW9o.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('319', '320', 'boletas/P2m2hNzPPIMGncVcuDGM.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('320', '321', 'boletas/06f9NFIDKB9YqEFt2PD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('321', '322', 'boletas/kHBliCOA7efjA9duVgfZ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('322', '323', 'boletas/OpazLzLZiEyddfbJCSW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('323', '324', 'boletas/br3AAOIcF9huI2n7DhK3.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('324', '325', 'boletas/j0A3BBNl3sPOijdlNpcu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('325', '326', 'facturas/PeATxpz8iQsp6izv6kp.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('326', '327', 'facturas/ILYIIRllu8jIUlK2nqAY.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('327', '328', 'boletas/pUUJ3753LNLyIiCQEVlh.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('328', '329', 'facturas/xGIb4tdihUztrAyXk48.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('329', '330', 'boletas/qfpy3GdwC0PqgxO3cyir.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('330', '331', 'facturas/yZHmCeIc00lzE3HrkQD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('331', '332', 'boletas/fe9XxbPhlnP9nyNsWH39.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('332', '333', 'facturas/fIlV6EDPBgQP0Wkbkahi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('333', '334', 'boletas/F5V340Xdw5GRFYP2n6io.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('334', '335', 'facturas/T6S0Q7HrNDCSQG9RE12l.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('335', '336', 'boletas/DkksMk2ogRHzDwmQxP25.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('336', '337', 'boletas/IyyqXgxWizjJtvPNHKDb.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('337', '338', 'facturas/QpsWYtUmEMIZn5vdxXT.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('338', '339', 'facturas/BgjKeBt7pZUb9f64tpz9.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('339', '340', 'boletas/ADg8HgHdSbb2vZpG4lJ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('340', '341', 'boletas/XWeALagIIXRpcU5Xd6g8.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('341', '342', 'boletas/3TYgPtWvKlx35SOl5iqX.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('342', '343', 'facturas/vYxI91u4SxwqXe861uo5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('343', '344', 'boletas/es26AxCnF2FHKmvavwRP.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('344', '345', 'facturas/5Y2yksgPhMJNQn8H6hBp.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('345', '346', 'boletas/h12CWpqlLH7wCdgLFm0C.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('346', '347', 'boletas/ab09dzO9CnWrMWaueKU9.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('347', '348', 'facturas/Pv6QctNTwpwaL4MpZa.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('348', '349', 'boletas/X6SrkWtpuBD03h2gcS7W.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('349', '350', 'facturas/sh99fAk3cayaKtVUNu5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('350', '351', 'facturas/RCmmxpsKd6Hx4jA16QaQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('351', '352', 'facturas/8Ya3BUft1epofmL22CDM.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('352', '353', 'boletas/jOLlgLzPUFGNBxY6jovt.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('353', '354', 'boletas/hoOOXRjEx9u6GNNcpyd.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('354', '355', 'facturas/8XguisaIhnJhdaZ2E1W3.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('355', '356', 'boletas/xLQ3UBsQ0txhWdTT6xVl.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('356', '357', 'boletas/K3oZZ8q72lTxKGpZsbF9.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('357', '358', 'facturas/bCxBacKTQsWvpNJZKQSD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('358', '359', 'boletas/rZSMgYdcJVYgaZAq7zH.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('359', '360', 'facturas/ne6jLjR24OgH3BczuVw.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('360', '361', 'facturas/5cKB873l1paQYOiEEFmf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('361', '362', 'boletas/sMbQACuJnsev8bUHwIei.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('362', '363', 'facturas/QIctVyo7zqWYvNXjYbZ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('363', '364', 'facturas/xt8PHAdUjhILWyqTRnF.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('364', '365', 'boletas/VL5x3YYXhrfzZ5VIauHh.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('365', '366', 'facturas/LWOP67rgmrQ8Tk83rPBK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('366', '367', 'boletas/d6KCS8YRE7JoJ2KWlZGE.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('367', '368', 'boletas/UJHvi14BtgqnvvZOX5p.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('368', '369', 'boletas/Yt4inDlOtigsTCkFkVG1.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('369', '370', 'facturas/aJ7VAhYjOnJ0H29fY3g.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('370', '371', 'boletas/5RR40vRY8f5rRd0igKas.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('371', '372', 'boletas/9oENLmNXZyVjiEMolhU.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('372', '373', 'facturas/pmrJH7z25PWZD4Jx8V6k.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('373', '374', 'boletas/zE4inqTEBSznqfjnHk2.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('374', '375', 'boletas/iu6TbgHHbikKOfoCg2KD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('375', '376', 'boletas/67vVEcQi4ZeEgZuEAKcH.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('376', '377', 'facturas/WJkBDAFT18O9QQ40TlQv.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('377', '378', 'boletas/ihOTwXEHoyJboQqUq1uf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('378', '379', 'boletas/gXRus7mZ4pDqy33Ayr.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('379', '380', 'boletas/y96eePyIHvE6uEk9DvVq.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('380', '381', 'facturas/6lSz6V3Ou0W4Mptrjzka.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('381', '382', 'boletas/nkS1fB8qmKckRyArdYP6.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('382', '383', 'facturas/iYR72BJM4hPSUW2AbK4y.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('383', '384', 'boletas/IyyArq1C78LPI8LKeIby.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('384', '385', 'facturas/W17ByFUifHBzcFVpEkJZ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('385', '386', 'facturas/eqZAI8cOUvp0VDG5V8JK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('386', '387', 'facturas/wh2UXFx5bWSLtBuo07Y.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('387', '388', 'boletas/gGVa7tZ3bXdlEWSRSu2.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('388', '389', 'facturas/yvea0yf8sW5VgVESdQU.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('389', '390', 'boletas/ZlHNWYdsJEZXZHJfpPbD.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('390', '391', 'boletas/xmh0FeZBbOwPqAIRTvHW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('391', '392', 'boletas/8NrFSS9BSTJdV6LFwRml.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('392', '393', 'boletas/nvR87a6RmtlWc1bxNQfy.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('393', '394', 'boletas/VUd9D4uQgvq5v3WkZTf4.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('394', '395', 'facturas/c7g1cEIdrDoOvn8CtKlv.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('395', '396', 'facturas/TpfHPSISxr1eiewVzXrs.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('396', '397', 'facturas/oMcbhuASVH02PCb6GDwW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('397', '398', 'facturas/hmlwR8nBH1f1k7xrf4Or.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('398', '399', 'facturas/Km4o9KUj53lrtKRn7MSf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('399', '400', 'facturas/JDs8f8mguanyF75HWkId.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('400', '401', 'boletas/sJ0suhjOvVq7mVLUcT79.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('401', '402', 'facturas/Vi22qCzEDVrhFob2GUK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('402', '403', 'facturas/sVPfYcIRBb5jzUD2qUaY.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('403', '404', 'facturas/MRyOlDq8lOMnZsIqFWCC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('404', '405', 'facturas/r1RSJF3RpAUmKw0H9Qgd.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('405', '406', 'facturas/oSDtW0kvpbojRZ7C8itj.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('406', '407', 'facturas/ZMTTwJiRfrzlZF1O7DQ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('407', '408', 'facturas/gVA5yFdTZmwUhGhQS7bB.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('408', '409', 'facturas/Hj6LmuB8fvk22C4MUmWb.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('409', '410', 'facturas/b6tjdU4EmRQ6E0vCnmRX.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('410', '411', 'facturas/Ze8S1yHbBjKDZSaVFIRX.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('411', '412', 'facturas/3MbOMSqxE2SNrmQPMlLm.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('412', '413', 'facturas/8rWR0pboVUfGKspG90ml.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('413', '414', 'facturas/9MelOlCJEUDu3dKbFwsu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('414', '415', 'boletas/panEP9dZuo5vwQCbU9X4.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('415', '416', 'facturas/trsRIUmYV7SvDO1HQsme.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('416', '417', 'boletas/mqkVH5AmQiVjOVAcyi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('417', '418', 'boletas/C2gEJyiNzwYtSW9oECrL.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('418', '419', 'facturas/8SMh1TWszvNoKVWnB81Z.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('419', '420', 'boletas/gCP6ykzlolXEUEqUKbgi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('420', '421', 'facturas/I6LlmIPzBgYuk8J51kRb.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('421', '422', 'facturas/4hcfiGoQNXiQ6bAe2xz5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('422', '423', 'facturas/rjey074bC2ouRfhQU2z.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('423', '424', 'facturas/by6vUHo431395IusoFK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('424', '425', 'facturas/Tns4dibdbvhFbgyPuKQC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('425', '426', 'facturas/bkzD3WTFtlhG7mJS8Pzy.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('426', '427', 'facturas/CiQR6QbbunVhKXj2m2Bu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('427', '428', 'facturas/U0n9O12uG0eIqCS9erWh.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('428', '429', 'facturas/nWZBGHduqAmAIzFpeGqC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('429', '430', 'facturas/km82SkfoTfzomSZqqkWY.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('430', '431', 'facturas/Hm0V3tZkNjK2tUWITHBA.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('431', '432', 'boletas/qLKRmjUhd9hNV5zhgPf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('432', '433', 'facturas/FRomuYb0z4wxMhJpJwxi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('433', '434', 'boletas/vlmmwweZgvxzLuppBUF.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('434', '435', 'boletas/H94kBsQi7i7ScM3HMry.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('435', '436', 'facturas/Uxp71XDq8wPoXTkvrfcc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('436', '437', 'facturas/ufRCMTIXsNFXaDEuDm6.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('437', '438', 'facturas/IRKCdVgAzsf5opjj3x7.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('438', '439', 'facturas/d6LvJPUziNnRfcmBBxjm.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('439', '440', 'boletas/Bx4TlvQjKSW5DHgxi2wb.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('440', '441', 'facturas/NedzhXML9IJHTYJPfew.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('441', '442', 'facturas/DdhKvYHki4mNvGGtcULR.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('442', '443', 'facturas/d4AzzGplEK206r94zWG.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('443', '444', 'boletas/UZFZn8gC0aDJ5kzX29qk.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('444', '445', 'boletas/SpyGFQN531imOLITryhH.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('445', '447', 'facturas/v6gEG2QXDYCuO2pY5vm.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('446', '448', 'facturas/Azdi0soElzG4tChF7lS.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('447', '451', 'facturas/cFkfpFPtXFnLULs9cgEN.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('448', '453', 'boletas/pka7vLCzdlJlsUMkG8B.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('449', '455', 'facturas/L36jAQy5B91HLnD7sSIJ.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('450', '458', 'boletas/JQSEarmqx4xWc4IdiDNf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('451', '464', 'boletas/L6RzAqFvCm0Kr6a3xurl.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('452', '2546', 'facturas/Ka2ZygNBMnVxYLco9RPf.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('453', '2548', 'boletas/ebuH6XHvokcpBCCgbwx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('454', '2565', 'facturas/VLOpzjwLiVo9GtY1ArYW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('455', '2578', 'facturas/TlJJcxfMZCdOyyscDX9i.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('456', '2581', 'facturas/FR7GujSqkFUh6qXmk92.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('457', '2585', 'facturas/es7QRUBtiSqxi2DJ0XHT.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('458', '2587', 'boletas/BK989vaWabdvi8vQTnEU.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('459', '2596', 'facturas/pehWXvaFg9w18Suh2W3g.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('460', '2597', 'facturas/iQxPIYkMVl21EmwokPcv.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('461', '2598', 'facturas/ASVELGDq6viQQLhVgz7x.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('462', '2603', 'facturas/8MIibePWUm9ibUs3wwo.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('463', '2604', 'boletas/Py8lHPECzRgAPnyzBfx.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('464', '2605', 'facturas/g2KxdsBRKxoibgj4UYUC.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('465', '2621', 'facturas/GBiZbId3CQzBYxCpbbsK.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('466', '2622', 'facturas/41dcf8kKdIRts4ZSdJh.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('467', '2623', 'facturas/UAbeDkXGf9HY6HPIYEZe.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('468', '2624', 'facturas/gTW8dYMkH50NvlyoVYbW.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('469', '2625', 'facturas/B9iUEVfeYqBmwcGWwDjG.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('470', '2626', 'facturas/RLoe6ZWbhVt0JxaarZ9.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('471', '2627', 'facturas/a9ciFwPo2LVgWAilzgGu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('472', '2628', 'facturas/TTgpxI2gOGzXkPTSi7Qc.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('473', '2629', 'facturas/XVxIP5Q2THd2HZst99L.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('474', '2630', 'facturas/2BnFaLv3NzfmQ6OCoLB9.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('475', '2631', 'facturas/9Egybb3pNpTgu4BB91NU.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('476', '2632', 'facturas/kitN3bjaCcZbmGvtYK6L.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('477', '2633', 'facturas/6EM3GQENiMThQRRUvvj.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('478', '2634', 'facturas/zISLWcmgzsak5kZBAjiu.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('479', '2635', 'facturas/QiEznyKVccPOwK2H2xMb.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('480', '2636', 'facturas/udxocR4TdkNSkZeK7KOj.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('481', '2637', 'facturas/xWPzBIiAtcpfhxFUYKh3.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('482', '2640', 'boletas/k5mnTzcNKIud0nxRWUas.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('483', '2641', 'boletas/K8CvMls4WvsljGJqAlz5.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('484', '2642', 'boletas/ykWLmdJWJWGEG2JkQehi.pdf');
INSERT INTO `tec_sales_files` (`id`, `sale_id`, `file_name`) VALUES ('485', '2643', 'facturas/FnvEpIYdba5fRnJMe5J4.pdf');


#
# TABLE STRUCTURE FOR: tec_send_invoice
#

DROP TABLE IF EXISTS `tec_send_invoice`;

CREATE TABLE `tec_send_invoice` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `issue_date` date DEFAULT NULL,
  `number` int(11) DEFAULT NULL,
  `file_name` char(50) DEFAULT NULL,
  `ticket` varchar(1000) DEFAULT NULL,
  `reference_date` date DEFAULT NULL,
  `processed_date` date DEFAULT NULL,
  `type` char(50) DEFAULT NULL,
  `flg_response` int(1) DEFAULT NULL,
  `error_code` varchar(15) DEFAULT NULL,
  `response_descrip` varchar(1000) DEFAULT NULL,
  `observations` text,
  `status_ticket` varchar(140) DEFAULT NULL,
  `status` int(1) DEFAULT NULL,
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` datetime DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` datetime DEFAULT NULL,
  `estado` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=357 DEFAULT CHARSET=utf8;

INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('1', '2021-01-28', NULL, '20505239262-01-F001-0000001', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-01-28 14:07:20', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('2', '2021-01-28', NULL, '20505239262-01-F001-0000002', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-01-28 14:14:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('3', '2021-01-28', NULL, '20505239262-01-F001-0000003', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-01-28 14:44:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('4', '2021-01-28', NULL, '20505239262-01-F001-0000004', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-01-28 15:00:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('5', '2021-01-28', NULL, '20505239262-01-F001-0000005', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-01-28 15:03:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('6', '2021-01-28', NULL, '20505239262-01-F001-0000006', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-01-28 17:26:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('7', '2021-01-28', NULL, '20505239262-01-F001-0000007', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-01-28 17:35:37', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('8', '2021-01-28', NULL, '20505239262-01-F001-0000007', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-01-28 21:48:13', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('9', '2021-01-28', NULL, '20505239262-01-F001-0000007', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-01-28 21:57:36', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('10', '2021-01-28', NULL, '20505239262-01-F001-0000007', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-01-28 22:02:52', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('11', '2021-01-28', NULL, '20505239262-01-F001-0000001', NULL, '2021-01-28', '2021-01-28', 'RF', '0', 'soap-env:Client', 'El comprobante ya esta informado y se encuentra con estado anulado o rechazado - Detalle: xxx.xxx.xxx value=\'ticket: 202106485632269 error: El comprobante F001-0000001 fue anulado\'', NULL, NULL, '3', '1', '2021-01-28 22:17:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('12', '2021-01-28', NULL, '20505239262-01-F001-0000007', NULL, '2021-01-28', '2021-01-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-01-28 23:33:19', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('13', '2021-01-29', NULL, '20505239262-01-F001-0000007', NULL, '2021-01-29', '2021-01-29', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-01-29 09:24:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('14', '2021-01-29', NULL, '20505239262-01-F001-0000008', NULL, '2021-01-29', '2021-01-29', 'RF', '0', 'soap-env:Client', 'El comprobante fue registrado previamente con otros datos - Detalle: xxx.xxx.xxx value=\'ticket: 202106487673991 error: El comprobante F001-0000008 fue informado anteriormente\'', NULL, NULL, '3', '2', '2021-01-29 09:50:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('15', '2021-01-29', NULL, '20505239262-01-F001-0000508', NULL, '2021-01-29', '2021-01-29', 'RF', '1', '0', 'La Factura numero F001-0000508, ha sido aceptada', NULL, NULL, '4', '2', '2021-01-29 13:37:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('16', '2021-01-29', NULL, '20505239262-01-F001-0000509', NULL, '2021-01-29', '2021-01-29', 'RF', '1', '0', 'La Factura numero F001-0000509, ha sido aceptada', NULL, NULL, '4', '2', '2021-01-29 13:39:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('17', '2021-01-29', NULL, '20505239262-01-F001-0000510', NULL, '2021-01-29', '2021-01-29', 'RF', '1', '0', 'La Factura numero F001-0000510, ha sido aceptada', NULL, NULL, '4', '2', '2021-01-29 13:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('18', '2021-01-29', NULL, '20505239262-01-F001-0000511', NULL, '2021-01-29', '2021-01-29', 'RF', '1', '0', 'La Factura numero F001-0000511, ha sido aceptada', NULL, NULL, '4', '2', '2021-01-29 13:46:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('19', '2021-02-01', NULL, '20505239262-01-F001-0000512', NULL, '2021-02-01', '2021-02-01', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-02-01 10:36:02', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('20', '2021-02-01', NULL, '20505239262-01-F001-0000512', NULL, '2021-02-01', '2021-02-01', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-02-01 14:37:47', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('21', '2021-02-01', NULL, '20505239262-01-F001-0000512', NULL, '2021-02-01', '2021-02-01', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-02-01 15:08:07', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('22', '2021-02-01', NULL, '20505239262-01-F001-0000512', NULL, '2021-02-01', '2021-02-01', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-02-01 21:03:11', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('23', '2021-02-02', NULL, '20505239262-01-F001-0000512', NULL, '2021-02-02', '2021-02-02', 'RF', '1', '0', 'La Factura numero F001-0000512, ha sido aceptada', NULL, NULL, '4', '1', '2021-02-02 15:33:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('24', '2021-02-03', NULL, '20505239262-01-F001-0000513', NULL, '2021-02-03', '2021-02-03', 'RF', '1', '0', 'La Factura numero F001-0000513, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-03 08:28:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('25', '2021-02-03', NULL, '20505239262-01-F001-0000514', NULL, '2021-02-03', '2021-02-03', 'RF', '1', '0', 'La Factura numero F001-0000514, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-03 09:12:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('26', '2021-02-04', NULL, '20505239262-01-F001-0000515', NULL, '2021-02-04', '2021-02-04', 'RF', '1', '0', 'La Factura numero F001-0000515, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-04 07:44:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('27', '2021-02-04', NULL, '20505239262-01-F001-0000516', NULL, '2021-02-04', '2021-02-04', 'RF', '1', '0', 'La Factura numero F001-0000516, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-04 09:21:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('28', '2021-02-05', NULL, '20505239262-01-F001-0000517', NULL, '2021-02-05', '2021-02-05', 'RF', '0', 'soap-env:Client', 'El comprobante fue registrado previamente con otros datos - Detalle: xxx.xxx.xxx value=\'ticket: 202106524088486 error: El comprobante F001-0000517 fue informado anteriormente\'', NULL, NULL, '3', '2', '2021-02-05 09:26:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('29', '2021-02-05', NULL, '20505239262-01-F001-0000518', NULL, '2021-02-05', '2021-02-05', 'RF', '0', 'soap-env:Client', 'El comprobante fue registrado previamente con otros datos - Detalle: xxx.xxx.xxx value=\'ticket: 202106524180464 error: El comprobante F001-0000518 fue informado anteriormente\'', NULL, NULL, '3', '2', '2021-02-05 09:45:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('30', '2021-02-05', NULL, '20505239262-01-F002-0000001', NULL, '2021-02-05', '2021-02-05', 'RF', '1', '0', 'La Factura numero F002-0000001, ha sido aceptada', NULL, NULL, '4', '1', '2021-02-05 18:17:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('31', '2021-02-08', NULL, '20505239262-01-F002-0000002', NULL, '2021-02-08', '2021-02-08', 'RF', '1', '0', 'La Factura numero F002-0000002, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-08 10:43:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('32', '2021-02-08', NULL, '20505239262-01-F002-0000003', NULL, '2021-02-08', '2021-02-08', 'RF', '1', '0', 'La Factura numero F002-0000003, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-08 10:45:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('33', '2021-02-08', NULL, '20505239262-01-F002-0000004', NULL, '2021-02-08', '2021-02-08', 'RF', '1', '0', 'La Factura numero F002-0000004, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-08 15:34:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('34', '2021-02-08', NULL, '20505239262-01-F002-0000005', NULL, '2021-02-08', '2021-02-08', 'RF', '1', '0', 'La Factura numero F002-0000005, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-08 15:37:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('35', '2021-02-08', NULL, '20505239262-01-F002-0000006', NULL, '2021-02-08', '2021-02-08', 'RF', '1', '0', 'La Factura numero F002-0000006, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-08 16:23:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('36', '2021-02-08', '1', '20505239262-RC-20210208-1', '202106538349129', '2021-01-28', '2021-01-28', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('37', '2021-02-08', '2', '20505239262-RC-20210208-2', '202106538351300', '2021-01-29', '2021-01-29', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-08 21:07:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('38', '2021-02-08', '3', '20505239262-RC-20210208-3', '202106538351390', '2021-01-28', '2021-01-29', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-08 21:07:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('39', '2021-02-08', '4', '20505239262-RC-20210208-4', '202106538351477', '2021-01-29', '2021-01-29', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-08 21:07:09', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('40', '2021-02-09', NULL, '20505239262-01-F002-0000007', NULL, '2021-02-09', '2021-02-09', 'RF', '1', '0', 'La Factura numero F002-0000007, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-09 08:48:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('41', '2021-02-09', '1', '20505239262-RC-20210209-1', '202106540278192', '2021-02-01', '2021-02-01', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-09 10:20:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('42', '2021-02-09', '2', '20505239262-RC-20210209-2', '202106540285293', '2021-02-03', '2021-02-03', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-09 10:22:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('43', '2021-02-09', '3', '20505239262-RC-20210209-3', '202106540285513', '2021-02-03', '2021-02-03', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-09 10:22:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('44', '2021-02-09', '4', '20505239262-RC-20210209-4', '202106540289600', '2021-02-04', '2021-02-04', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-09 10:22:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('45', '2021-02-09', '5', '20505239262-RC-20210209-5', '202106540294636', '2021-02-08', '2021-02-08', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-09 10:24:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('46', '2021-02-09', '1', '20505239262-RA-20210209-1', '202106540294740', '2021-02-05', '2021-02-08', 'AF', '1', '0', NULL, NULL, 'La Comunicacion de baja numero RA-20210209-1, ha sido aceptada', '2', '1', '2021-02-09 10:24:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('47', '2021-02-11', NULL, '20505239262-01-F002-0000008', NULL, '2021-02-11', '2021-02-11', 'RF', '1', '0000', NULL, NULL, NULL, '4', '2', '2021-02-11 08:21:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('48', '2021-02-11', NULL, '20505239262-01-F002-0000009', NULL, '2021-02-11', '2021-02-11', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-02-11 08:39:14', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('49', '2021-02-11', NULL, '20505239262-01-F002-0000010', NULL, '2021-02-11', '2021-02-11', 'RF', '1', '0', 'La Factura numero F002-0000010, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-11 09:04:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('50', '2021-02-11', NULL, '20505239262-01-F002-0000011', NULL, '2021-02-11', '2021-02-11', 'RF', '1', '0', 'La Factura numero F002-0000011, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-11 09:29:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('51', '2021-02-11', NULL, '20505239262-01-F002-0000009', NULL, '2021-02-11', '2021-02-11', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-02-11 10:13:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('52', '2021-02-11', NULL, '20505239262-01-F002-0000012', NULL, '2021-02-11', '2021-02-11', 'RF', '1', '0', 'La Factura numero F002-0000012, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-11 11:45:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('53', '2021-02-12', NULL, '20505239262-01-F002-0000013', NULL, '2021-02-12', '2021-02-12', 'RF', '1', '0', 'La Factura numero F002-0000013, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-12 08:36:55', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('54', '2021-02-12', NULL, '20505239262-01-F002-0000014', NULL, '2021-02-12', '2021-02-12', 'RF', '1', '0', 'La Factura numero F002-0000014, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-12 15:31:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('55', '2021-02-12', NULL, '20505239262-01-F002-0000015', NULL, '2021-02-12', '2021-02-12', 'RF', '1', '0', 'La Factura numero F002-0000015, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-12 15:39:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('56', '2021-02-12', NULL, '20505239262-01-F002-0000016', NULL, '2021-02-12', '2021-02-12', 'RF', '1', '0', 'La Factura numero F002-0000016, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-12 16:11:55', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('57', '2021-02-12', NULL, '20505239262-01-F002-0000017', NULL, '2021-02-12', '2021-02-12', 'RF', '1', '0', 'La Factura numero F002-0000017, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-12 16:22:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('58', '2021-02-12', NULL, '20505239262-01-F002-0000018', NULL, '2021-02-12', '2021-02-12', 'RF', '1', '0', 'La Factura numero F002-0000018, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-12 16:26:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('59', '2021-02-14', NULL, '20505239262-01-F002-0000019', NULL, '2021-02-14', '2021-02-14', 'RF', '1', '0', 'La Factura numero F002-0000019, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-14 03:45:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('60', '2021-02-14', NULL, '20505239262-01-F002-0000020', NULL, '2021-02-14', '2021-02-14', 'RF', '1', '0', 'La Factura numero F002-0000020, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-14 03:52:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('61', '2021-02-15', NULL, '20505239262-01-F002-0000021', NULL, '2021-02-15', '2021-02-15', 'RF', '1', '0', 'La Factura numero F002-0000021, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-15 16:37:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('62', '2021-02-15', NULL, '20505239262-01-F002-0000022', NULL, '2021-02-15', '2021-02-15', 'RF', '1', '0', 'La Factura numero F002-0000022, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-15 16:41:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('63', '2021-02-16', NULL, '20505239262-01-F002-0000023', NULL, '2021-02-16', '2021-02-16', 'RF', '1', '0', 'La Factura numero F002-0000023, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-16 16:46:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('64', '2021-02-16', '1', '20505239262-RC-20210216-1', '202106576126780', '2021-02-09', '2021-02-09', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:08:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('65', '2021-02-16', '2', '20505239262-RC-20210216-2', '202106576130932', '2021-02-11', '2021-02-11', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('66', '2021-02-16', '3', '20505239262-RC-20210216-3', '202106576131050', '2021-01-28', '2021-02-11', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('67', '2021-02-16', '4', '20505239262-RC-20210216-4', '202106576131137', '2021-01-29', '2021-02-11', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('68', '2021-02-16', '5', '20505239262-RC-20210216-5', '202106576131233', '2021-02-01', '2021-02-11', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('69', '2021-02-16', '6', '20505239262-RC-20210216-6', '202106576131338', '2021-02-03', '2021-02-11', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('70', '2021-02-16', '7', '20505239262-RC-20210216-7', '202106576131433', '2021-02-04', '2021-02-11', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('71', '2021-02-16', '8', '20505239262-RC-20210216-8', '202106576131524', '2021-02-08', '2021-02-11', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('72', '2021-02-16', '9', '20505239262-RC-20210216-9', '202106576131621', '2021-02-09', '2021-02-11', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('73', '2021-02-16', '10', '20505239262-RC-20210216-10', '202106576131716', '2021-02-11', '2021-02-11', 'AB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('74', '2021-02-16', '11', '20505239262-RC-20210216-11', '202106576134198', '2021-02-12', '2021-02-12', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210216-11, ha sido aceptado', '2', '1', '2021-02-16 22:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('75', '2021-02-16', '12', '20505239262-RC-20210216-12', '202106576134287', '2021-02-12', '2021-02-12', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210216-12, ha sido aceptado', '2', '1', '2021-02-16 22:11:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('76', '2021-02-16', '1', '20505239262-RA-20210216-1', '202106576134330', '2021-02-12', '2021-02-12', 'AF', '1', '0', NULL, NULL, 'La Comunicacion de baja numero RA-20210216-1, ha sido aceptada', '2', '1', '2021-02-16 22:11:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('77', '2021-02-16', '13', '20505239262-RC-20210216-13', '202106576144022', '2021-02-15', '2021-02-15', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210216-13, ha sido aceptado', '2', '1', '2021-02-16 22:15:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('78', '2021-02-16', '14', '20505239262-RC-20210216-14', '202106576144099', '2021-02-15', '2021-02-15', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210216-14, ha sido aceptado', '2', '1', '2021-02-16 22:15:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('79', '2021-02-18', NULL, '20505239262-01-F002-0000024', NULL, '2021-02-18', '2021-02-18', 'RF', '1', '0', 'La Factura numero F002-0000024, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-18 08:31:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('80', '2021-02-21', NULL, '20505239262-01-F002-0000025', NULL, '2021-02-21', '2021-02-21', 'RF', '1', '0', 'La Factura numero F002-0000025, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-21 05:31:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('81', '2021-02-22', NULL, '20505239262-01-F002-0000026', NULL, '2021-02-22', '2021-02-22', 'RF', '1', '0', 'La Factura numero F002-0000026, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-22 11:37:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('82', '2021-02-22', NULL, '20505239262-01-F002-0000027', NULL, '2021-02-22', '2021-02-22', 'RF', '1', '0', 'La Factura numero F002-0000027, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-22 15:41:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('83', '2021-02-23', '1', '20505239262-RC-20210223-1', '202106604100009', '2021-02-16', '2021-02-16', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210223-1, ha sido aceptado', '2', '1', '2021-02-23 00:08:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('84', '2021-02-23', '2', '20505239262-RC-20210223-2', '202106604100721', '2021-02-17', '2021-02-17', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-2,\r\nha sido aceptado', '2', '1', '2021-02-23 00:08:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('85', '2021-02-23', '3', '20505239262-RC-20210223-3', '202106604101549', '2021-02-18', '2021-02-18', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210223-3, ha sido aceptado', '2', '1', '2021-02-23 00:08:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('86', '2021-02-23', NULL, '20505239262-01-F002-0000028', NULL, '2021-02-23', '2021-02-23', 'RF', '1', '0', 'La Factura numero F002-0000028, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-23 08:39:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('87', '2021-02-23', NULL, '20505239262-01-F002-0000029', NULL, '2021-02-23', '2021-02-23', 'RF', '1', '0', 'La Factura numero F002-0000029, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-23 10:34:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('88', '2021-02-23', NULL, '20505239262-01-F002-0000030', NULL, '2021-02-23', '2021-02-23', 'RF', '1', '0', 'La Factura numero F002-0000030, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-23 15:59:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('89', '2021-02-24', NULL, '20505239262-01-F002-0000031', NULL, '2021-02-24', '2021-02-24', 'RF', '1', '0', 'La Factura numero F002-0000031, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-24 16:11:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('90', '2021-02-25', NULL, '20505239262-01-F002-0000032', NULL, '2021-02-25', '2021-02-25', 'RF', '1', '0', 'La Factura numero F002-0000032, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-25 14:59:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('91', '2021-02-25', NULL, '20505239262-01-F002-0000033', NULL, '2021-02-25', '2021-02-25', 'RF', '1', '0', 'La Factura numero F002-0000033, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-25 17:02:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('92', '2021-02-28', NULL, '20505239262-01-F002-0000034', NULL, '2021-02-28', '2021-02-28', 'RF', '1', '0', 'La Factura numero F002-0000034, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-28 22:06:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('93', '2021-02-28', NULL, '20505239262-01-F002-0000035', NULL, '2021-02-28', '2021-02-28', 'RF', '1', '0', 'La Factura numero F002-0000035, ha sido aceptada', NULL, NULL, '4', '2', '2021-02-28 22:08:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('94', '2021-03-02', NULL, '20505239262-01-F002-0000036', NULL, '2021-03-02', '2021-03-02', 'RF', '1', '0', 'La Factura numero F002-0000036, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-02 09:31:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('95', '2021-03-02', NULL, '20505239262-01-F002-0000037', NULL, '2021-03-02', '2021-03-02', 'RF', '1', '0', 'La Factura numero F002-0000037, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-02 09:34:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('96', '2021-03-02', NULL, '20505239262-01-F002-0000038', NULL, '2021-03-02', '2021-03-02', 'RF', '1', '0', 'La Factura numero F002-0000038, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-02 09:36:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('97', '2021-03-03', NULL, '20505239262-01-F002-0000039', NULL, '2021-03-03', '2021-03-03', 'RF', '1', '0', 'La Factura numero F002-0000039, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-03 06:40:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('98', '2021-03-03', NULL, '20505239262-01-F002-0000040', NULL, '2021-03-03', '2021-03-03', 'RF', '1', '0', 'La Factura numero F002-0000040, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-03 06:45:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('99', '2021-03-03', NULL, '20505239262-01-F002-0000041', NULL, '2021-03-03', '2021-03-03', 'RF', '1', '0', 'La Factura numero F002-0000041, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-03 07:20:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('100', '2021-03-03', NULL, '20505239262-01-F002-0000042', NULL, '2021-03-03', '2021-03-03', 'RF', '1', '0', 'La Factura numero F002-0000042, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-03 07:59:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('101', '2021-03-03', NULL, '20505239262-01-F002-0000043', NULL, '2021-03-03', '2021-03-03', 'RF', '1', '0', 'La Factura numero F002-0000043, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-03 08:31:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('102', '2021-03-03', NULL, '20505239262-01-F002-0000044', NULL, '2021-03-03', '2021-03-03', 'RF', '1', '0', 'La Factura numero F002-0000044, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-03 08:44:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('103', '2021-03-04', NULL, '20505239262-01-F002-0000045', NULL, '2021-03-04', '2021-03-04', 'RF', '1', '0', 'La Factura numero F002-0000045, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-04 10:07:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('104', '2021-03-04', NULL, '20505239262-01-F002-0000046', NULL, '2021-03-04', '2021-03-04', 'RF', '1', '0', 'La Factura numero F002-0000046, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-04 10:21:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('105', '2021-03-05', NULL, '20505239262-01-F002-0000047', NULL, '2021-03-05', '2021-03-05', 'RF', '1', '0', 'La Factura numero F002-0000047, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-05 11:07:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('106', '2021-03-05', NULL, '20505239262-01-F002-0000048', NULL, '2021-03-05', '2021-03-05', 'RF', '1', '0', 'La Factura numero F002-0000048, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-05 11:15:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('107', '2021-03-05', NULL, '20505239262-01-F002-0000049', NULL, '2021-03-05', '2021-03-05', 'RF', '1', '0', 'La Factura numero F002-0000049, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-05 11:22:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('108', '2021-03-07', NULL, '20505239262-01-F002-0000050', NULL, '2021-03-07', '2021-03-07', 'RF', '1', '0', 'La Factura numero F002-0000050, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-07 06:17:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('109', '2021-03-07', NULL, '20505239262-01-F002-0000051', NULL, '2021-03-07', '2021-03-07', 'RF', '1', '0', 'La Factura numero F002-0000051, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-07 06:49:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('110', '2021-03-07', NULL, '20505239262-01-F002-0000052', NULL, '2021-03-07', '2021-03-07', 'RF', '1', '0', 'La Factura numero F002-0000052, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-07 06:58:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('111', '2021-03-07', NULL, '20505239262-01-F002-0000053', NULL, '2021-03-07', '2021-03-07', 'RF', '1', '0', 'La Factura numero F002-0000053, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-07 07:21:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('112', '2021-03-08', NULL, '20505239262-01-F002-0000054', NULL, '2021-03-08', '2021-03-08', 'RF', '1', '0', 'La Factura numero F002-0000054, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-08 15:57:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('113', '2021-03-08', NULL, '20505239262-01-F002-0000055', NULL, '2021-03-08', '2021-03-08', 'RF', '1', '0', 'La Factura numero F002-0000055, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-08 16:01:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('114', '2021-03-08', NULL, '20505239262-01-F002-0000056', NULL, '2021-03-08', '2021-03-08', 'RF', '1', '0', 'La Factura numero F002-0000056, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-08 16:04:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('115', '2021-03-09', NULL, '20505239262-01-F002-0000057', NULL, '2021-03-09', '2021-03-09', 'RF', '1', '0', 'La Factura numero F002-0000057, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-09 14:31:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('116', '2021-03-10', NULL, '20505239262-01-F002-0000058', NULL, '2021-03-10', '2021-03-10', 'RF', '1', '0', 'La Factura numero F002-0000058, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-10 11:09:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('117', '2021-03-10', NULL, '20505239262-01-F002-0000059', NULL, '2021-03-10', '2021-03-10', 'RF', '1', '0', 'La Factura numero F002-0000059, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-10 12:47:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('118', '2021-03-10', NULL, '20505239262-01-F002-0000060', NULL, '2021-03-10', '2021-03-10', 'RF', '1', '0', 'La Factura numero F002-0000060, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-10 17:31:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('119', '2021-03-11', NULL, '20505239262-01-F002-0000061', NULL, '2021-03-11', '2021-03-11', 'RF', '1', '0', 'La Factura numero F002-0000061, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-11 09:34:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('120', '2021-03-11', NULL, '20505239262-01-F002-0000062', NULL, '2021-03-11', '2021-03-11', 'RF', '1', '0', 'La Factura numero F002-0000062, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-11 16:22:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('121', '2021-03-11', NULL, '20505239262-01-F002-0000063', NULL, '2021-03-11', '2021-03-11', 'RF', '1', '0', 'La Factura numero F002-0000063, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-11 16:26:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('122', '2021-03-12', '1', '20505239262-RC-20210312-1', '202106699864354', '2021-02-21', '2021-02-21', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-1, ha sido aceptado', '2', '1', '2021-03-12 08:45:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('123', '2021-03-12', '2', '20505239262-RC-20210312-2', '202106699866428', '2021-02-22', '2021-02-22', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-2, ha sido aceptado', '2', '1', '2021-03-12 08:45:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('124', '2021-03-12', '3', '20505239262-RC-20210312-3', '202106699867067', '2021-02-24', '2021-02-24', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-3, ha sido aceptado', '2', '1', '2021-03-12 08:46:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('125', '2021-03-12', '4', '20505239262-RC-20210312-4', '202106699868938', '2021-02-26', '2021-02-26', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-4, ha sido aceptado', '2', '1', '2021-03-12 08:46:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('126', '2021-03-12', '5', '20505239262-RC-20210312-5', '202106699869800', '2021-02-25', '2021-02-25', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-5, ha sido aceptado', '2', '1', '2021-03-12 08:46:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('127', '2021-03-12', '6', '20505239262-RC-20210312-6', '202106699870625', '2021-02-28', '2021-02-28', 'RB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210312-6, ha sido aceptado', '2', '1', '2021-03-12 08:47:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('128', '2021-03-12', '7', '20505239262-RC-20210312-7', '202106699870782', '2021-02-28', '2021-02-28', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-7, ha sido aceptado', '2', '1', '2021-03-12 08:47:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('129', '2021-03-12', '8', '20505239262-RC-20210312-8', '202106699874291', '2021-03-02', '2021-03-02', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-8, ha sido aceptado', '2', '1', '2021-03-12 08:47:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('130', '2021-03-12', '9', '20505239262-RC-20210312-9', '202106699875007', '2021-03-04', '2021-03-04', 'RB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210312-9, ha sido aceptado', '2', '1', '2021-03-12 08:48:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('131', '2021-03-12', '10', '20505239262-RC-20210312-10', '202106699875214', '2021-03-03', '2021-03-04', 'AB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210312-10, ha sido aceptado', '2', '1', '2021-03-12 08:48:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('132', '2021-03-12', '11', '20505239262-RC-20210312-11', '202106699875406', '2021-03-04', '2021-03-04', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-11, ha sido aceptado', '2', '1', '2021-03-12 08:48:09', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('133', '2021-03-12', '12', '20505239262-RC-20210312-12', '202106699875938', '2021-03-07', '2021-03-07', 'RB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210312-12, ha sido aceptado', '2', '1', '2021-03-12 08:48:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('134', '2021-03-12', '13', '20505239262-RC-20210312-13', '202106699876333', '2021-03-08', '2021-03-08', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-13, ha sido aceptado', '2', '1', '2021-03-12 08:48:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('135', '2021-03-12', '14', '20505239262-RC-20210312-14', '202106699876764', '2021-03-09', '2021-03-09', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-14, ha sido aceptado', '2', '1', '2021-03-12 08:48:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('136', '2021-03-12', '15', '20505239262-RC-20210312-15', '202106699877107', '2021-03-10', '2021-03-10', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210312-15, ha sido aceptado', '2', '1', '2021-03-12 08:48:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('137', '2021-03-12', '16', '20505239262-RC-20210312-16', '202106699877760', '2021-03-03', '2021-03-03', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-03-12 08:48:55', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('138', '2021-03-12', NULL, '20505239262-01-F002-0000064', NULL, '2021-03-12', '2021-03-12', 'RF', '1', '0', 'La Factura numero F002-0000064, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-12 15:27:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('139', '2021-03-12', NULL, '20505239262-01-F002-0000065', NULL, '2021-03-12', '2021-03-12', 'RF', '1', '0', 'La Factura numero F002-0000065, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-12 15:29:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('140', '2021-03-16', NULL, '20505239262-01-F002-0000066', NULL, '2021-03-16', '2021-03-16', 'RF', '1', '0', 'La Factura numero F002-0000066, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-16 11:50:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('141', '2021-03-16', NULL, '20505239262-01-F002-0000067', NULL, '2021-03-16', '2021-03-16', 'RF', '1', '0', 'La Factura numero F002-0000067, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-16 12:27:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('142', '2021-03-16', NULL, '20505239262-01-F002-0000068', NULL, '2021-03-16', '2021-03-16', 'RF', '1', '0', 'La Factura numero F002-0000068, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-16 12:29:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('143', '2021-03-17', NULL, '20505239262-01-F002-0000069', NULL, '2021-03-17', '2021-03-17', 'RF', '1', '0', 'La Factura numero F002-0000069, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-17 13:36:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('144', '2021-03-17', NULL, '20505239262-01-F002-0000070', NULL, '2021-03-17', '2021-03-17', 'RF', '1', '0', 'La Factura numero F002-0000070, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-17 13:47:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('145', '2021-03-17', NULL, '20505239262-01-F002-0000071', NULL, '2021-03-17', '2021-03-17', 'RF', '1', '0', 'La Factura numero F002-0000071, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-17 13:48:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('146', '2021-03-17', NULL, '20505239262-01-F002-0000072', NULL, '2021-03-17', '2021-03-17', 'RF', '1', '0', 'La Factura numero F002-0000072, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-17 13:51:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('147', '2021-03-18', NULL, '20505239262-01-F002-0000073', NULL, '2021-03-18', '2021-03-18', 'RF', '1', '0', 'La Factura numero F002-0000073, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-18 10:41:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('148', '2021-03-18', NULL, '20505239262-01-F002-0000074', NULL, '2021-03-18', '2021-03-18', 'RF', '1', '0', 'La Factura numero F002-0000074, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-18 13:13:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('149', '2021-03-18', NULL, '20505239262-01-F002-0000075', NULL, '2021-03-18', '2021-03-18', 'RF', '1', '0', 'La Factura numero F002-0000075, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-18 14:54:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('150', '2021-03-18', NULL, '20505239262-01-F002-0000076', NULL, '2021-03-18', '2021-03-18', 'RF', '1', '0', 'La Factura numero F002-0000076, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-18 15:11:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('151', '2021-03-19', NULL, '20505239262-01-F002-0000077', NULL, '2021-03-19', '2021-03-19', 'RF', '1', '0', 'La Factura numero F002-0000077, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-19 12:48:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('152', '2021-03-19', NULL, '20505239262-01-F002-0000078', NULL, '2021-03-19', '2021-03-19', 'RF', '1', '0', 'La Factura numero F002-0000078, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-19 12:59:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('153', '2021-03-19', NULL, '20505239262-01-F002-0000079', NULL, '2021-03-19', '2021-03-19', 'RF', '1', '0', 'La Factura numero F002-0000079, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-19 13:26:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('154', '2021-03-22', NULL, '20505239262-01-F002-0000080', NULL, '2021-03-22', '2021-03-22', 'RF', '1', '0', 'La Factura numero F002-0000080, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-22 12:24:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('155', '2021-03-22', NULL, '20505239262-01-F002-0000081', NULL, '2021-03-22', '2021-03-22', 'RF', '1', '0', 'La Factura numero F002-0000081, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-22 12:38:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('156', '2021-03-22', NULL, '20505239262-01-F002-0000082', NULL, '2021-03-22', '2021-03-22', 'RF', '1', '0', 'La Factura numero F002-0000082, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-22 12:53:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('157', '2021-03-22', NULL, '20505239262-01-F002-0000083', NULL, '2021-03-22', '2021-03-22', 'RF', '1', '0000', NULL, NULL, NULL, '4', '2', '2021-03-22 15:32:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('158', '2021-03-22', NULL, '20505239262-01-F002-0000084', NULL, '2021-03-22', '2021-03-22', 'RF', '1', '0', 'La Factura numero F002-0000084, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-22 15:49:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('159', '2021-03-22', NULL, '20505239262-01-F002-0000085', NULL, '2021-03-22', '2021-03-22', 'RF', '1', '0', 'La Factura numero F002-0000085, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-22 16:33:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('160', '2021-03-24', NULL, '20505239262-01-F002-0000086', NULL, '2021-03-24', '2021-03-24', 'RF', '1', '0', 'La Factura numero F002-0000086, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-24 10:41:23', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('161', '2021-03-24', NULL, '20505239262-01-F002-0000087', NULL, '2021-03-24', '2021-03-24', 'RF', '1', '0', 'La Factura numero F002-0000087, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-24 15:51:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('162', '2021-03-24', NULL, '20505239262-01-F002-0000088', NULL, '2021-03-24', '2021-03-24', 'RF', '1', '0', 'La Factura numero F002-0000088, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-24 15:56:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('163', '2021-03-25', NULL, '20505239262-01-F002-0000089', NULL, '2021-03-25', '2021-03-25', 'RF', '1', '0', 'La Factura numero F002-0000089, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-25 11:35:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('164', '2021-03-25', NULL, '20505239262-01-F002-0000090', NULL, '2021-03-25', '2021-03-25', 'RF', '1', '0', 'La Factura numero F002-0000090, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-25 13:31:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('165', '2021-03-25', NULL, '20505239262-01-F002-0000091', NULL, '2021-03-25', '2021-03-25', 'RF', '1', '0', 'La Factura numero F002-0000091, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-25 13:38:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('166', '2021-03-25', NULL, '20505239262-01-F002-0000092', NULL, '2021-03-25', '2021-03-25', 'RF', '1', '0', 'La Factura numero F002-0000092, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-25 15:17:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('167', '2021-03-25', NULL, '20505239262-01-F002-0000093', NULL, '2021-03-25', '2021-03-25', 'RF', '1', '0', 'La Factura numero F002-0000093, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-25 15:24:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('168', '2021-03-26', NULL, '20505239262-01-F002-0000094', NULL, '2021-03-26', '2021-03-26', 'RF', '1', '0', 'La Factura numero F002-0000094, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-26 09:21:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('169', '2021-03-30', NULL, '20505239262-01-F002-0000095', NULL, '2021-03-30', '2021-03-30', 'RF', '1', '0', 'La Factura numero F002-0000095, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-30 12:37:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('170', '2021-03-30', NULL, '20505239262-01-F002-0000096', NULL, '2021-03-30', '2021-03-30', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-03-30 13:03:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('171', '2021-03-31', NULL, '20505239262-01-F002-0000097', NULL, '2021-03-31', '2021-03-31', 'RF', '1', '0', 'La Factura numero F002-0000097, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-31 08:49:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('172', '2021-03-31', NULL, '20505239262-01-F002-0000098', NULL, '2021-03-31', '2021-03-31', 'RF', '1', '0', 'La Factura numero F002-0000098, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-31 08:58:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('173', '2021-03-31', NULL, '20505239262-01-F002-0000099', NULL, '2021-03-31', '2021-03-31', 'RF', '1', '0', 'La Factura numero F002-0000099, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-31 09:19:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('174', '2021-03-31', NULL, '20505239262-01-F002-0000100', NULL, '2021-03-31', '2021-03-31', 'RF', '1', '0', 'La Factura numero F002-0000100, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-31 09:27:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('175', '2021-03-31', NULL, '20505239262-01-F002-0000101', NULL, '2021-03-31', '2021-03-31', 'RF', '1', '0', 'La Factura numero F002-0000101, ha sido aceptada', NULL, NULL, '4', '2', '2021-03-31 11:09:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('176', '2021-04-02', '1', '20505239262-RC-20210402-1', '202106805907778', '2021-03-16', '2021-03-16', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210402-1, ha sido aceptado', '2', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('177', '2021-04-02', '2', '20505239262-RC-20210402-2', '202106805907966', '2021-03-16', '2021-03-16', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210402-2, ha sido aceptado', '2', '1', '2021-04-02 21:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('178', '2021-04-02', '1', '20505239262-RA-20210402-1', '202106805908076', '2021-03-16', '2021-03-16', 'AF', '1', '0', NULL, NULL, 'El comprobante no puede ser dado de baja por exceder el plazo desde su fecha de recepcion - ', '2', '1', '2021-04-02 21:11:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('179', '2021-04-02', '3', '20505239262-RC-20210402-3', '202106805910613', '2021-03-17', '2021-03-17', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210402-3, ha sido aceptado', '2', '1', '2021-04-02 21:12:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('180', '2021-04-02', '2', '20505239262-RA-20210402-2', '202106805910756', '2021-03-17', '2021-03-17', 'AF', '1', '0', NULL, NULL, 'El comprobante no puede ser dado de baja por exceder el plazo desde su fecha de recepcion - ', '2', '1', '2021-04-02 21:12:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('181', '2021-04-02', '4', '20505239262-RC-20210402-4', '202106805916696', '2021-03-18', '2021-03-18', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210402-4, ha sido aceptado', '2', '1', '2021-04-02 21:13:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('182', '2021-04-02', '5', '20505239262-RC-20210402-5', '202106805918646', '2021-03-19', '2021-03-19', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210402-5, ha sido aceptado', '2', '1', '2021-04-02 21:14:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('183', '2021-04-02', '6', '20505239262-RC-20210402-6', '202106805921142', '2021-03-22', '2021-03-22', 'RB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210402-6, ha sido aceptado', '2', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('184', '2021-04-02', '7', '20505239262-RC-20210402-7', '202106805924510', '2021-03-25', '2021-03-25', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210402-7, ha sido aceptado', '2', '1', '2021-04-02 21:15:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('185', '2021-04-02', '8', '20505239262-RC-20210402-8', '202106805928265', '2021-03-26', '2021-03-26', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210402-8, ha sido aceptado', '2', '1', '2021-04-02 21:16:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('186', '2021-04-02', '9', '20505239262-RC-20210402-9', '202106805935219', '2021-03-31', '2021-03-31', 'RB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210402-9, ha sido aceptado', '2', '1', '2021-04-02 21:18:59', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('187', '2021-04-02', '10', '20505239262-RC-20210402-10', '202106805935422', '2021-03-31', '2021-03-31', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210402-10, ha sido aceptado', '2', '1', '2021-04-02 21:19:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('188', '2021-04-05', NULL, '20505239262-01-F002-0000102', NULL, '2021-04-05', '2021-04-05', 'RF', '1', '0', 'La Factura numero F002-0000102, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-05 16:06:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('189', '2021-04-05', NULL, '20505239262-01-F002-0000103', NULL, '2021-04-05', '2021-04-05', 'RF', '1', '0', 'La Factura numero F002-0000103, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-05 16:18:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('190', '2021-04-05', NULL, '20505239262-01-F002-0000104', NULL, '2021-04-05', '2021-04-05', 'RF', '1', '0', 'La Factura numero F002-0000104, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-05 16:21:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('191', '2021-04-06', '1', '20505239262-RC-20210406-1', '202106818744781', '2021-03-11', '2021-03-11', 'RB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210406-1, ha sido aceptado', '2', '1', '2021-04-06 09:26:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('192', '2021-04-06', '2', '20505239262-RC-20210406-2', '202106818746526', '2021-03-12', '2021-03-12', 'RB', '1', '0', NULL, NULL, NULL, '1', '1', '2021-04-06 09:26:30', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('193', '2021-04-06', '3', '20505239262-RC-20210406-3', '202106818779286', '2021-03-12', '2021-03-12', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210406-3, ha sido aceptado', '2', '1', '2021-04-06 09:34:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('194', '2021-04-06', '4', '20505239262-RC-20210406-4', '202106818841311', '2021-03-03', '2021-03-03', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210406-4, ha sido aceptado', '2', '1', '2021-04-06 09:47:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('195', '2021-04-06', NULL, '20505239262-01-F002-0000105', NULL, '2021-04-06', '2021-04-06', 'RF', '1', '0', 'La Factura numero F002-0000105, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-06 15:19:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('196', '2021-04-07', NULL, '20505239262-01-F002-0000106', NULL, '2021-04-07', '2021-04-07', 'RF', '1', '0', 'La Factura numero F002-0000106, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-07 10:23:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('197', '2021-04-07', NULL, '20505239262-01-F002-0000107', NULL, '2021-04-07', '2021-04-07', 'RF', '1', '0', 'La Factura numero F002-0000107, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-07 10:37:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('198', '2021-04-07', NULL, '20505239262-01-F002-0000108', NULL, '2021-04-07', '2021-04-07', 'RF', '1', '0', 'La Factura numero F002-0000108, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-07 16:00:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('199', '2021-04-08', NULL, '20505239262-01-F002-0000109', NULL, '2021-04-08', '2021-04-08', 'RF', '1', '0', 'La Factura numero F002-0000109, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-08 15:35:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('200', '2021-04-08', NULL, '20505239262-01-F002-0000110', NULL, '2021-04-08', '2021-04-08', 'RF', '1', '0', 'La Factura numero F002-0000110, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-08 15:38:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('201', '2021-04-09', NULL, '20505239262-01-F002-0000111', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000111, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 09:07:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('202', '2021-04-09', NULL, '20505239262-01-F002-0000112', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000112, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 09:25:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('203', '2021-04-09', NULL, '20505239262-01-F002-0000113', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000113, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 09:36:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('204', '2021-04-09', NULL, '20505239262-01-F002-0000114', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000114, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 09:41:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('205', '2021-04-09', NULL, '20505239262-01-F002-0000115', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000115, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 09:55:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('206', '2021-04-09', NULL, '20505239262-01-F002-0000116', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000116, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 10:08:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('207', '2021-04-09', NULL, '20505239262-01-F002-0000117', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000117, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 13:15:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('208', '2021-04-09', NULL, '20505239262-01-F002-0000118', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000118, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 13:15:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('209', '2021-04-09', NULL, '20505239262-01-F002-0000119', NULL, '2021-04-09', '2021-04-09', 'RF', '1', '0', 'La Factura numero F002-0000119, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-09 16:56:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('210', '2021-04-12', NULL, '20505239262-01-F002-0000120', NULL, '2021-04-12', '2021-04-12', 'RF', '1', '0', 'La Factura numero F002-0000120, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-12 09:58:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('211', '2021-04-12', NULL, '20505239262-01-F002-0000121', NULL, '2021-04-12', '2021-04-12', 'RF', '1', '0', 'La Factura numero F002-0000121, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-12 10:31:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('212', '2021-04-12', NULL, '20505239262-01-F002-0000122', NULL, '2021-04-12', '2021-04-12', 'RF', '1', '0', 'La Factura numero F002-0000122, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-12 10:36:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('213', '2021-04-12', NULL, '20505239262-01-F002-0000123', NULL, '2021-04-12', '2021-04-12', 'RF', '1', '0', 'La Factura numero F002-0000123, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-12 10:44:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('214', '2021-04-12', NULL, '20505239262-01-F002-0000124', NULL, '2021-04-12', '2021-04-12', 'RF', '1', '0', 'La Factura numero F002-0000124, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-12 11:03:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('215', '2021-04-12', NULL, '20505239262-01-F002-0000125', NULL, '2021-04-12', '2021-04-12', 'RF', '1', '0', 'La Factura numero F002-0000125, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-12 11:25:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('216', '2021-04-12', NULL, '20505239262-01-F002-0000126', NULL, '2021-04-12', '2021-04-12', 'RF', '1', '0', 'La Factura numero F002-0000126, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-12 11:45:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('217', '2021-04-13', NULL, '20505239262-01-F002-0000127', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000127, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 14:07:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('218', '2021-04-13', NULL, '20505239262-01-F002-0000128', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000128, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 14:11:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('219', '2021-04-13', NULL, '20505239262-01-F002-0000129', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000129, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 14:14:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('220', '2021-04-13', NULL, '20505239262-01-F002-0000130', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000130, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 14:17:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('221', '2021-04-13', NULL, '20505239262-01-F002-0000131', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000131, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 14:18:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('222', '2021-04-13', NULL, '20505239262-01-F002-0000132', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000132, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 14:20:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('223', '2021-04-13', NULL, '20505239262-01-F002-0000133', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000133, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 14:32:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('224', '2021-04-13', NULL, '20505239262-01-F002-0000134', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000134, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 15:01:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('225', '2021-04-13', NULL, '20505239262-01-F002-0000135', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000135, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 15:07:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('226', '2021-04-13', NULL, '20505239262-01-F002-0000136', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000136, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 15:09:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('227', '2021-04-13', NULL, '20505239262-01-F002-0000137', NULL, '2021-04-13', '2021-04-13', 'RF', '1', '0', 'La Factura numero F002-0000137, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-13 16:12:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('228', '2021-04-14', NULL, '20505239262-01-F002-0000138', NULL, '2021-04-14', '2021-04-14', 'RF', '1', '0', 'La Factura numero F002-0000138, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-14 09:28:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('229', '2021-04-14', NULL, '20505239262-01-F002-0000139', NULL, '2021-04-14', '2021-04-14', 'RF', '1', '0', 'La Factura numero F002-0000139, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-14 09:42:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('230', '2021-04-15', '1', '20505239262-RC-20210415-1', '202106872769775', '2021-04-05', '2021-04-05', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210415-1, ha sido aceptado', '2', '1', '2021-04-15 11:41:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('231', '2021-04-15', '2', '20505239262-RC-20210415-2', '202106872776226', '2021-04-06', '2021-04-06', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210415-2, ha sido aceptado', '2', '1', '2021-04-15 11:42:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('232', '2021-04-15', '3', '20505239262-RC-20210415-3', '202106872783003', '2021-04-07', '2021-04-07', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210415-3, ha sido aceptado', '2', '1', '2021-04-15 11:43:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('233', '2021-04-15', '4', '20505239262-RC-20210415-4', '202106872787877', '2021-04-08', '2021-04-08', 'RB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210415-4, ha sido aceptado', '2', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('234', '2021-04-15', '5', '20505239262-RC-20210415-5', '202106872788108', '2021-04-08', '2021-04-08', 'AB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210415-5, ha sido aceptado', '2', '1', '2021-04-15 11:44:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('235', '2021-04-15', '6', '20505239262-RC-20210415-6', '202106872793315', '2021-04-09', '2021-04-09', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210415-6, ha sido aceptado', '2', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('236', '2021-04-15', '7', '20505239262-RC-20210415-7', '202106872793496', '2021-04-09', '2021-04-09', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210415-7, ha sido aceptado', '2', '1', '2021-04-15 11:45:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('237', '2021-04-15', '1', '20505239262-RA-20210415-1', '202106872793607', '2021-04-09', '2021-04-09', 'AF', '1', '0', NULL, NULL, 'La Comunicacion de baja numero RA-20210415-1, ha sido aceptada', '2', '1', '2021-04-15 11:45:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('238', '2021-04-15', '8', '20505239262-RC-20210415-8', '202106872804005', '2021-04-12', '2021-04-12', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210415-8, ha sido aceptado', '2', '1', '2021-04-15 11:47:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('239', '2021-04-15', '9', '20505239262-RC-20210415-9', '202106872824462', '2021-04-13', '2021-04-13', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210415-9, ha sido aceptado', '2', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('240', '2021-04-15', '10', '20505239262-RC-20210415-10', '202106872824655', '2021-04-13', '2021-04-13', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210415-10, ha sido aceptado', '2', '1', '2021-04-15 11:50:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('241', '2021-04-15', '2', '20505239262-RA-20210415-2', '202106872824768', '2021-04-13', '2021-04-13', 'AF', '1', '0', NULL, NULL, 'La Comunicacion de baja numero\r\nRA-20210415-2, ha sido aceptada', '2', '1', '2021-04-15 11:50:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('242', '2021-04-15', NULL, '20505239262-01-F002-0000140', NULL, '2021-04-15', '2021-04-15', 'RF', '1', '0', 'La Factura numero F002-0000140, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-15 14:56:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('243', '2021-04-16', NULL, '20505239262-01-F002-0000141', NULL, '2021-04-16', '2021-04-16', 'RF', '1', '0', 'La Factura numero F002-0000141, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-16 14:01:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('244', '2021-04-16', NULL, '20505239262-01-F002-0000142', NULL, '2021-04-16', '2021-04-16', 'RF', '1', '0', 'La Factura numero F002-0000142, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-16 14:21:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('245', '2021-04-19', NULL, '20505239262-01-F002-0000143', NULL, '2021-04-19', '2021-04-19', 'RF', '1', '0000', NULL, NULL, NULL, '4', '2', '2021-04-19 12:38:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('246', '2021-04-19', '1', '20505239262-RC-20210419-1', '202106897377624', '2021-04-14', '2021-04-14', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210419-1, ha sido aceptado', '2', '1', '2021-04-19 15:05:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('247', '2021-04-19', '2', '20505239262-RC-20210419-2', '202106897379891', '2021-04-16', '2021-04-16', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210419-2, ha sido aceptado', '2', '1', '2021-04-19 15:05:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('248', '2021-04-20', NULL, '20505239262-01-F002-0000144', NULL, '2021-04-20', '2021-04-20', 'RF', '1', '0', 'La Factura numero F002-0000144, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-20 13:30:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('249', '2021-04-20', NULL, '20505239262-01-F002-0000145', NULL, '2021-04-20', '2021-04-20', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-04-20 13:36:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('250', '2021-04-20', NULL, '20505239262-01-F002-0000146', NULL, '2021-04-20', '2021-04-20', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-04-20 13:37:56', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('251', '2021-04-22', '1', '20505239262-RC-20210422-1', '202106915687407', '2021-04-19', '2021-04-19', 'RB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210422-1, ha sido aceptado', '2', '1', '2021-04-22 15:19:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('252', '2021-04-22', '2', '20505239262-RC-20210422-2', '202106915687787', '2021-04-19', '2021-04-19', 'AB', '1', '0', NULL, NULL, 'El Resumen de comprobantes\r\nnumero RC-20210422-2, ha sido aceptado', '2', '1', '2021-04-22 15:19:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('253', '2021-04-22', '3', '20505239262-RC-20210422-3', '202106915698494', '2021-04-20', '2021-04-20', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210422-3, ha sido aceptado', '2', '1', '2021-04-22 15:21:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('254', '2021-04-23', NULL, '20505239262-01-F002-0000147', NULL, '2021-04-23', '2021-04-23', 'RF', '1', '0', 'La Factura numero F002-0000147, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-23 09:55:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('255', '2021-04-23', NULL, '20505239262-01-F002-0000148', NULL, '2021-04-23', '2021-04-23', 'RF', '1', '0', 'La Factura numero F002-0000148, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-23 10:37:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('256', '2021-04-23', NULL, '20505239262-01-F002-0000149', NULL, '2021-04-23', '2021-04-23', 'RF', '1', '0', 'La Factura numero F002-0000149, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-23 11:20:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('257', '2021-04-23', NULL, '20505239262-01-F002-0000150', NULL, '2021-04-23', '2021-04-23', 'RF', '1', '0', 'La Factura numero F002-0000150, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-23 16:03:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('258', '2021-04-26', NULL, '20505239262-01-F002-0000151', NULL, '2021-04-26', '2021-04-26', 'RF', '1', '0', 'La Factura numero F002-0000151, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-26 11:45:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('259', '2021-04-26', NULL, '20505239262-01-F002-0000152', NULL, '2021-04-26', '2021-04-26', 'RF', '1', '0', 'La Factura numero F002-0000152, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-26 15:34:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('260', '2021-04-27', NULL, '20505239262-01-F002-0000153', NULL, '2021-04-27', '2021-04-27', 'RF', '1', '0', 'La Factura numero F002-0000153, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-27 09:49:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('261', '2021-04-27', NULL, '20505239262-01-F002-0000154', NULL, '2021-04-27', '2021-04-27', 'RF', '1', '0', 'La Factura numero F002-0000154, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-27 10:10:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('262', '2021-04-29', NULL, '20505239262-01-F002-0000155', NULL, '2021-04-29', '2021-04-29', 'RF', '1', '0', 'La Factura numero F002-0000155, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-29 12:43:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('263', '2021-04-29', '1', '20505239262-RC-20210429-1', '202106952902572', '2021-04-27', '2021-04-27', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210429-1, ha sido aceptado', '2', '1', '2021-04-29 12:44:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('264', '2021-04-29', NULL, '20505239262-01-F002-0000156', NULL, '2021-04-29', '2021-04-29', 'RF', '1', '0', 'La Factura numero F002-0000156, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-29 12:46:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('265', '2021-04-29', NULL, '20505239262-01-F002-0000157', NULL, '2021-04-29', '2021-04-29', 'RF', '1', '0', 'La Factura numero F002-0000157, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-29 12:51:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('266', '2021-04-29', NULL, '20505239262-01-F002-0000158', NULL, '2021-04-29', '2021-04-29', 'RF', '1', '0', 'La Factura numero F002-0000158, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-29 13:01:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('267', '2021-04-29', NULL, '20505239262-01-F002-0000159', NULL, '2021-04-29', '2021-04-29', 'RF', '1', '0', 'La Factura numero F002-0000159, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-29 15:10:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('268', '2021-04-29', NULL, '20505239262-01-F002-0000160', NULL, '2021-04-29', '2021-04-29', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-04-29 15:17:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('269', '2021-04-29', NULL, '20505239262-01-F002-0000161', NULL, '2021-04-29', '2021-04-29', 'RF', '1', '0', 'La Factura numero F002-0000161, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-29 16:42:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('270', '2021-04-30', NULL, '20505239262-01-F002-0000162', NULL, '2021-04-30', '2021-04-30', 'RF', '1', '0', 'La Factura numero F002-0000162, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-30 08:37:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('271', '2021-04-30', NULL, '20505239262-01-F002-0000163', NULL, '2021-04-30', '2021-04-30', 'RF', '1', '0', 'La Factura numero F002-0000163, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-30 08:43:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('272', '2021-04-30', NULL, '20505239262-01-F002-0000164', NULL, '2021-04-30', '2021-04-30', 'RF', '1', '0', 'La Factura numero F002-0000164, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-30 10:09:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('273', '2021-04-30', NULL, '20505239262-01-F002-0000165', NULL, '2021-04-30', '2021-04-30', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-04-30 11:11:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('274', '2021-04-30', NULL, '20505239262-01-F002-0000166', NULL, '2021-04-30', '2021-04-30', 'RF', '0', NULL, NULL, NULL, NULL, '3', '2', '2021-04-30 11:16:49', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('275', '2021-04-30', NULL, '20505239262-01-F002-0000166', NULL, '2021-04-30', '2021-04-30', 'RF', '1', '0', 'La Factura numero F002-0000166, ha sido aceptada', NULL, NULL, '4', '1', '2021-04-30 11:35:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('276', '2021-04-30', '1', '20505239262-RC-20210430-1', '202106959303877', '2021-04-23', '2021-04-23', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210430-1, ha sido aceptado', '2', '1', '2021-04-30 11:38:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('277', '2021-04-30', '2', '20505239262-RC-20210430-2', '202106959304075', '2021-04-23', '2021-04-23', 'AB', '1', '0', NULL, NULL, 'El Comprobante RC-20210430-2, ha sido aceptado', '2', '1', '2021-04-30 11:38:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('278', '2021-04-30', NULL, '20505239262-01-F002-0000167', NULL, '2021-04-30', '2021-04-30', 'RF', '1', '0', 'La Factura numero F002-0000167, ha sido aceptada', NULL, NULL, '4', '2', '2021-04-30 15:16:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('279', '2021-05-02', '1', '20505239262-RC-20210502-1', '202106970161774', '2021-04-30', '2021-04-30', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210502-1, ha sido aceptado', '2', '1', '2021-05-02 11:49:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('280', '2021-05-02', '1', '20505239262-RA-20210502-1', '202106970161870', '2021-04-30', '2021-04-30', 'AF', '1', '0', NULL, NULL, 'La Comunicacion de baja numero RA-20210502-1, ha sido aceptada', '2', '1', '2021-05-02 11:49:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('281', '2021-05-03', NULL, '20505239262-01-F002-0000168', NULL, '2021-05-03', '2021-05-03', 'RF', '1', '0', 'La Factura numero F002-0000168, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-03 11:38:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('282', '2021-05-04', NULL, '20505239262-01-F002-0000169', NULL, '2021-05-04', '2021-05-04', 'RF', '1', '0', 'La Factura numero F002-0000169, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-04 12:15:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('283', '2021-05-05', NULL, '20505239262-01-F002-0000170', NULL, '2021-05-05', '2021-05-05', 'RF', '1', '0', 'La Factura numero F002-0000170, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-05 17:14:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('284', '2021-05-06', '1', '20505239262-RC-20210506-1', '202106995152397', '2021-05-04', '2021-05-04', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210506-1, ha sido aceptado', '2', '1', '2021-05-06 14:58:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('285', '2021-05-06', NULL, '20505239262-01-F002-0000171', NULL, '2021-05-06', '2021-05-06', 'RF', '1', '0', 'La Factura numero F002-0000171, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-06 15:03:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('286', '2021-05-06', NULL, '20505239262-01-F002-0000172', NULL, '2021-05-06', '2021-05-06', 'RF', '1', '0', 'La Factura numero F002-0000172, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-06 15:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('287', '2021-05-10', NULL, '20505239262-01-F002-0000173', NULL, '2021-05-10', '2021-05-10', 'RF', '1', '0', 'La Factura numero F002-0000173, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-10 09:20:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('288', '2021-05-10', NULL, '20505239262-01-F002-0000174', NULL, '2021-05-10', '2021-05-10', 'RF', '1', '0', 'La Factura numero F002-0000174, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-10 12:09:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('289', '2021-05-10', NULL, '20505239262-01-F002-0000175', NULL, '2021-05-10', '2021-05-10', 'RF', '1', '0', 'La Factura numero F002-0000175, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-10 15:06:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('290', '2021-05-10', NULL, '20505239262-01-F002-0000146', NULL, '2021-05-10', '2021-05-10', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2021-05-10 15:46:59', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('291', '2021-05-11', NULL, '20505239262-01-F002-0000146', NULL, '2021-05-11', '2021-05-11', 'RF', '1', '0', 'La Factura numero F002-0000146, ha sido aceptada', NULL, NULL, '4', '1', '2021-05-11 13:08:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('292', '2021-05-11', NULL, '20505239262-01-F002-0000176', NULL, '2021-05-11', '2021-05-11', 'RF', '1', '0', 'La Factura numero F002-0000176, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-11 15:22:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('293', '2021-05-12', '1', '20505239262-RC-20210512-1', '202107034954458', '2021-05-05', '2021-05-05', 'RB', '0', 'no definido', NULL, NULL, NULL, '1', '1', '2021-05-12 12:25:47', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('294', '2021-05-12', '1', '20505239262-RA-20210512-1', '202107034957357', '2021-05-08', '2021-05-10', 'AF', '1', '0', NULL, NULL, 'La Comunicacion de baja numero RA-20210512-1, ha sido aceptada', '2', '1', '2021-05-12 12:26:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('295', '2021-05-12', '2', '20505239262-RA-20210512-2', '202107034957502', '2021-05-10', '2021-05-10', 'AF', '1', '0', NULL, NULL, 'La Comunicacion de baja numero RA-20210512-2, ha sido aceptada', '2', '1', '2021-05-12 12:26:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('296', '2021-05-12', NULL, '20505239262-01-F002-0000177', NULL, '2021-05-12', '2021-05-12', 'RF', '1', '0', 'La Factura numero F002-0000177, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-12 14:14:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('297', '2021-05-12', NULL, '20505239262-01-F002-0000178', NULL, '2021-05-12', '2021-05-12', 'RF', '1', '0', 'La Factura numero F002-0000178, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-12 14:27:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('298', '2021-05-12', NULL, '20505239262-01-F002-0000179', NULL, '2021-05-12', '2021-05-12', 'RF', '1', '0', 'La Factura numero F002-0000179, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-12 17:32:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('299', '2021-05-13', NULL, '20505239262-01-F002-0000180', NULL, '2021-05-13', '2021-05-13', 'RF', '1', '0', 'La Factura numero F002-0000180, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-13 14:45:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('300', '2021-05-13', NULL, '20505239262-01-F002-0000181', NULL, '2021-05-13', '2021-05-13', 'RF', '1', '0', 'La Factura numero F002-0000181, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-13 17:12:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('301', '2021-05-17', NULL, '20505239262-01-F002-0000182', NULL, '2021-05-17', '2021-05-17', 'RF', '1', '0', 'La Factura numero F002-0000182, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-17 12:28:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('302', '2021-05-19', NULL, '20505239262-01-F002-0000183', NULL, '2021-05-19', '2021-05-19', 'RF', '1', '0', 'La Factura numero F002-0000183, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-19 10:22:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('303', '2021-05-19', NULL, '20505239262-01-F002-0000184', NULL, '2021-05-19', '2021-05-19', 'RF', '1', '0000', NULL, NULL, NULL, '4', '2', '2021-05-19 10:46:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('304', '2021-05-19', NULL, '20505239262-01-F002-0000185', NULL, '2021-05-19', '2021-05-19', 'RF', '1', '0', 'La Factura numero F002-0000185, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-19 10:54:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('305', '2021-05-19', '1', '20505239262-RC-20210519-1', '202107078230892', '2021-05-13', '2021-05-13', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210519-1, ha sido aceptado', '2', '1', '2021-05-19 11:46:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('306', '2021-05-19', '2', '20505239262-RC-20210519-2', '202107078233525', '2021-05-14', '2021-05-14', 'RB', '1', '0', NULL, NULL, 'El Comprobante RC-20210519-2, ha sido aceptado', '2', '1', '2021-05-19 11:46:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('307', '2021-05-19', NULL, '20505239262-01-F002-0000186', NULL, '2021-05-19', '2021-05-19', 'RF', '1', '0', 'La Factura numero F002-0000186, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-19 14:11:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('308', '2021-05-19', NULL, '20505239262-01-F002-0000187', NULL, '2021-05-19', '2021-05-19', 'RF', '1', '0', 'La Factura numero F002-0000187, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-19 17:29:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('309', '2021-05-20', NULL, '20505239262-01-F002-0000188', NULL, '2021-05-20', '2021-05-20', 'RF', '1', '0', 'La Factura numero F002-0000188, ha sido aceptada', NULL, NULL, '4', '2', '2021-05-20 10:29:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('310', '2021-05-22', '1', '20505239262-RC-20210522-1', '202107095615163', '2021-05-05', '2021-05-05', 'RB', '1', '0', NULL, NULL, NULL, '2', '1', '2021-05-22 09:31:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('311', '2021-10-16', NULL, '12345678912-01-F002-0000191', NULL, '2021-10-16', '2021-10-16', 'RF', '1', '0', 'La Factura numero F002-0000191, ha sido aceptada', NULL, NULL, '4', '1', '2021-10-16 15:21:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('312', '2021-10-16', NULL, '12345678912-01-F002-0000192', NULL, '2021-10-16', '2021-10-16', 'RF', '1', '0', 'La Factura numero F002-0000192, ha sido aceptada', NULL, NULL, '4', '1', '2021-10-16 15:22:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('313', '2021-10-18', NULL, '12345678912-01-F002-0000193', NULL, '2021-10-18', '2021-10-18', 'RF', '0', 'soap-env:Client', 'El valor de venta por ítem difiere de los importes consignados. - Detalle: xxx.xxx.xxx value=\'ticket: 1634584207893 error: Error en la linea: 1: 3271 (nodo: \"cac:InvoiceLine/cbc:LineExtensionAmount\" valor: \"610.17\")\'', NULL, NULL, '3', '1', '2021-10-18 14:10:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('314', '2022-05-16', NULL, '12345678912-01-F002-0000194', NULL, '2022-05-16', '2022-05-16', 'RF', '1', '0', 'La Factura numero F002-0000194, ha sido aceptada', NULL, NULL, '4', '1', '2022-05-16 13:36:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('315', '2022-12-16', NULL, '12345678912-01-F002-0000195', NULL, '2022-12-16', '2022-12-16', 'RF', '1', '0', 'La Factura numero F002-0000195, ha sido aceptada', NULL, NULL, '4', '1', '2022-12-16 11:17:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('316', '2022-12-29', NULL, '12345678912-01-F002-0000196', NULL, '2022-12-29', '2022-12-29', 'RF', '1', '0', 'La Factura numero F002-0000196, ha sido aceptada', NULL, NULL, '4', '1', '2022-12-29 02:21:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('317', '2022-12-29', NULL, '12345678912-01-F002-0000197', NULL, '2022-12-29', '2022-12-29', 'RF', '1', '0', 'La Factura numero F002-0000197, ha sido aceptada', NULL, NULL, '4', '1', '2022-12-29 22:35:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('318', '2022-12-29', NULL, '12345678912-01-F002-0000198', NULL, '2022-12-29', '2022-12-29', 'RF', '1', '0', 'La Factura numero F002-0000198, ha sido aceptada', NULL, NULL, '4', '1', '2022-12-29 22:55:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('319', '2023-01-04', NULL, '12345678912-01-F002-0000199', NULL, '2023-01-04', '2023-01-04', 'RF', '1', '0', 'La Factura numero F002-0000199, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-04 22:16:55', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('320', '2023-01-04', NULL, '12345678912-01-F002-0000200', NULL, '2023-01-04', '2023-01-04', 'RF', '1', '0', 'La Factura numero F002-0000200, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-04 23:58:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('321', '2023-01-05', NULL, '12345678912-01-F002-0000201', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000201, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 00:00:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('322', '2023-01-05', NULL, '12345678912-01-F002-0000202', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000202, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 00:01:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('323', '2023-01-05', NULL, '12345678912-01-F002-0000203', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000203, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 00:02:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('324', '2023-01-05', NULL, '12345678912-01-F002-0000204', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000204, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 00:03:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('325', '2023-01-05', NULL, '12345678912-01-F002-0000205', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000205, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 11:40:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('326', '2023-01-05', NULL, '12345678912-01-F002-0000206', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000206, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 19:07:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('327', '2023-01-05', NULL, '12345678912-01-F002-0000207', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000207, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 19:08:24', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('328', '2023-01-05', NULL, '12345678912-01-F002-0000208', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000208, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 20:58:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('329', '2023-01-05', NULL, '12345678912-01-F002-0000209', NULL, '2023-01-05', '2023-01-05', 'RF', '1', '0', 'La Factura numero F002-0000209, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-05 21:07:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('330', '2023-01-27', NULL, '12345678912-01-F002-0000210', NULL, '2023-01-27', '2023-01-27', 'RF', '1', '0', 'La Factura numero F002-0000210, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-27 14:40:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('331', '2023-01-27', NULL, '12345678912-01-F002-0000211', NULL, '2023-01-27', '2023-01-27', 'RF', '1', '0', 'La Factura numero F002-0000211, ha sido aceptada', NULL, NULL, '4', '1', '2023-01-27 14:42:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('332', '2023-01-28', '1', '12345678912-RC-20230128-1', '1674925868646', '2023-01-27', '2023-01-27', 'RB', '1', '0', NULL, NULL, 'El Resumen diario RC-20230128-1, ha sido aceptado', '2', '1', '2023-01-28 12:21:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('333', '2023-06-28', NULL, '10123456781-01-F002-0000212', NULL, '2023-06-28', '2023-06-28', 'RF', '0', NULL, NULL, NULL, NULL, '3', '1', '2023-06-28 17:51:16', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('334', '2023-06-28', NULL, '10123456781-01-F002-0000212', NULL, '2023-06-28', '2023-06-28', 'RF', '1', '0', 'La Factura numero F002-0000212, ha sido aceptada', NULL, NULL, '4', '1', '2023-06-28 17:56:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('335', '2023-06-28', NULL, '10123456781-01-F002-0000213', NULL, '2023-06-28', '2023-06-28', 'RF', '1', '0', 'La Factura numero F002-0000213, ha sido aceptada', NULL, NULL, '4', '1', '2023-06-28 17:56:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('336', '2023-06-28', NULL, '10123456781-01-F002-0000214', NULL, '2023-06-28', '2023-06-28', 'RF', '1', '0', 'La Factura numero F002-0000214, ha sido aceptada', NULL, NULL, '4', '1', '2023-06-28 17:58:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('337', '2023-06-28', NULL, '10123456781-01-F002-0000215', NULL, '2023-06-28', '2023-06-28', 'RF', '0', 'soap-env:Client', 'Si el tipo de transaccion es al Credito debe existir al menos información de una cuota de pago - Detalle: xxx.xxx.xxx value=\'ticket: 1687993119148 error: INFO : 3249 (nodo: \"/\" valor: \"\")\'', NULL, NULL, '3', '1', '2023-06-28 18:02:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('338', '2023-06-28', NULL, '10123456781-01-F002-0000216', NULL, '2023-06-28', '2023-06-28', 'RF', '1', '0', 'La Factura numero F002-0000216, ha sido aceptada', NULL, NULL, '4', '1', '2023-06-28 18:11:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('339', '2023-06-28', NULL, '10123456781-01-F002-0000217', NULL, '2023-06-28', '2023-06-28', 'RF', '1', '0', 'La Factura numero F002-0000217, ha sido aceptada', NULL, NULL, '4', '1', '2023-06-28 18:28:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('340', '2023-06-28', NULL, '10123456781-01-F002-0000218', NULL, '2023-06-28', '2023-06-28', 'RF', '1', '0', 'La Factura numero F002-0000218, ha sido aceptada', NULL, NULL, '4', '1', '2023-06-28 18:41:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('341', '2023-06-29', NULL, '10123456781-01-F002-0000219', NULL, '2023-06-29', '2023-06-29', 'RF', '0', 'soap-env:Client', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688094248260 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'', NULL, NULL, '3', '1', '2023-06-29 22:08:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('342', '2023-06-30', NULL, '10123456781-01-F002-0000220', NULL, '2023-06-30', '2023-06-30', 'RF', '1', '0', 'La Factura numero F002-0000220, ha sido aceptada', NULL, NULL, '4', '1', '2023-06-30 11:03:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('343', '2023-06-30', NULL, '10123456781-01-F002-0000221', NULL, '2023-06-30', '2023-06-30', 'RF', '1', '0', 'La Factura numero F002-0000221, ha sido aceptada', NULL, NULL, '4', '1', '2023-06-30 11:14:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('344', '2023-07-03', NULL, '10123456781-01-F002-0000222', NULL, '2023-07-03', '2023-07-03', 'RF', '1', '0', 'La Factura numero F002-0000222, ha sido aceptada', NULL, NULL, '4', '1', '2023-07-03 21:32:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('345', '2023-07-03', NULL, '10123456781-01-F002-0000223', NULL, '2023-07-03', '2023-07-03', 'RF', '1', '0', 'La Factura numero F002-0000223, ha sido aceptada', NULL, NULL, '4', '1', '2023-07-03 21:34:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('346', '2023-07-03', NULL, '10123456781-01-F002-0000224', NULL, '2023-07-03', '2023-07-03', 'RF', '1', '0', 'La Factura numero F002-0000224, ha sido aceptada', NULL, NULL, '4', '1', '2023-07-03 21:37:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('347', '2023-07-03', NULL, '10123456781-01-F002-0000225', NULL, '2023-07-03', '2023-07-03', 'RF', '0', 'soap-env:Client', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688438153041 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'', NULL, NULL, '3', '1', '2023-07-03 21:40:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('348', '2023-07-03', NULL, '10123456781-01-F002-0000226', NULL, '2023-07-03', '2023-07-03', 'RF', '0', 'soap-env:Client', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688438157809 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'', NULL, NULL, '3', '1', '2023-07-03 21:40:10', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('349', '2023-07-06', NULL, '10123456781-01-F002-0000227', NULL, '2023-07-06', '2023-07-06', 'RF', '0', 'soap-env:Client', 'El importe total de impuestos por línea no coincide con la sumatoria de los impuestos por línea. - Detalle: xxx.xxx.xxx value=\'ticket: 1688695797683 error: Error en la linea: 1: 3292 (nodo: \"cac:TaxTotal/cbc:TaxAmount\" valor: \"3.74\")\'', NULL, NULL, '3', '1', '2023-07-06 21:14:15', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('350', '2023-07-06', NULL, '10123456781-01-F002-0000227', NULL, '2023-07-06', '2023-07-06', 'RF', '0', 'soap-env:Client', 'El dato ingresado en TaxAmount no cumple con el formato establecido - Detalle: xxx.xxx.xxx value=\'ticket: 1688697549182 error: Error Tributo 9996: 2048 (nodo: \"cac:TaxSubtotal/cbc:TaxAmount\" valor: \"3.740\")\'', NULL, NULL, '3', '1', '2023-07-06 21:43:26', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('351', '2023-07-06', NULL, '10123456781-01-F002-0000227', NULL, '2023-07-06', '2023-07-06', 'RF', '0', 'soap-env:Client', 'El dato ingresado en TaxAmount no cumple con el formato establecido - Detalle: xxx.xxx.xxx value=\'ticket: 1688697630239 error: Error Tributo 9996: 2048 (nodo: \"cac:TaxSubtotal/cbc:TaxAmount\" valor: \"3.740\")\'', NULL, NULL, '3', '1', '2023-07-06 21:44:47', NULL, NULL, '0');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('352', '2023-07-06', NULL, '10123456781-01-F002-0000227', NULL, '2023-07-06', '2023-07-06', 'RF', '1', '0', 'La Factura numero F002-0000227, ha sido aceptada', NULL, NULL, '4', '1', '2023-07-06 21:54:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('353', '2023-07-06', NULL, '10123456781-01-F002-0000226', NULL, '2023-07-06', '2023-07-06', 'RF', '0', 'soap-env:Client', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688698219873 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.50\")\'', NULL, NULL, '3', '1', '2023-07-06 21:54:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('354', '2023-07-06', NULL, '10123456781-01-F002-0000228', NULL, '2023-07-06', '2023-07-06', 'RF', '1', '0', 'La Factura numero F002-0000228, ha sido aceptada', NULL, NULL, '4', '1', '2023-07-06 21:58:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('355', '2023-08-09', NULL, '10123456781-01-F002-0000229', NULL, '2023-08-09', '2023-08-09', 'RF', '1', '0', 'La Factura numero F002-0000229, ha sido aceptada', NULL, NULL, '4', '1', '2023-08-09 02:05:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice` (`id`, `issue_date`, `number`, `file_name`, `ticket`, `reference_date`, `processed_date`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status_ticket`, `status`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('356', '2023-08-09', NULL, '10123456781-01-F002-0000230', NULL, '2023-08-09', '2023-08-09', 'RF', '1', '0', 'SUNAT: La Factura numero F002-0000230, ha sido aceptada', NULL, NULL, '4', '1', '2023-08-09 02:13:50', NULL, NULL, '1');


#
# TABLE STRUCTURE FOR: tec_send_invoice_gr
#

DROP TABLE IF EXISTS `tec_send_invoice_gr`;

CREATE TABLE `tec_send_invoice_gr` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `referral_guide_id` int(11) NOT NULL,
  `issue_date` date NOT NULL,
  `file_name` varchar(50) NOT NULL,
  `flg_response` int(11) NOT NULL,
  `error_code` varchar(15) NOT NULL,
  `response_descrip` varchar(1000) NOT NULL,
  `observations` text,
  `status` int(11) NOT NULL,
  `user_Create` int(11) NOT NULL,
  `date_Create` datetime NOT NULL,
  `user_upgrade` int(11) DEFAULT NULL,
  `date_upgrade` datetime DEFAULT NULL,
  `estado` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=197 DEFAULT CHARSET=utf8;

INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('1', '1', '2021-02-01', '20505239262-09-T001-0000259', '0', 'soap-env:Client', '2325', NULL, '3', '2', '2021-02-01 14:53:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('2', '2', '2021-02-01', '20505239262-09-T001-0000260', '0', 'soap-env:Client', '0109', NULL, '3', '2', '2021-02-01 18:53:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('3', '5', '2021-02-03', '20505239262-09-T001-0000263', '1', '0', 'El Comprobante  numero T001-263, ha sido aceptado', NULL, '4', '2', '2021-02-03 14:55:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('4', '6', '2021-02-04', '20505239262-09-T001-0000264', '1', '0', 'El Comprobante  numero T001-264, ha sido aceptado', NULL, '4', '2', '2021-02-04 13:02:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('5', '7', '2021-02-04', '20505239262-09-T001-0000265', '1', '0', 'El Comprobante  numero T001-265, ha sido aceptado', NULL, '4', '2', '2021-02-04 15:58:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('6', '8', '2021-02-04', '20505239262-09-T001-0000266', '1', '0', 'El Comprobante  numero T001-266, ha sido aceptado', NULL, '4', '2', '2021-02-04 16:20:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('7', '9', '2021-02-04', '20505239262-09-T001-0000267', '1', '0', 'El Comprobante  numero T001-267, ha sido aceptado', NULL, '4', '2', '2021-02-04 17:19:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('8', '10', '2021-02-05', '20505239262-09-T001-0000268', '1', '0', 'El Comprobante  numero T001-268, ha sido aceptado', NULL, '4', '2', '2021-02-05 13:47:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('9', '11', '2021-02-05', '20505239262-09-T001-0000269', '1', '0', 'El Comprobante  numero T001-269, ha sido aceptado', NULL, '4', '2', '2021-02-05 14:31:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('10', '12', '2021-02-05', '20505239262-09-T001-0000270', '1', '0', 'El Comprobante  numero T001-270, ha sido aceptado', NULL, '4', '2', '2021-02-05 21:39:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('11', '13', '2021-02-09', '20505239262-09-T001-0000271', '1', '0', 'El Comprobante  numero T001-271, ha sido aceptado', NULL, '4', '2', '2021-02-09 13:50:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('12', '14', '2021-02-09', '20505239262-09-T001-0000272', '1', '0', 'El Comprobante  numero T001-272, ha sido aceptado', NULL, '4', '2', '2021-02-09 21:14:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('13', '15', '2021-02-09', '20505239262-09-T001-0000273', '1', '0', 'El Comprobante  numero T001-273, ha sido aceptado', NULL, '4', '2', '2021-02-09 22:47:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('14', '16', '2021-02-09', '20505239262-09-T001-0000274', '1', '0', 'El Comprobante  numero T001-274, ha sido aceptado', NULL, '4', '2', '2021-02-09 23:05:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('15', '17', '2021-02-10', '20505239262-09-T001-0000275', '0', 'soap-env:Client', '2778', NULL, '3', '2', '2021-02-10 21:10:55', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('16', '18', '2021-02-11', '20505239262-09-T001-0000276', '1', '0', 'El Comprobante  numero T001-276, ha sido aceptado', NULL, '4', '2', '2021-02-11 13:24:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('17', '19', '2021-02-11', '20505239262-09-T001-0000277', '1', '0', 'El Comprobante  numero T001-277, ha sido aceptado', NULL, '4', '2', '2021-02-11 14:46:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('18', '20', '2021-02-11', '20505239262-09-T001-0000278', '1', '0', 'El Comprobante  numero T001-278, ha sido aceptado', NULL, '4', '2', '2021-02-11 14:51:23', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('19', '21', '2021-02-11', '20505239262-09-T001-0000279', '1', '0', 'El Comprobante  numero T001-279, ha sido aceptado', NULL, '4', '2', '2021-02-11 14:56:09', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('20', '22', '2021-02-11', '20505239262-09-T001-0000280', '0', 'soap-env:Client', '2017', NULL, '3', '2', '2021-02-11 15:02:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('21', '23', '2021-02-11', '20505239262-09-T001-0000281', '1', '0', 'El Comprobante  numero T001-281, ha sido aceptado', NULL, '4', '2', '2021-02-11 16:47:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('22', '24', '2021-02-12', '20505239262-09-T001-0000282', '1', '0', 'El Comprobante  numero T001-282, ha sido aceptado', NULL, '4', '2', '2021-02-12 13:40:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('23', '25', '2021-02-12', '20505239262-09-T001-0000283', '1', '0', 'El Comprobante  numero T001-283, ha sido aceptado', NULL, '4', '2', '2021-02-12 18:35:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('24', '26', '2021-02-12', '20505239262-09-T001-0000284', '1', '0', 'El Comprobante  numero T001-284, ha sido aceptado', NULL, '4', '2', '2021-02-12 21:36:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('25', '27', '2021-02-15', '20505239262-09-T001-0000285', '1', '0', 'El Comprobante  numero T001-285, ha sido aceptado', NULL, '4', '2', '2021-02-15 22:05:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('26', '28', '2021-02-18', '20505239262-09-T001-0000286', '1', '0', 'El Comprobante  numero T001-286, ha sido aceptado', NULL, '4', '2', '2021-02-18 13:47:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('27', '29', '2021-02-18', '20505239262-09-T001-0000287', '1', '0', 'El Comprobante  numero T001-287, ha sido aceptado', NULL, '4', '2', '2021-02-18 16:15:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('28', '30', '2021-02-18', '20505239262-09-T001-0000288', '1', '0', 'El Comprobante  numero T001-288, ha sido aceptado', NULL, '4', '2', '2021-02-18 16:29:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('29', '31', '2021-02-18', '20505239262-09-T001-0000289', '1', '0', 'El Comprobante  numero T001-289, ha sido aceptado', NULL, '4', '2', '2021-02-18 16:33:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('30', '32', '2021-02-19', '20505239262-09-T001-0000290', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-02-19 13:56:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('31', '33', '2021-02-22', '20505239262-09-T001-0000291', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-02-22 14:01:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('32', '34', '2021-02-22', '20505239262-09-T001-0000292', '1', '0', 'El Comprobante  numero T001-292, ha sido aceptado', NULL, '4', '2', '2021-02-22 16:42:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('33', '35', '2021-02-23', '20505239262-09-T001-0000293', '1', '0', 'El Comprobante  numero T001-293, ha sido aceptado', NULL, '4', '2', '2021-02-23 13:45:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('34', '36', '2021-02-23', '20505239262-09-T001-0000294', '1', '0', 'El Comprobante  numero T001-294, ha sido aceptado', NULL, '4', '2', '2021-02-23 15:43:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('35', '37', '2021-02-23', '20505239262-09-T001-0000295', '1', '0', 'El Comprobante  numero T001-295, ha sido aceptado', NULL, '4', '2', '2021-02-23 21:13:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('36', '38', '2021-02-23', '20505239262-09-T001-0000296', '1', '0', 'El Comprobante  numero T001-296, ha sido aceptado', NULL, '4', '2', '2021-02-23 21:31:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('37', '39', '2021-02-24', '20505239262-09-T001-0000297', '0', 'soap-env:Client', '2778', NULL, '3', '2', '2021-02-24 21:18:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('38', '40', '2021-02-26', '20505239262-09-T001-0000298', '1', '0', 'El Comprobante  numero T001-298, ha sido aceptado', NULL, '4', '2', '2021-02-26 19:07:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('39', '41', '2021-03-02', '20505239262-09-T001-0000299', '1', '0', 'El Comprobante  numero T001-299, ha sido aceptado', NULL, '4', '2', '2021-03-02 14:44:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('40', '42', '2021-03-03', '20505239262-09-T001-0000300', '1', '0', 'El Comprobante  numero T001-300, ha sido aceptado', NULL, '4', '2', '2021-03-03 13:33:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('41', '43', '2021-03-04', '20505239262-09-T001-0000301', '1', '0', 'El Comprobante  numero T001-301, ha sido aceptado', NULL, '4', '2', '2021-03-04 15:12:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('42', '44', '2021-03-04', '20505239262-09-T001-0000302', '1', '0', 'El Comprobante  numero T001-302, ha sido aceptado', NULL, '4', '2', '2021-03-04 15:22:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('43', '45', '2021-03-05', '20505239262-09-T001-0000303', '1', '0', 'El Comprobante  numero T001-303, ha sido aceptado', NULL, '4', '2', '2021-03-05 16:11:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('44', '46', '2021-03-05', '20505239262-09-T001-0000304', '1', '0', 'El Comprobante  numero T001-304, ha sido aceptado', NULL, '4', '2', '2021-03-05 16:19:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('45', '47', '2021-03-05', '20505239262-09-T001-0000305', '1', '0', 'El Comprobante  numero T001-305, ha sido aceptado', NULL, '4', '2', '2021-03-05 16:24:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('46', '48', '2021-03-05', '20505239262-09-T001-0000306', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-05 22:06:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('47', '49', '2021-03-09', '20505239262-09-T001-0000307', '1', '0', 'El Comprobante  numero T001-307, ha sido aceptado', NULL, '4', '2', '2021-03-09 19:40:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('48', '50', '2021-03-10', '20505239262-09-T001-0000308', '1', '0', 'El Comprobante  numero T001-308, ha sido aceptado', NULL, '4', '2', '2021-03-10 16:30:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('49', '51', '2021-03-10', '20505239262-09-T001-0000309', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-10 17:36:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('50', '52', '2021-03-10', '20505239262-09-T001-0000310', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-10 17:43:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('51', '53', '2021-03-10', '20505239262-09-T001-0000311', '0', 'soap-env:Client', '2776', NULL, '3', '2', '2021-03-10 22:45:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('52', '54', '2021-03-11', '20505239262-09-T001-0000312', '1', '0', 'El Comprobante  numero T001-312, ha sido aceptado', NULL, '4', '2', '2021-03-11 14:39:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('53', '55', '2021-03-17', '20505239262-09-T001-0000313', '1', '0', 'El Comprobante  numero T001-313, ha sido aceptado', NULL, '4', '2', '2021-03-17 18:58:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('54', '56', '2021-03-17', '20505239262-09-T001-0000314', '1', '0', 'El Comprobante  numero T001-314, ha sido aceptado', NULL, '4', '2', '2021-03-17 18:59:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('55', '57', '2021-03-17', '20505239262-09-T001-0000315', '1', '0', 'El Comprobante  numero T001-315, ha sido aceptado', NULL, '4', '2', '2021-03-17 19:21:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('56', '58', '2021-03-18', '20505239262-09-T001-0000316', '1', '0', 'El Comprobante  numero T001-316, ha sido aceptado', NULL, '4', '2', '2021-03-18 15:49:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('57', '59', '2021-03-18', '20505239262-09-T001-0000317', '0', 'soap-env:Client', '2778', NULL, '3', '2', '2021-03-18 18:31:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('58', '60', '2021-03-18', '20505239262-09-T001-0000318', '1', '0', 'El Comprobante  numero T001-318, ha sido aceptado', NULL, '4', '2', '2021-03-18 20:35:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('59', '61', '2021-03-22', '20505239262-09-T001-0000319', '1', '0', 'El Comprobante  numero T001-319, ha sido aceptado', NULL, '4', '2', '2021-03-22 18:17:55', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('60', '62', '2021-03-22', '20505239262-09-T001-0000320', '1', '0', 'El Comprobante  numero T001-320, ha sido aceptado', NULL, '4', '2', '2021-03-22 18:28:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('61', '63', '2021-03-22', '20505239262-09-T001-0000321', '1', '0', 'El Comprobante  numero T001-321, ha sido aceptado', NULL, '4', '2', '2021-03-22 18:37:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('62', '64', '2021-03-22', '20505239262-09-T001-0000322', '1', '0', 'El Comprobante  numero T001-322, ha sido aceptado', NULL, '4', '2', '2021-03-22 18:40:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('63', '65', '2021-03-24', '20505239262-09-T001-0000323', '1', '0', 'El Comprobante  numero T001-323, ha sido aceptado', NULL, '4', '2', '2021-03-24 15:44:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('64', '66', '2021-03-25', '20505239262-09-T001-0000324', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-25 15:21:23', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('65', '67', '2021-03-25', '20505239262-09-T001-0000325', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-25 16:27:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('66', '68', '2021-03-25', '20505239262-09-T001-0000326', '1', '0', 'El Comprobante  numero T001-326, ha sido aceptado', NULL, '4', '2', '2021-03-25 17:13:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('67', '69', '2021-03-25', '20505239262-09-T001-0000327', '1', '0', 'El Comprobante  numero T001-327, ha sido aceptado', NULL, '4', '2', '2021-03-25 18:35:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('68', '70', '2021-03-25', '20505239262-09-T001-0000328', '1', '0', 'El Comprobante  numero T001-328, ha sido aceptado', NULL, '4', '2', '2021-03-25 18:40:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('69', '71', '2021-03-25', '20505239262-09-T001-0000329', '1', '0', 'El Comprobante  numero T001-329, ha sido aceptado', NULL, '4', '2', '2021-03-25 20:25:59', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('70', '72', '2021-03-25', '20505239262-09-T001-0000330', '1', '0', 'El Comprobante  numero T001-330, ha sido aceptado', NULL, '4', '2', '2021-03-25 20:27:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('71', '73', '2021-03-25', '20505239262-09-T001-0000331', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-25 22:32:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('72', '74', '2021-03-26', '20505239262-09-T001-0000332', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-26 14:03:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('73', '75', '2021-03-26', '20505239262-09-T001-0000333', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-26 20:47:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('74', '76', '2021-03-26', '20505239262-09-T001-0000334', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-26 20:57:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('75', '77', '2021-03-26', '20505239262-09-T001-0000335', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-26 21:04:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('76', '78', '2021-03-26', '20505239262-09-T001-0000336', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-26 21:07:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('77', '79', '2021-03-27', '20505239262-09-T001-0000337', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-27 12:30:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('78', '80', '2021-03-27', '20505239262-09-T001-0000338', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-27 14:15:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('79', '81', '2021-03-27', '20505239262-09-T001-0000339', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-27 21:56:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('80', '82', '2021-03-29', '20505239262-09-T001-0000340', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 13:28:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('81', '83', '2021-03-29', '20505239262-09-T001-0000341', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 13:32:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('82', '84', '2021-03-29', '20505239262-09-T001-0000342', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 13:39:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('83', '85', '2021-03-29', '20505239262-09-T001-0000343', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 13:50:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('84', '86', '2021-03-29', '20505239262-09-T001-0000344', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 15:16:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('85', '87', '2021-03-29', '20505239262-09-T001-0000345', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 15:48:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('86', '88', '2021-03-29', '20505239262-09-T001-0000346', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 16:53:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('87', '89', '2021-03-29', '20505239262-09-T001-0000347', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 17:04:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('88', '90', '2021-03-29', '20505239262-09-T001-0000348', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 17:20:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('89', '91', '2021-03-29', '20505239262-09-T001-0000349', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 17:52:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('90', '92', '2021-03-29', '20505239262-09-T001-0000350', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 19:02:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('91', '93', '2021-03-29', '20505239262-09-T001-0000351', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 20:46:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('92', '94', '2021-03-29', '20505239262-09-T001-0000352', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-29 21:30:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('93', '95', '2021-03-30', '20505239262-09-T001-0000353', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-30 15:57:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('94', '96', '2021-03-30', '20505239262-09-T001-0000354', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-30 17:05:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('95', '97', '2021-03-30', '20505239262-09-T001-0000355', '0', 'soap-env:Client', '2778', NULL, '3', '2', '2021-03-30 18:08:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('96', '98', '2021-03-30', '20505239262-09-T001-0000356', '0', 'soap-env:Client', '2778', NULL, '3', '2', '2021-03-30 18:58:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('97', '99', '2021-03-30', '20505239262-09-T001-0000357', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-30 21:01:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('98', '100', '2021-03-30', '20505239262-09-T001-0000358', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-30 21:18:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('99', '101', '2021-03-30', '20505239262-09-T001-0000359', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-30 21:59:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('100', '102', '2021-03-30', '20505239262-09-T001-0000360', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-30 22:01:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('101', '103', '2021-03-31', '20505239262-09-T001-0000361', '1', '0', 'El Comprobante  numero T001-361, ha sido aceptado', NULL, '4', '2', '2021-03-31 14:01:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('102', '104', '2021-03-31', '20505239262-09-T001-0000362', '1', '0', 'El Comprobante  numero T001-362, ha sido aceptado', NULL, '4', '2', '2021-03-31 14:21:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('103', '105', '2021-03-31', '20505239262-09-T001-0000363', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-31 14:23:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('104', '106', '2021-03-31', '20505239262-09-T001-0000364', '1', '0', 'El Comprobante  numero T001-364, ha sido aceptado', NULL, '4', '2', '2021-03-31 14:30:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('105', '107', '2021-03-31', '20505239262-09-T001-0000365', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-31 14:59:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('106', '108', '2021-03-31', '20505239262-09-T001-0000366', '1', '0', 'El Comprobante  numero T001-366, ha sido aceptado', NULL, '4', '2', '2021-03-31 16:11:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('107', '109', '2021-03-31', '20505239262-09-T001-0000367', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-31 16:25:24', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('108', '110', '2021-03-31', '20505239262-09-T001-0000368', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-31 17:01:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('109', '111', '2021-03-31', '20505239262-09-T001-0000369', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-03-31 17:48:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('110', '112', '2021-03-31', '20505239262-09-T001-0000370', '1', '0', 'El Comprobante  numero T001-370, ha sido aceptado', NULL, '4', '2', '2021-03-31 19:50:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('111', '113', '2021-04-05', '20505239262-09-T001-0000371', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-05 18:04:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('112', '114', '2021-04-05', '20505239262-09-T001-0000372', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-05 22:26:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('113', '115', '2021-04-06', '20505239262-09-T001-0000373', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-06 13:20:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('114', '116', '2021-04-06', '20505239262-09-T001-0000374', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-06 13:36:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('115', '117', '2021-04-06', '20505239262-09-T001-0000375', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-06 13:54:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('116', '118', '2021-04-06', '20505239262-09-T001-0000376', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-06 20:04:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('117', '120', '2021-04-06', '20505239262-09-T001-0000378', '1', '0', 'El Comprobante  numero T001-378, ha sido aceptado', NULL, '4', '2', '2021-04-06 20:37:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('118', '121', '2021-04-07', '20505239262-09-T001-0000379', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-07 13:24:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('119', '122', '2021-04-07', '20505239262-09-T001-0000380', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-07 14:17:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('120', '123', '2021-04-07', '20505239262-09-T001-0000381', '1', '0', 'El Comprobante  numero T001-381, ha sido aceptado', NULL, '4', '2', '2021-04-07 15:30:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('121', '124', '2021-04-07', '20505239262-09-T001-0000382', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-07 16:44:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('122', '125', '2021-04-07', '20505239262-09-T001-0000383', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-07 18:08:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('123', '126', '2021-04-07', '20505239262-09-T001-0000384', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-07 20:35:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('124', '127', '2021-04-08', '20505239262-09-T001-0000385', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-08 13:26:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('125', '128', '2021-04-08', '20505239262-09-T001-0000386', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-08 14:07:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('126', '129', '2021-04-08', '20505239262-09-T001-0000387', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-08 14:16:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('127', '130', '2021-04-08', '20505239262-09-T001-0000388', '0', 'soap-env:Client', '2554', NULL, '3', '2', '2021-04-08 18:59:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('128', '131', '2021-04-08', '20505239262-09-T001-0000389', '1', '0', 'El Comprobante  numero T001-389, ha sido aceptado', NULL, '4', '2', '2021-04-08 19:13:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('129', '132', '2021-04-09', '20505239262-09-T001-0000390', '1', '0', 'El Comprobante  numero T001-390, ha sido aceptado', NULL, '4', '2', '2021-04-09 14:27:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('130', '133', '2021-04-09', '20505239262-09-T001-0000391', '1', '0', 'El Comprobante  numero T001-391, ha sido aceptado', NULL, '4', '2', '2021-04-09 14:38:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('131', '134', '2021-04-09', '20505239262-09-T001-0000392', '1', '0', 'El Comprobante  numero T001-392, ha sido aceptado', NULL, '4', '2', '2021-04-09 14:44:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('132', '136', '2021-04-09', '20505239262-09-T001-0000394', '1', '0', 'El Comprobante  numero T001-394, ha sido aceptado', NULL, '4', '2', '2021-04-09 15:09:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('133', '137', '2021-04-09', '20505239262-09-T001-0000395', '1', '0', 'El Comprobante  numero T001-395, ha sido aceptado', NULL, '4', '2', '2021-04-09 15:18:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('134', '138', '2021-04-09', '20505239262-09-T001-0000396', '1', '0', 'El Comprobante  numero T001-396, ha sido aceptado', NULL, '4', '2', '2021-04-09 15:20:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('135', '139', '2021-04-09', '20505239262-09-T001-0000397', '1', '0', 'El Comprobante  numero T001-397, ha sido aceptado', NULL, '4', '2', '2021-04-09 15:22:59', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('136', '140', '2021-04-09', '20505239262-09-T001-0000398', '1', '0', 'El Comprobante  numero T001-398, ha sido aceptado', NULL, '4', '2', '2021-04-09 15:26:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('137', '141', '2021-04-09', '20505239262-09-T001-0000399', '1', '0', 'El Comprobante  numero T001-399, ha sido aceptado', NULL, '4', '2', '2021-04-09 15:28:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('138', '142', '2021-04-12', '20505239262-09-T001-0000400', '1', '0', 'El Comprobante  numero T001-400, ha sido aceptado', NULL, '4', '2', '2021-04-12 16:49:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('139', '143', '2021-04-13', '20505239262-09-T001-0000401', '1', '0', 'El Comprobante  numero T001-401, ha sido aceptado', NULL, '4', '2', '2021-04-13 21:09:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('140', '145', '2021-04-19', '20505239262-09-T001-0000403', '1', '0', 'El Comprobante  numero T001-403, ha sido aceptado', NULL, '4', '2', '2021-04-19 18:01:59', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('141', '146', '2021-04-20', '20505239262-09-T001-0000404', '1', '0', 'El Comprobante  numero T001-404, ha sido aceptado', NULL, '4', '2', '2021-04-20 18:41:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('142', '147', '2021-04-23', '20505239262-09-T001-0000405', '1', '0', 'El Comprobante  numero T001-405, ha sido aceptado', NULL, '4', '2', '2021-04-23 15:02:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('143', '148', '2021-04-23', '20505239262-09-T001-0000406', '1', '0', 'El Comprobante  numero T001-406, ha sido aceptado', NULL, '4', '2', '2021-04-23 15:45:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('144', '149', '2021-04-23', '20505239262-09-T001-0000407', '1', '0', 'El Comprobante  numero T001-407, ha sido aceptado', NULL, '4', '2', '2021-04-23 16:24:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('145', '150', '2021-04-23', '20505239262-09-T001-0000408', '1', '0', 'El Comprobante  numero T001-408, ha sido aceptado', NULL, '4', '2', '2021-04-23 16:37:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('146', '151', '2021-04-23', '20505239262-09-T001-0000409', '1', '0', 'El Comprobante  numero T001-409, ha sido aceptado', NULL, '4', '2', '2021-04-23 17:26:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('147', '152', '2021-04-23', '20505239262-09-T001-0000410', '1', '0', 'El Comprobante  numero T001-410, ha sido aceptado', NULL, '4', '2', '2021-04-23 17:45:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('148', '153', '2021-04-23', '20505239262-09-T001-0000411', '1', '0', 'El Comprobante  numero T001-411, ha sido aceptado', NULL, '4', '2', '2021-04-23 21:07:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('149', '154', '2021-04-26', '20505239262-09-T001-0000412', '1', '0', 'El Comprobante  numero T001-412, ha sido aceptado', NULL, '4', '2', '2021-04-26 16:49:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('150', '155', '2021-04-26', '20505239262-09-T001-0000413', '1', '0', 'El Comprobante  numero T001-413, ha sido aceptado', NULL, '4', '2', '2021-04-26 20:37:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('151', '156', '2021-04-27', '20505239262-09-T001-0000414', '1', '0', 'El Comprobante  numero T001-414, ha sido aceptado', NULL, '4', '2', '2021-04-27 14:54:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('152', '157', '2021-04-27', '20505239262-09-T001-0000415', '1', '0', 'El Comprobante  numero T001-415, ha sido aceptado', NULL, '4', '2', '2021-04-27 15:16:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('153', '159', '2021-04-28', '20505239262-09-T001-0000417', '1', '0', 'El Comprobante  numero T001-417, ha sido aceptado', NULL, '4', '2', '2021-04-28 17:53:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('154', '160', '2021-04-29', '20505239262-09-T001-0000418', '1', '0', 'El Comprobante  numero T001-418, ha sido aceptado', NULL, '4', '2', '2021-04-29 17:47:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('155', '161', '2021-04-29', '20505239262-09-T001-0000419', '1', '0', 'El Comprobante  numero T001-419, ha sido aceptado', NULL, '4', '2', '2021-04-29 17:52:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('156', '162', '2021-04-29', '20505239262-09-T001-0000420', '1', '0', 'El Comprobante  numero T001-420, ha sido aceptado', NULL, '4', '2', '2021-04-29 17:59:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('157', '163', '2021-04-29', '20505239262-09-T001-0000421', '1', '0', 'El Comprobante  numero T001-421, ha sido aceptado', NULL, '4', '2', '2021-04-29 18:02:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('158', '164', '2021-04-29', '20505239262-09-T001-0000422', '1', '0', 'El Comprobante  numero T001-422, ha sido aceptado', NULL, '4', '2', '2021-04-29 20:13:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('159', '165', '2021-04-29', '20505239262-09-T001-0000423', '1', '0', 'El Comprobante  numero T001-423, ha sido aceptado', NULL, '4', '2', '2021-04-29 21:44:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('160', '166', '2021-04-30', '20505239262-09-T001-0000424', '1', '0', 'El Comprobante  numero T001-424, ha sido aceptado', NULL, '4', '2', '2021-04-30 13:39:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('161', '167', '2021-04-30', '20505239262-09-T001-0000425', '1', '0', 'El Comprobante  numero T001-425, ha sido aceptado', NULL, '4', '2', '2021-04-30 13:45:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('162', '168', '2021-05-03', '20505239262-09-T001-0000426', '1', '0', 'El Comprobante  numero T001-426, ha sido aceptado', NULL, '4', '2', '2021-05-03 16:42:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('163', '169', '2021-05-03', '20505239262-09-T001-0000427', '1', '0', 'El Comprobante  numero T001-427, ha sido aceptado', NULL, '4', '2', '2021-05-03 20:31:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('164', '170', '2021-05-05', '20505239262-09-T001-0000428', '0', 'soap-env:Client', '4000', NULL, '3', '1', '2021-05-05 14:39:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('165', '171', '2021-05-05', '20505239262-09-T001-0000429', '1', '0', 'El Comprobante  numero T001-429, ha sido aceptado', NULL, '4', '2', '2021-05-05 17:47:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('166', '172', '2021-05-05', '20505239262-09-T001-0000430', '1', '0', 'El Comprobante  numero T001-430, ha sido aceptado', NULL, '4', '2', '2021-05-05 17:47:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('167', '173', '2021-05-05', '20505239262-09-T001-0000431', '1', '0', 'El Comprobante  numero T001-431, ha sido aceptado', NULL, '4', '2', '2021-05-05 21:16:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('168', '174', '2021-05-05', '20505239262-09-T001-0000432', '1', '0', 'El Comprobante  numero T001-432, ha sido aceptado', NULL, '4', '2', '2021-05-05 22:15:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('169', '175', '2021-05-06', '20505239262-09-T001-0000433', '1', '0', 'El Comprobante  numero T001-433, ha sido aceptado', NULL, '4', '2', '2021-05-06 20:08:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('170', '176', '2021-05-06', '20505239262-09-T001-0000434', '1', '0', 'El Comprobante  numero T001-434, ha sido aceptado', NULL, '4', '2', '2021-05-06 20:13:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('171', '177', '2021-05-11', '20505239262-09-T001-0000435', '1', '0', 'El Comprobante  numero T001-435, ha sido aceptado', NULL, '4', '2', '2021-05-11 20:24:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('172', '178', '2021-05-12', '20505239262-09-T001-0000436', '1', '0', 'El Comprobante  numero T001-436, ha sido aceptado', NULL, '4', '2', '2021-05-12 19:16:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('173', '179', '2021-05-12', '20505239262-09-T001-0000437', '1', '0', 'El Comprobante  numero T001-437, ha sido aceptado', NULL, '4', '2', '2021-05-12 19:29:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('174', '180', '2021-05-12', '20505239262-09-T001-0000438', '1', '0', 'El Comprobante  numero T001-438, ha sido aceptado', NULL, '4', '2', '2021-05-12 22:39:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('175', '181', '2021-05-13', '20505239262-09-T001-0000439', '1', '0', 'El Comprobante  numero T001-439, ha sido aceptado', NULL, '4', '2', '2021-05-13 19:49:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('176', '182', '2021-05-13', '20505239262-09-T001-0000440', '1', '0', 'El Comprobante  numero T001-440, ha sido aceptado', NULL, '4', '2', '2021-05-13 21:15:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('177', '183', '2021-05-13', '20505239262-09-T001-0000441', '1', '0', 'El Comprobante  numero T001-441, ha sido aceptado', NULL, '4', '2', '2021-05-13 22:14:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('178', '184', '2021-05-13', '20505239262-09-T001-0000442', '1', '0', 'El Comprobante  numero T001-442, ha sido aceptado', NULL, '4', '2', '2021-05-13 22:23:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('179', '185', '2021-05-14', '20505239262-09-T001-0000443', '1', '0', 'El Comprobante  numero T001-443, ha sido aceptado', NULL, '4', '2', '2021-05-14 13:59:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('180', '187', '2021-05-14', '20505239262-09-T001-0000445', '1', '0', 'El Comprobante  numero T001-445, ha sido aceptado', NULL, '4', '2', '2021-05-14 14:16:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('181', '188', '2021-05-14', '20505239262-09-T001-0000446', '1', '0', 'El Comprobante  numero T001-446, ha sido aceptado', NULL, '4', '2', '2021-05-14 14:37:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('182', '189', '2021-05-14', '20505239262-09-T001-0000447', '1', '0', 'El Comprobante  numero T001-447, ha sido aceptado', NULL, '4', '2', '2021-05-14 14:45:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('183', '190', '2021-05-14', '20505239262-09-T001-0000448', '1', '0', 'El Comprobante  numero T001-448, ha sido aceptado', NULL, '4', '2', '2021-05-14 19:17:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('184', '191', '2021-05-14', '20505239262-09-T001-0000449', '1', '0', 'El Comprobante  numero T001-449, ha sido aceptado', NULL, '4', '2', '2021-05-14 19:36:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('185', '192', '2021-05-17', '20505239262-09-T001-0000450', '1', '0', 'El Comprobante  numero T001-450, ha sido aceptado', NULL, '4', '2', '2021-05-17 17:32:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('186', '193', '2021-05-19', '20505239262-09-T001-0000451', '1', '0', 'El Comprobante  numero T001-451, ha sido aceptado', NULL, '4', '2', '2021-05-19 19:14:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('187', '194', '2021-05-20', '20505239262-09-T001-0000452', '1', '0', 'El Comprobante  numero T001-452, ha sido aceptado', NULL, '4', '2', '2021-05-20 14:43:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('188', '195', '2021-05-20', '20505239262-09-T001-0000453', '1', '0', 'El Comprobante  numero T001-453, ha sido aceptado', NULL, '4', '2', '2021-05-20 22:30:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('189', '196', '2021-05-21', '20505239262-09-T001-0000454', '1', '0', 'El Comprobante  numero T001-454, ha sido aceptado', NULL, '4', '2', '2021-05-21 15:45:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('190', '197', '2021-05-21', '20505239262-09-T001-0000455', '1', '0', 'El Comprobante  numero T001-455, ha sido aceptado', NULL, '4', '2', '2021-05-21 16:06:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('191', '198', '2021-05-21', '20505239262-09-T001-0000456', '1', '0', 'El Comprobante  numero T001-456, ha sido aceptado', NULL, '4', '2', '2021-05-21 21:59:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('192', '199', '2021-08-13', '12345678912-09-T001-0000457', '1', '0', 'El Comprobante numero T001-0000457 ha sido aceptado', NULL, '4', '1', '2021-08-13 16:07:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('193', '207', '2023-04-17', '10123456781-09-T001-465', '1', '0', 'ACEPTADA', NULL, '4', '1', '2023-04-18 03:09:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('194', '206', '2023-04-17', '10123456781-09-T001-464', '1', '0', 'ACEPTADA', NULL, '4', '1', '2023-04-18 03:01:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('195', '205', '2023-04-17', '10123456781-09-T001-463', '1', '0', 'ACEPTADA', NULL, '4', '1', '2023-04-18 02:59:59', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_gr` (`id`, `referral_guide_id`, `issue_date`, `file_name`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('196', '208', '2023-04-17', '10123456781-09-T001-466', '1', '0', 'ACEPTADA', NULL, '4', '1', '2023-04-18 04:10:59', NULL, NULL, '1');


#
# TABLE STRUCTURE FOR: tec_send_invoice_items
#

DROP TABLE IF EXISTS `tec_send_invoice_items`;

CREATE TABLE `tec_send_invoice_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `send_invoice_id` int(11) NOT NULL,
  `sale_id` int(11) NOT NULL,
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` datetime DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` datetime DEFAULT NULL,
  `estado` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=568 DEFAULT CHARSET=utf8;

INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('1', '1', '3', '2', '2021-01-28 14:07:21', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('2', '2', '5', '2', '2021-01-28 14:14:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('3', '3', '6', '2', '2021-01-28 14:44:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('4', '4', '7', '2', '2021-01-28 15:00:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('5', '5', '8', '2', '2021-01-28 15:03:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('6', '6', '15', '2', '2021-01-28 17:26:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('7', '7', '16', '2', '2021-01-28 17:35:37', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('8', '8', '16', '1', '2021-01-28 21:48:13', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('9', '9', '16', '1', '2021-01-28 21:57:36', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('10', '10', '16', '1', '2021-01-28 22:02:52', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('11', '11', '3', '1', '2021-01-28 22:17:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('12', '12', '16', '1', '2021-01-28 23:33:19', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('13', '13', '16', '1', '2021-01-29 09:24:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('14', '14', '18', '2', '2021-01-29 09:50:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('15', '15', '19', '2', '2021-01-29 13:37:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('16', '16', '20', '2', '2021-01-29 13:39:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('17', '17', '21', '2', '2021-01-29 13:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('18', '18', '22', '2', '2021-01-29 13:46:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('19', '19', '24', '2', '2021-02-01 10:36:03', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('20', '20', '24', '1', '2021-02-01 14:37:48', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('21', '21', '24', '1', '2021-02-01 15:08:07', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('22', '22', '24', '1', '2021-02-01 21:03:11', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('23', '23', '24', '1', '2021-02-02 15:33:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('24', '24', '28', '2', '2021-02-03 08:28:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('25', '25', '29', '2', '2021-02-03 09:12:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('26', '26', '30', '2', '2021-02-04 07:44:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('27', '27', '31', '2', '2021-02-04 09:21:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('28', '28', '34', '2', '2021-02-05 09:26:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('29', '29', '35', '2', '2021-02-05 09:45:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('30', '30', '36', '1', '2021-02-05 18:17:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('31', '31', '37', '2', '2021-02-08 10:43:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('32', '32', '38', '2', '2021-02-08 10:45:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('33', '33', '40', '2', '2021-02-08 15:34:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('34', '34', '41', '2', '2021-02-08 15:37:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('35', '35', '42', '2', '2021-02-08 16:23:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('36', '36', '1', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('37', '36', '2', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('38', '36', '4', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('39', '36', '9', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('40', '36', '10', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('41', '36', '11', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('42', '36', '12', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('43', '36', '13', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('44', '36', '14', '1', '2021-02-08 21:06:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('45', '37', '17', '1', '2021-02-08 21:07:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('46', '37', '23', '1', '2021-02-08 21:07:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('47', '38', '1', '1', '2021-02-08 21:07:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('48', '38', '2', '1', '2021-02-08 21:07:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('49', '38', '4', '1', '2021-02-08 21:07:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('50', '38', '9', '1', '2021-02-08 21:07:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('51', '38', '10', '1', '2021-02-08 21:07:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('52', '39', '17', '1', '2021-02-08 21:07:09', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('53', '40', '46', '2', '2021-02-09 08:48:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('54', '41', '25', '1', '2021-02-09 10:20:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('55', '42', '26', '1', '2021-02-09 10:22:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('56', '42', '27', '1', '2021-02-09 10:22:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('57', '43', '26', '1', '2021-02-09 10:22:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('58', '44', '32', '1', '2021-02-09 10:22:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('59', '44', '33', '1', '2021-02-09 10:22:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('60', '45', '39', '1', '2021-02-09 10:24:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('61', '46', '36', '1', '2021-02-09 10:24:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('62', '47', '50', '2', '2021-02-11 08:21:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('63', '48', '51', '2', '2021-02-11 08:39:14', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('64', '49', '52', '2', '2021-02-11 09:04:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('65', '50', '59', '2', '2021-02-11 09:29:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('66', '51', '51', '1', '2021-02-11 10:13:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('67', '52', '64', '2', '2021-02-11 11:45:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('68', '53', '84', '2', '2021-02-12 08:36:55', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('69', '54', '85', '2', '2021-02-12 15:31:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('70', '55', '86', '2', '2021-02-12 15:39:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('71', '56', '87', '2', '2021-02-12 16:11:55', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('72', '57', '89', '2', '2021-02-12 16:22:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('73', '58', '90', '2', '2021-02-12 16:26:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('74', '59', '91', '2', '2021-02-14 03:45:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('75', '60', '92', '2', '2021-02-14 03:52:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('76', '61', '95', '2', '2021-02-15 16:37:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('77', '62', '97', '2', '2021-02-15 16:41:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('78', '63', '99', '2', '2021-02-16 16:46:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('79', '64', '43', '1', '2021-02-16 22:08:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('80', '64', '44', '1', '2021-02-16 22:08:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('81', '64', '45', '1', '2021-02-16 22:08:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('82', '64', '47', '1', '2021-02-16 22:08:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('83', '65', '48', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('84', '65', '49', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('85', '65', '53', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('86', '65', '54', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('87', '65', '55', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('88', '65', '56', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('89', '65', '57', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('90', '65', '58', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('91', '65', '60', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('92', '65', '61', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('93', '65', '62', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('94', '65', '63', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('95', '65', '65', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('96', '65', '66', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('97', '65', '67', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('98', '65', '68', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('99', '65', '69', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('100', '65', '70', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('101', '65', '71', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('102', '65', '72', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('103', '65', '73', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('104', '65', '74', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('105', '65', '75', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('106', '65', '76', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('107', '65', '77', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('108', '65', '78', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('109', '65', '79', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('110', '65', '80', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('111', '65', '81', '1', '2021-02-16 22:10:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('112', '66', '11', '1', '2021-02-16 22:10:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('113', '66', '12', '1', '2021-02-16 22:10:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('114', '66', '13', '1', '2021-02-16 22:10:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('115', '66', '14', '1', '2021-02-16 22:10:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('116', '67', '23', '1', '2021-02-16 22:10:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('117', '68', '25', '1', '2021-02-16 22:10:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('118', '69', '27', '1', '2021-02-16 22:10:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('119', '70', '32', '1', '2021-02-16 22:10:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('120', '70', '33', '1', '2021-02-16 22:10:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('121', '71', '39', '1', '2021-02-16 22:10:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('122', '72', '43', '1', '2021-02-16 22:10:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('123', '72', '44', '1', '2021-02-16 22:10:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('124', '72', '45', '1', '2021-02-16 22:10:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('125', '72', '47', '1', '2021-02-16 22:10:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('126', '73', '48', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('127', '73', '49', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('128', '73', '53', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('129', '73', '54', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('130', '73', '55', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('131', '73', '56', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('132', '73', '57', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('133', '73', '58', '1', '2021-02-16 22:10:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('134', '74', '82', '1', '2021-02-16 22:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('135', '74', '83', '1', '2021-02-16 22:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('136', '74', '88', '1', '2021-02-16 22:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('137', '75', '88', '1', '2021-02-16 22:11:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('138', '76', '86', '1', '2021-02-16 22:11:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('139', '77', '93', '1', '2021-02-16 22:15:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('140', '77', '94', '1', '2021-02-16 22:15:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('141', '77', '96', '1', '2021-02-16 22:15:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('142', '78', '94', '1', '2021-02-16 22:15:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('143', '79', '105', '2', '2021-02-18 08:31:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('144', '80', '112', '2', '2021-02-21 05:31:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('145', '81', '114', '2', '2021-02-22 11:37:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('146', '82', '117', '2', '2021-02-22 15:41:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('147', '83', '98', '1', '2021-02-23 00:08:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('148', '84', '100', '1', '2021-02-23 00:08:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('149', '84', '101', '1', '2021-02-23 00:08:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('150', '84', '102', '1', '2021-02-23 00:08:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('151', '84', '103', '1', '2021-02-23 00:08:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('152', '84', '104', '1', '2021-02-23 00:08:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('153', '85', '106', '1', '2021-02-23 00:08:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('154', '86', '118', '2', '2021-02-23 08:39:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('155', '87', '119', '2', '2021-02-23 10:34:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('156', '88', '120', '2', '2021-02-23 15:59:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('157', '89', '122', '2', '2021-02-24 16:11:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('158', '90', '125', '2', '2021-02-25 14:59:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('159', '91', '127', '2', '2021-02-25 17:02:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('160', '92', '134', '2', '2021-02-28 22:06:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('161', '93', '135', '2', '2021-02-28 22:08:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('162', '94', '140', '2', '2021-03-02 09:31:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('163', '95', '141', '2', '2021-03-02 09:34:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('164', '96', '142', '2', '2021-03-02 09:36:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('165', '97', '145', '2', '2021-03-03 06:40:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('166', '98', '146', '2', '2021-03-03 06:45:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('167', '99', '149', '2', '2021-03-03 07:20:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('168', '100', '151', '2', '2021-03-03 07:59:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('169', '101', '153', '2', '2021-03-03 08:31:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('170', '102', '154', '2', '2021-03-03 08:44:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('171', '103', '155', '2', '2021-03-04 10:07:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('172', '104', '157', '2', '2021-03-04 10:21:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('173', '105', '159', '2', '2021-03-05 11:07:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('174', '106', '160', '2', '2021-03-05 11:15:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('175', '107', '161', '2', '2021-03-05 11:22:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('176', '108', '162', '2', '2021-03-07 06:17:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('177', '109', '164', '2', '2021-03-07 06:49:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('178', '110', '166', '2', '2021-03-07 06:58:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('179', '111', '168', '2', '2021-03-07 07:21:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('180', '112', '171', '2', '2021-03-08 15:57:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('181', '113', '172', '2', '2021-03-08 16:01:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('182', '114', '173', '2', '2021-03-08 16:04:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('183', '115', '176', '2', '2021-03-09 14:31:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('184', '116', '177', '2', '2021-03-10 11:09:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('185', '117', '179', '2', '2021-03-10 12:47:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('186', '118', '180', '2', '2021-03-10 17:31:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('187', '119', '183', '2', '2021-03-11 09:34:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('188', '120', '185', '2', '2021-03-11 16:22:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('189', '121', '186', '2', '2021-03-11 16:26:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('190', '122', '107', '1', '2021-03-12 08:45:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('191', '122', '108', '1', '2021-03-12 08:45:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('192', '122', '109', '1', '2021-03-12 08:45:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('193', '122', '110', '1', '2021-03-12 08:45:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('194', '122', '111', '1', '2021-03-12 08:45:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('195', '122', '113', '1', '2021-03-12 08:45:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('196', '123', '115', '1', '2021-03-12 08:45:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('197', '123', '116', '1', '2021-03-12 08:45:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('198', '124', '121', '1', '2021-03-12 08:46:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('199', '125', '128', '1', '2021-03-12 08:46:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('200', '125', '129', '1', '2021-03-12 08:46:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('201', '125', '130', '1', '2021-03-12 08:46:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('202', '125', '131', '1', '2021-03-12 08:46:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('203', '125', '132', '1', '2021-03-12 08:46:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('204', '126', '123', '1', '2021-03-12 08:46:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('205', '126', '124', '1', '2021-03-12 08:46:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('206', '126', '126', '1', '2021-03-12 08:46:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('207', '127', '139', '1', '2021-03-12 08:47:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('208', '127', '133', '1', '2021-03-12 08:47:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('209', '127', '136', '1', '2021-03-12 08:47:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('210', '127', '137', '1', '2021-03-12 08:47:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('211', '127', '138', '1', '2021-03-12 08:47:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('212', '128', '133', '1', '2021-03-12 08:47:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('213', '129', '143', '1', '2021-03-12 08:47:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('214', '130', '156', '1', '2021-03-12 08:48:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('215', '130', '158', '1', '2021-03-12 08:48:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('216', '131', '152', '1', '2021-03-12 08:48:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('217', '132', '156', '1', '2021-03-12 08:48:09', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('218', '133', '163', '1', '2021-03-12 08:48:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('219', '133', '165', '1', '2021-03-12 08:48:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('220', '133', '167', '1', '2021-03-12 08:48:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('221', '133', '169', '1', '2021-03-12 08:48:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('222', '134', '170', '1', '2021-03-12 08:48:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('223', '135', '174', '1', '2021-03-12 08:48:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('224', '135', '175', '1', '2021-03-12 08:48:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('225', '136', '178', '1', '2021-03-12 08:48:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('226', '136', '181', '1', '2021-03-12 08:48:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('227', '136', '182', '1', '2021-03-12 08:48:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('228', '137', '144', '1', '2021-03-12 08:48:55', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('229', '137', '147', '1', '2021-03-12 08:48:55', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('230', '137', '148', '1', '2021-03-12 08:48:55', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('231', '137', '150', '1', '2021-03-12 08:48:55', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('232', '137', '152', '1', '2021-03-12 08:48:55', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('233', '138', '191', '2', '2021-03-12 15:27:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('234', '139', '192', '2', '2021-03-12 15:29:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('235', '140', '195', '2', '2021-03-16 11:50:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('236', '141', '200', '2', '2021-03-16 12:27:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('237', '142', '201', '2', '2021-03-16 12:29:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('238', '143', '211', '2', '2021-03-17 13:36:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('239', '144', '212', '2', '2021-03-17 13:47:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('240', '145', '213', '2', '2021-03-17 13:48:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('241', '146', '215', '2', '2021-03-17 13:51:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('242', '147', '216', '2', '2021-03-18 10:41:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('243', '148', '217', '2', '2021-03-18 13:13:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('244', '149', '220', '2', '2021-03-18 14:54:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('245', '150', '222', '2', '2021-03-18 15:11:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('246', '151', '223', '2', '2021-03-19 12:48:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('247', '152', '224', '2', '2021-03-19 12:59:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('248', '153', '225', '2', '2021-03-19 13:26:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('249', '154', '227', '2', '2021-03-22 12:24:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('250', '155', '228', '2', '2021-03-22 12:38:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('251', '156', '229', '2', '2021-03-22 12:53:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('252', '157', '234', '2', '2021-03-22 15:32:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('253', '158', '237', '2', '2021-03-22 15:49:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('254', '159', '245', '2', '2021-03-22 16:33:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('255', '160', '246', '2', '2021-03-24 10:41:23', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('256', '161', '247', '2', '2021-03-24 15:51:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('257', '162', '248', '2', '2021-03-24 15:56:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('258', '163', '249', '2', '2021-03-25 11:35:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('259', '164', '254', '2', '2021-03-25 13:31:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('260', '165', '255', '2', '2021-03-25 13:38:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('261', '166', '256', '2', '2021-03-25 15:17:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('262', '167', '258', '2', '2021-03-25 15:24:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('263', '168', '263', '2', '2021-03-26 09:21:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('264', '169', '267', '2', '2021-03-30 12:37:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('265', '170', '268', '2', '2021-03-30 13:03:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('266', '171', '269', '2', '2021-03-31 08:49:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('267', '172', '270', '2', '2021-03-31 08:58:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('268', '173', '271', '2', '2021-03-31 09:19:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('269', '174', '272', '2', '2021-03-31 09:27:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('270', '175', '274', '2', '2021-03-31 11:09:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('271', '176', '194', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('272', '176', '196', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('273', '176', '197', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('274', '176', '198', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('275', '176', '199', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('276', '176', '202', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('277', '176', '203', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('278', '176', '204', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('279', '176', '205', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('280', '176', '206', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('281', '176', '207', '1', '2021-04-02 21:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('282', '177', '194', '1', '2021-04-02 21:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('283', '177', '196', '1', '2021-04-02 21:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('284', '177', '197', '1', '2021-04-02 21:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('285', '177', '198', '1', '2021-04-02 21:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('286', '177', '199', '1', '2021-04-02 21:11:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('287', '178', '195', '1', '2021-04-02 21:11:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('288', '179', '208', '1', '2021-04-02 21:12:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('289', '179', '209', '1', '2021-04-02 21:12:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('290', '179', '210', '1', '2021-04-02 21:12:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('291', '180', '213', '1', '2021-04-02 21:12:19', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('292', '181', '218', '1', '2021-04-02 21:13:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('293', '181', '219', '1', '2021-04-02 21:13:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('294', '181', '221', '1', '2021-04-02 21:13:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('295', '182', '226', '1', '2021-04-02 21:14:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('296', '183', '230', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('297', '183', '231', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('298', '183', '232', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('299', '183', '233', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('300', '183', '235', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('301', '183', '236', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('302', '183', '238', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('303', '183', '239', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('304', '183', '240', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('305', '183', '241', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('306', '183', '242', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('307', '183', '243', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('308', '183', '244', '1', '2021-04-02 21:14:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('309', '184', '250', '1', '2021-04-02 21:15:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('310', '184', '251', '1', '2021-04-02 21:15:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('311', '184', '252', '1', '2021-04-02 21:15:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('312', '184', '253', '1', '2021-04-02 21:15:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('313', '184', '257', '1', '2021-04-02 21:15:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('314', '185', '259', '1', '2021-04-02 21:16:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('315', '185', '260', '1', '2021-04-02 21:16:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('316', '185', '261', '1', '2021-04-02 21:16:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('317', '185', '262', '1', '2021-04-02 21:16:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('318', '185', '264', '1', '2021-04-02 21:16:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('319', '185', '265', '1', '2021-04-02 21:16:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('320', '185', '266', '1', '2021-04-02 21:16:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('321', '186', '273', '1', '2021-04-02 21:18:59', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('322', '186', '275', '1', '2021-04-02 21:18:59', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('323', '187', '273', '1', '2021-04-02 21:19:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('324', '188', '276', '2', '2021-04-05 16:06:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('325', '189', '278', '2', '2021-04-05 16:18:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('326', '190', '279', '2', '2021-04-05 16:21:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('327', '191', '184', '1', '2021-04-06 09:26:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('328', '191', '187', '1', '2021-04-06 09:26:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('329', '191', '188', '1', '2021-04-06 09:26:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('330', '191', '189', '1', '2021-04-06 09:26:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('331', '192', '190', '1', '2021-04-06 09:26:30', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('332', '192', '193', '1', '2021-04-06 09:26:30', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('333', '193', '190', '1', '2021-04-06 09:34:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('334', '193', '193', '1', '2021-04-06 09:34:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('335', '194', '144', '1', '2021-04-06 09:47:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('336', '194', '147', '1', '2021-04-06 09:47:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('337', '194', '148', '1', '2021-04-06 09:47:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('338', '194', '150', '1', '2021-04-06 09:47:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('339', '195', '281', '2', '2021-04-06 15:19:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('340', '196', '285', '2', '2021-04-07 10:23:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('341', '197', '286', '2', '2021-04-07 10:37:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('342', '198', '287', '2', '2021-04-07 16:00:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('343', '199', '302', '2', '2021-04-08 15:35:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('344', '200', '303', '2', '2021-04-08 15:38:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('345', '201', '304', '2', '2021-04-09 09:07:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('346', '202', '307', '2', '2021-04-09 09:25:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('347', '203', '308', '2', '2021-04-09 09:36:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('348', '204', '309', '2', '2021-04-09 09:41:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('349', '205', '310', '2', '2021-04-09 09:55:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('350', '206', '315', '2', '2021-04-09 10:08:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('351', '207', '317', '2', '2021-04-09 13:15:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('352', '208', '318', '2', '2021-04-09 13:15:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('353', '209', '326', '2', '2021-04-09 16:56:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('354', '210', '327', '2', '2021-04-12 09:58:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('355', '211', '329', '2', '2021-04-12 10:31:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('356', '212', '331', '2', '2021-04-12 10:36:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('357', '213', '333', '2', '2021-04-12 10:44:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('358', '214', '335', '2', '2021-04-12 11:03:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('359', '215', '338', '2', '2021-04-12 11:25:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('360', '216', '339', '2', '2021-04-12 11:45:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('361', '217', '343', '2', '2021-04-13 14:07:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('362', '218', '345', '2', '2021-04-13 14:11:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('363', '219', '348', '2', '2021-04-13 14:14:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('364', '220', '350', '2', '2021-04-13 14:17:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('365', '221', '351', '2', '2021-04-13 14:18:01', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('366', '222', '352', '2', '2021-04-13 14:20:58', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('367', '223', '355', '2', '2021-04-13 14:32:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('368', '224', '358', '2', '2021-04-13 15:01:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('369', '225', '360', '2', '2021-04-13 15:07:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('370', '226', '361', '2', '2021-04-13 15:09:21', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('371', '227', '363', '2', '2021-04-13 16:12:18', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('372', '228', '364', '2', '2021-04-14 09:28:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('373', '229', '366', '2', '2021-04-14 09:42:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('374', '230', '277', '1', '2021-04-15 11:41:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('375', '230', '280', '1', '2021-04-15 11:41:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('376', '231', '282', '1', '2021-04-15 11:42:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('377', '231', '283', '1', '2021-04-15 11:42:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('378', '231', '284', '1', '2021-04-15 11:42:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('379', '232', '288', '1', '2021-04-15 11:43:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('380', '232', '289', '1', '2021-04-15 11:43:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('381', '232', '290', '1', '2021-04-15 11:43:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('382', '232', '291', '1', '2021-04-15 11:43:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('383', '232', '292', '1', '2021-04-15 11:43:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('384', '233', '293', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('385', '233', '294', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('386', '233', '295', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('387', '233', '296', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('388', '233', '297', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('389', '233', '298', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('390', '233', '299', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('391', '233', '300', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('392', '233', '301', '1', '2021-04-15 11:44:43', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('393', '234', '301', '1', '2021-04-15 11:44:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('394', '235', '305', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('395', '235', '306', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('396', '235', '311', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('397', '235', '312', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('398', '235', '313', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('399', '235', '314', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('400', '235', '316', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('401', '235', '319', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('402', '235', '320', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('403', '235', '321', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('404', '235', '322', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('405', '235', '323', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('406', '235', '324', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('407', '235', '325', '1', '2021-04-15 11:45:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('408', '236', '325', '1', '2021-04-15 11:45:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('409', '237', '317', '1', '2021-04-15 11:45:41', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('410', '238', '328', '1', '2021-04-15 11:47:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('411', '238', '330', '1', '2021-04-15 11:47:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('412', '238', '332', '1', '2021-04-15 11:47:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('413', '238', '334', '1', '2021-04-15 11:47:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('414', '238', '336', '1', '2021-04-15 11:47:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('415', '238', '337', '1', '2021-04-15 11:47:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('416', '239', '340', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('417', '239', '341', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('418', '239', '342', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('419', '239', '344', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('420', '239', '346', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('421', '239', '347', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('422', '239', '349', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('423', '239', '353', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('424', '239', '354', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('425', '239', '356', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('426', '239', '357', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('427', '239', '359', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('428', '239', '362', '1', '2021-04-15 11:50:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('429', '240', '353', '1', '2021-04-15 11:50:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('430', '240', '354', '1', '2021-04-15 11:50:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('431', '240', '356', '1', '2021-04-15 11:50:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('432', '240', '357', '1', '2021-04-15 11:50:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('433', '240', '359', '1', '2021-04-15 11:50:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('434', '240', '362', '1', '2021-04-15 11:50:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('435', '241', '352', '1', '2021-04-15 11:50:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('436', '241', '355', '1', '2021-04-15 11:50:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('437', '241', '358', '1', '2021-04-15 11:50:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('438', '241', '360', '1', '2021-04-15 11:50:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('439', '241', '361', '1', '2021-04-15 11:50:48', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('440', '242', '370', '2', '2021-04-15 14:56:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('441', '243', '373', '2', '2021-04-16 14:01:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('442', '244', '377', '2', '2021-04-16 14:21:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('443', '245', '381', '2', '2021-04-19 12:38:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('444', '246', '365', '1', '2021-04-19 15:05:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('445', '246', '367', '1', '2021-04-19 15:05:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('446', '247', '374', '1', '2021-04-19 15:05:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('447', '247', '375', '1', '2021-04-19 15:05:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('448', '247', '376', '1', '2021-04-19 15:05:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('449', '247', '378', '1', '2021-04-19 15:05:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('450', '247', '379', '1', '2021-04-19 15:05:20', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('451', '248', '383', '2', '2021-04-20 13:30:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('452', '249', '385', '2', '2021-04-20 13:36:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('453', '250', '386', '2', '2021-04-20 13:37:56', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('454', '251', '380', '1', '2021-04-22 15:19:51', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('455', '252', '380', '1', '2021-04-22 15:19:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('456', '253', '382', '1', '2021-04-22 15:21:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('457', '253', '384', '1', '2021-04-22 15:21:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('458', '254', '387', '2', '2021-04-23 09:55:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('459', '255', '389', '2', '2021-04-23 10:37:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('460', '256', '395', '2', '2021-04-23 11:20:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('461', '257', '396', '2', '2021-04-23 16:03:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('462', '258', '397', '2', '2021-04-26 11:45:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('463', '259', '398', '2', '2021-04-26 15:34:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('464', '260', '399', '2', '2021-04-27 09:49:53', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('465', '261', '400', '2', '2021-04-27 10:10:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('466', '262', '402', '2', '2021-04-29 12:43:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('467', '263', '401', '1', '2021-04-29 12:44:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('468', '264', '403', '2', '2021-04-29 12:46:03', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('469', '265', '404', '2', '2021-04-29 12:51:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('470', '266', '405', '2', '2021-04-29 13:01:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('471', '267', '406', '2', '2021-04-29 15:10:57', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('472', '268', '407', '2', '2021-04-29 15:17:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('473', '269', '408', '2', '2021-04-29 16:42:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('474', '270', '409', '2', '2021-04-30 08:37:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('475', '271', '410', '2', '2021-04-30 08:43:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('476', '272', '411', '2', '2021-04-30 10:09:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('477', '273', '412', '2', '2021-04-30 11:11:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('478', '274', '413', '2', '2021-04-30 11:16:49', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('479', '275', '413', '1', '2021-04-30 11:35:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('480', '276', '388', '1', '2021-04-30 11:38:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('481', '276', '390', '1', '2021-04-30 11:38:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('482', '276', '391', '1', '2021-04-30 11:38:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('483', '276', '392', '1', '2021-04-30 11:38:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('484', '276', '393', '1', '2021-04-30 11:38:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('485', '276', '394', '1', '2021-04-30 11:38:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('486', '277', '388', '1', '2021-04-30 11:38:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('487', '278', '414', '2', '2021-04-30 15:16:32', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('488', '279', '415', '1', '2021-05-02 11:49:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('489', '280', '410', '1', '2021-05-02 11:49:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('490', '281', '416', '2', '2021-05-03 11:38:07', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('491', '282', '419', '2', '2021-05-04 12:15:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('492', '283', '421', '2', '2021-05-05 17:14:16', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('493', '284', '417', '1', '2021-05-06 14:58:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('494', '284', '418', '1', '2021-05-06 14:58:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('495', '285', '422', '2', '2021-05-06 15:03:30', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('496', '286', '423', '2', '2021-05-06 15:11:47', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('497', '287', '424', '2', '2021-05-10 09:20:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('498', '288', '425', '2', '2021-05-10 12:09:12', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('499', '289', '426', '2', '2021-05-10 15:06:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('500', '290', '386', '1', '2021-05-10 15:46:59', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('501', '291', '386', '1', '2021-05-11 13:08:28', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('502', '292', '427', '2', '2021-05-11 15:22:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('503', '293', '420', '1', '2021-05-12 12:25:47', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('504', '294', '425', '1', '2021-05-12 12:26:15', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('505', '295', '426', '1', '2021-05-12 12:26:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('506', '296', '428', '2', '2021-05-12 14:14:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('507', '297', '429', '2', '2021-05-12 14:27:26', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('508', '298', '430', '2', '2021-05-12 17:32:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('509', '299', '431', '2', '2021-05-13 14:45:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('510', '300', '433', '2', '2021-05-13 17:12:46', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('511', '301', '436', '2', '2021-05-17 12:28:00', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('512', '302', '437', '2', '2021-05-19 10:22:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('513', '303', '438', '2', '2021-05-19 10:46:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('514', '304', '439', '2', '2021-05-19 10:54:08', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('515', '305', '432', '1', '2021-05-19 11:46:10', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('516', '306', '434', '1', '2021-05-19 11:46:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('517', '306', '435', '1', '2021-05-19 11:46:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('518', '307', '441', '2', '2021-05-19 14:11:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('519', '308', '442', '2', '2021-05-19 17:29:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('520', '309', '443', '2', '2021-05-20 10:29:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('521', '310', '420', '1', '2021-05-22 09:31:44', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('522', '311', '447', '1', '2021-10-16 15:21:38', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('523', '312', '448', '1', '2021-10-16 15:22:34', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('524', '313', '451', '1', '2021-10-18 14:10:45', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('525', '314', '455', '1', '2022-05-16 13:36:05', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('526', '315', '2546', '1', '2022-12-16 11:17:04', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('527', '316', '2565', '1', '2022-12-29 02:21:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('528', '317', '2578', '1', '2022-12-29 22:35:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('529', '318', '2581', '1', '2022-12-29 22:55:17', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('530', '319', '2585', '1', '2023-01-04 22:16:55', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('531', '320', '2586', '1', '2023-01-04 23:58:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('532', '321', '2588', '1', '2023-01-05 00:00:40', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('533', '322', '2589', '1', '2023-01-05 00:01:36', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('534', '323', '2590', '1', '2023-01-05 00:02:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('535', '324', '2592', '1', '2023-01-05 00:03:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('536', '325', '2593', '1', '2023-01-05 11:40:54', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('537', '326', '2594', '1', '2023-01-05 19:07:22', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('538', '327', '2596', '1', '2023-01-05 19:08:24', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('539', '328', '2597', '1', '2023-01-05 20:58:11', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('540', '329', '2598', '1', '2023-01-05 21:07:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('541', '330', '2603', '1', '2023-01-27 14:40:52', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('542', '331', '2605', '1', '2023-01-27 14:42:39', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('543', '332', '2604', '1', '2023-01-28 12:21:49', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('544', '333', '2621', '1', '2023-06-28 17:51:16', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('545', '334', '2621', '1', '2023-06-28 17:56:02', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('546', '335', '2622', '1', '2023-06-28 17:56:50', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('547', '336', '2623', '1', '2023-06-28 17:58:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('548', '337', '2624', '1', '2023-06-28 18:02:42', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('549', '338', '2625', '1', '2023-06-28 18:11:56', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('550', '339', '2626', '1', '2023-06-28 18:28:13', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('551', '340', '2627', '1', '2023-06-28 18:41:25', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('552', '341', '2628', '1', '2023-06-29 22:08:14', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('553', '342', '2629', '1', '2023-06-30 11:03:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('554', '343', '2630', '1', '2023-06-30 11:14:35', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('555', '344', '2631', '1', '2023-07-03 21:32:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('556', '345', '2632', '1', '2023-07-03 21:34:27', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('557', '346', '2633', '1', '2023-07-03 21:37:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('558', '347', '2634', '1', '2023-07-03 21:40:06', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('559', '348', '2635', '1', '2023-07-03 21:40:10', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('560', '349', '2636', '1', '2023-07-06 21:14:15', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('561', '350', '2636', '1', '2023-07-06 21:43:26', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('562', '351', '2636', '1', '2023-07-06 21:44:47', NULL, NULL, '0');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('563', '352', '2636', '1', '2023-07-06 21:54:29', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('564', '353', '2635', '1', '2023-07-06 21:54:37', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('565', '354', '2637', '1', '2023-07-06 21:58:33', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('566', '355', '2639', '1', '2023-08-09 02:05:31', NULL, NULL, '1');
INSERT INTO `tec_send_invoice_items` (`id`, `send_invoice_id`, `sale_id`, `uCrea`, `fCrea`, `uActualiza`, `fActualiza`, `estado`) VALUES ('567', '356', '2643', '1', '2023-08-09 02:13:50', NULL, NULL, '1');


#
# TABLE STRUCTURE FOR: tec_send_invoice_nc
#

DROP TABLE IF EXISTS `tec_send_invoice_nc`;

CREATE TABLE `tec_send_invoice_nc` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `note_credit_id` int(11) NOT NULL,
  `issue_date` date NOT NULL,
  `file_name` varchar(50) NOT NULL,
  `type` varchar(50) NOT NULL,
  `flg_response` int(11) NOT NULL,
  `error_code` varchar(15) NOT NULL,
  `response_descrip` varchar(1000) NOT NULL,
  `observations` text,
  `status` int(11) NOT NULL,
  `user_Create` int(11) NOT NULL,
  `date_Create` datetime NOT NULL,
  `user_upgrade` int(11) DEFAULT NULL,
  `date_upgrade` datetime DEFAULT NULL,
  `estado` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `tec_send_invoice_nc` (`id`, `note_credit_id`, `issue_date`, `file_name`, `type`, `flg_response`, `error_code`, `response_descrip`, `observations`, `status`, `user_Create`, `date_Create`, `user_upgrade`, `date_upgrade`, `estado`) VALUES ('1', '5', '2021-03-31', '20505239262-07-FC01-0000018', '0', '1', '0', 'La Nota de credito numero FC01-0000018, ha sido aceptada', NULL, '4', '2', '2021-03-31 08:48:15', NULL, NULL, '1');


#
# TABLE STRUCTURE FOR: tec_sessions
#

DROP TABLE IF EXISTS `tec_sessions`;

CREATE TABLE `tec_sessions` (
  `id` varchar(40) NOT NULL,
  `ip_address` varchar(45) NOT NULL,
  `timestamp` int(10) unsigned NOT NULL DEFAULT '0',
  `data` blob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ci_sessions_timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002ee10579132e06856d0523cd91fb69c809219f', '183.136.225.46', '1684205588', '__ci_last_regenerate|i:1684205588;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00573f2bcb105e58db394d39f982f63ac35fc0b1', '186.1.135.129', '1617804697', '__ci_last_regenerate|i:1617804445;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0060fcd2c404ca2e28b7afa346b9dfb7dfb03f76', '47.128.34.105', '1695617055', '__ci_last_regenerate|i:1695617055;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006e2ab9a6e60327ea525fd94cb57680afd51fef', '181.64.105.12', '1622234346', '__ci_last_regenerate|i:1622234222;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622211688\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0083ed420fb736ed5ea40d15da4d213c0f5bff04', '68.183.148.142', '1633002849', '__ci_last_regenerate|i:1633002849;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d0e0ac754e531fc21239c2f422f22923389529', '186.1.135.157', '1616766371', '__ci_last_regenerate|i:1616766029;local|s:1:\"1\";listaVenta|i:490;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616711069\";last_ip|s:13:\"190.236.0.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00e8105ecce2013f531e9b0b99a27a574a231c8a', '132.184.128.153', '1611890228', '__ci_last_regenerate|i:1611890222;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611888947\";last_ip|s:15:\"132.184.128.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f47ff4ce84444ac2665d7cce05de859fe1ec18', '205.210.31.22', '1666450473', '__ci_last_regenerate|i:1666450473;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f72ef95d8e2e426560e082a5e32fdc91f63c72', '38.25.16.38', '1698892154', '__ci_last_regenerate|i:1698892140;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698876438\";last_ip|s:12:\"38.25.16.184\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0111ed12458e8d832692e731a8780badf81dc9e7', '186.1.135.129', '1618248880', '__ci_last_regenerate|i:1618248817;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('011a6f325469c6f4e6003d8a0ce15612fee30250', '205.210.31.175', '1670032222', '__ci_last_regenerate|i:1670032222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('011cc41cc464db4cce65ed3e5c2d5ff420285da7', '179.6.222.7', '1617979578', '__ci_last_regenerate|i:1617979420;local|s:1:\"1\";listaVenta|i:946;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('011ed9a5586d12c991e7828434060539134e0180', '161.132.234.14', '1625151696', '__ci_last_regenerate|i:1625151630;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625115021\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012ebe7fc6cbecd2ee8d4c2fbc36a523cfde18a0', '190.236.24.150', '1611079025', '__ci_last_regenerate|i:1611079022;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598834103\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"Dyy60hamyB5kR4ghDgHuAoYOWgK+OKWtNGgoOswAU2v4uhKE3LRY8tqTXq730/+WTAIa0YEPcgEQFTk8Ym0RIQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:83:\"La caja no está abierta, por favor introduzca el valor de la caja para la apertura\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('013d5f478e71c765160e7ec1869d637f6aeeb8b3', '38.25.7.251', '1652386532', '__ci_last_regenerate|i:1652386527;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014cb69509e8e1d19073a2ae89e33e0e975836b2', '148.102.26.11', '1619795383', '__ci_last_regenerate|i:1619794941;local|s:1:\"1\";listaVenta|i:822;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01524f5480b13fbce85f989e474920e83340670e', '167.248.133.184', '1681993872', '__ci_last_regenerate|i:1681993872;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015f53f37db3dcf83c6e099092150811c3e7f30c', '34.77.162.7', '1624382294', '__ci_last_regenerate|i:1624382294;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0165805a408f6ed7ba023bf142d84f088a7b1afd', '18.219.38.43', '1698013923', '__ci_last_regenerate|i:1698013923;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('017e0269a067b78c6ef3adbed5c0982fc403aef6', '201.230.205.217', '1672537828', '__ci_last_regenerate|i:1672537828;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018320c138d19f418f64e36fdc156be8c4d2d376', '167.248.133.63', '1662391025', '__ci_last_regenerate|i:1662391025;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0183d4521674055960ceaf7159038d3a6321c085', '198.235.24.29', '1690603543', '__ci_last_regenerate|i:1690603543;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01914ab13f27117a1eb0b58b723e8905336c9a9a', '186.1.135.66', '1616447781', '__ci_last_regenerate|i:1616447781;local|s:1:\"1\";listaVenta|i:765;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b3ff53957fd260aac676e9ae1b40646002ebe6', '186.1.135.134', '1615827088', '__ci_last_regenerate|i:1615827088;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01bc5a6154f55833dc5d56cf37af23d69399cec4', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d0f808ffad21839306f7ed50f436642b9a29f0', '186.1.135.134', '1612800222', '__ci_last_regenerate|i:1612799994;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612788341\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d70f486e8503efe95171fe949ab3c42426b86e', '148.102.26.11', '1621529655', '__ci_last_regenerate|i:1621529535;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621524312\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d8f7b2e27c0e0910d6ba1ba90e6bb705dc79d9', '18.222.251.87', '1613564058', '__ci_last_regenerate|i:1613564058;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01db0858f8f05fdbe5969b6abe1305f6', '201.230.205.217', '1671203065', '__ci_last_regenerate|i:1671203065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e88f675e8559c5bdd53721e7922f28f703b85a', '205.210.31.14', '1662963530', '__ci_last_regenerate|i:1662963530;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f2839857b92182bfe6d56b3f9d0fa4cd4b3c62', '107.150.59.244', '1620667164', '__ci_last_regenerate|i:1620667164;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02010efe894ae4d6f967ae14c41acffcf913e558', '186.1.135.66', '1616444863', '__ci_last_regenerate|i:1616444577;local|s:1:\"1\";listaVenta|i:73;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02031781761fbe61f929bf134b28900f6259a827', '190.237.172.147', '1614083246', '__ci_last_regenerate|i:1614083125;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614028920\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020b1511d4fd18417df763fb6d65fb78299ef9ee', '92.118.160.17', '1624300543', '__ci_last_regenerate|i:1624300542;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('024b0e3fe33d6234fd0005e8b89bccadcadd6e4f', '183.136.225.44', '1688250094', '__ci_last_regenerate|i:1688250094;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0268f4b56159df179c307abaf2757445a83c865c', '34.244.83.225', '1691710353', '__ci_last_regenerate|i:1691710353;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02772f3d8a2fcccbd75026af3461f532f5f3ed70', '43.153.35.122', '1687189397', '__ci_last_regenerate|i:1687189397;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027e5d6267df6e2291f9ad74560bc51ac0ec2b5a', '92.118.160.61', '1628941713', '__ci_last_regenerate|i:1628941713;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('028669004c87ee559a127a4207adb2b877db0df0', '::1', '1598834108', '__ci_last_regenerate|i:1598834103;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598834013\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ad2437fd0d5931d0cbf49ddec83610d4ff64c9', '164.68.106.210', '1669867902', '__ci_last_regenerate|i:1669867902;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ae3a9428a3acf06a238984789e474aed9f4608', '38.25.7.251', '1653056442', '__ci_last_regenerate|i:1653056442;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02af57d663f7db88d11473db0d1a6eb841e23b7b', '144.91.106.14', '1680462558', '__ci_last_regenerate|i:1680462558;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b516be7a87bcc006df6a70a3fc314d9a30b80d', '179.6.222.7', '1617986450', '__ci_last_regenerate|i:1617986261;local|s:1:\"1\";listaVenta|i:1831;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ba400a9f285dd5a001d989fb8791baadab0c62', '167.94.145.59', '1693865956', '__ci_last_regenerate|i:1693865956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c3229c72282c9c2cb75463922e3bf425e5676a', '54.233.148.0', '1622394791', '__ci_last_regenerate|i:1622394791;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02eb2a9072052c8bfaab82f892d7af00ed7243e1', '205.210.31.20', '1655612943', '__ci_last_regenerate|i:1655612943;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02eb3a169e8f901f8bb8d62e65a786a3096a13af', '198.235.24.121', '1696389117', '__ci_last_regenerate|i:1696389117;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ec52ffac674d414c679709ec35843e2bea5c80', '205.210.31.33', '1693596880', '__ci_last_regenerate|i:1693596879;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02fe264b2273ee91407d93cc104289bc9a1444f3', '183.136.225.44', '1688231235', '__ci_last_regenerate|i:1688231235;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0312275b11871fe23de200580dce34b10f21afa2', '164.68.106.210', '1669867902', '__ci_last_regenerate|i:1669867902;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031e56800c45cfd9a42f9b81a80bbfd8bcb03c70', '143.198.164.4', '1683559512', '__ci_last_regenerate|i:1683559512;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03299309d0f10790881ffec464a1d89cb1bba60a', '148.102.26.11', '1619799089', '__ci_last_regenerate|i:1619798810;local|s:1:\"1\";listaVenta|i:106;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619789458\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032ec8dcf361aace883921742fc4745062f415b0', '186.1.135.141', '1617210175', '__ci_last_regenerate|i:1617210078;local|s:1:\"1\";listaVenta|i:1104;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033055594211b9860bc0af7b46f54ca3e3d4fc0d', '162.142.125.221', '1656611164', '__ci_last_regenerate|i:1656611164;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03421e88920e26d759d53ab79f68e0d0e6d45431', '209.17.97.10', '1612027042', '__ci_last_regenerate|i:1612027042;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03513f56bf8f3d9f1de058d28c7493228624aec8', '179.6.212.129', '1614705046', '__ci_last_regenerate|i:1614705046;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0359b9a10d6dd95dae87140fa9434c39d8400574', '198.235.24.152', '1668898823', '__ci_last_regenerate|i:1668898823;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035bcec8a50a82a5d31f291f273b6196368fe306', '38.25.16.184', '1698955248', '__ci_last_regenerate|i:1698955027;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";__ci_vars|a:3:{s:7:\"message\";s:3:\"old\";s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}message|s:27:\"Usuario cambiado con éxito\";csrfkey|s:8:\"djwqgI0f\";csrfvalue|s:20:\"aiytFq5P6rK3TSwvGemC\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035db084db58201fdbdf83bcb3b46fe5391e7c5d', '161.132.234.14', '1625620228', '__ci_last_regenerate|i:1625619931;local|s:1:\"1\";listaVenta|i:167;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625591688\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03616c58885d401d23ada6a8ffefc34c66be8662', '198.235.24.43', '1681585519', '__ci_last_regenerate|i:1681585519;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037099158ac807bda8cf56f6c30aac0ca0a05ff9', '179.6.222.7', '1617980100', '__ci_last_regenerate|i:1617979758;local|s:1:\"1\";listaVenta|i:1005;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03716383626bea4cfcc8c4f6eb0ac55ba0b08eb4', '35.193.226.4', '1655740851', '__ci_last_regenerate|i:1655740850;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0386ea5734dc5629bd13ef2979b3aa13d483bd3a', '148.102.26.11', '1619718765', '__ci_last_regenerate|i:1619718665;local|s:1:\"1\";listaVenta|i:463;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619631623\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03880de58df9717651604b205e880e52e297e5a1', '167.94.138.60', '1636693498', '__ci_last_regenerate|i:1636693498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038f0c28b81cb93d9e2c34db268220c70ab75664', '181.176.119.44', '1676161789', '__ci_last_regenerate|i:1676161789;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038f0d92129e45586bb800de8f765633c3e184c6', '34.172.144.130', '1676606046', '__ci_last_regenerate|i:1676606044;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03913c0da8c2a4a8974745ba9543608aa3d067b4', '1.116.195.130', '1662459017', '__ci_last_regenerate|i:1662459017;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0391be773832d8b3494824365d721090af77c0d5', '106.53.83.56', '1622946122', '__ci_last_regenerate|i:1622946122;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039c6c45b2c50ce3ad34fcd46a5c7c65337f4021', '186.1.135.79', '1616619115', '__ci_last_regenerate|i:1616618874;local|s:1:\"1\";listaVenta|i:28;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616603027\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a3bb6bd49f58a00fff9a2229bdf6a8196b48f8', '13.233.73.212', '1624169524', '__ci_last_regenerate|i:1624169524;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b5e7f9051aedba5b5dad43c8841fd320f7ea11', '167.94.138.60', '1637544796', '__ci_last_regenerate|i:1637544796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03c18432843dd1b17dd067735adae2c3b91b86f2', '167.248.133.188', '1698158048', '__ci_last_regenerate|i:1698158048;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03cba242e45e1c4208cbf817222f725322c897b1', '186.1.135.154', '1618517621', '__ci_last_regenerate|i:1618517453;local|s:1:\"1\";listaVenta|i:363;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618414864\";last_ip|s:13:\"186.1.135.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03d040d031d895cf33e031d9bf4c61eb727591f5', '198.235.24.149', '1668472434', '__ci_last_regenerate|i:1668472434;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03df1fef1f9d4593e311a5da3140320cb9c47936', '198.235.24.173', '1666483807', '__ci_last_regenerate|i:1666483807;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f1dcd6047ebc20630b0d0a67097b0bf310864c', '::1', '1598365143', '__ci_last_regenerate|i:1598365143;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598339373\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03fc3c47e511d3483a2e5986b502751fdd0bf295', '167.248.133.118', '1672584773', '__ci_last_regenerate|i:1672584773;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0400a964baf8c27916370b5815cc191c3f285ff9', '138.197.216.92', '1656826449', '__ci_last_regenerate|i:1656826449;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('040778736170bf946b9d9e39c541e6a11eb05318', '198.235.24.141', '1657623614', '__ci_last_regenerate|i:1657623614;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('040a43c9631a4048e525b31c8523fe4b79984d0f', '34.77.162.25', '1624709008', '__ci_last_regenerate|i:1624709008;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0417dd31e2878bf753bc313a2b15bc490d1101a0', '190.239.238.60', '1614611212', '__ci_last_regenerate|i:1614611175;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1614187343\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04204e21c001ad91d63e9c8ea2331ae9e9b48834', '190.237.172.53', '1616092259', '__ci_last_regenerate|i:1616091271;local|s:1:\"1\";listaVenta|i:271;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04233efdfc6a43c5977633bd578b140a71a003d7', '54.176.188.51', '1618910140', '__ci_last_regenerate|i:1618910140;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0447c394ac1d98c209f41f05c8c4a3bdee4420c9', '205.210.31.19', '1696015608', '__ci_last_regenerate|i:1696015608;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045a09ac03e568bc98a94ccf55a2096c75fccb5c', '205.210.31.2', '1656436454', '__ci_last_regenerate|i:1656436454;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045efd6ea46a7b5d9ece16456b00d36dc3ec49ba', '148.102.26.11', '1619454277', '__ci_last_regenerate|i:1619452452;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04746ba4c92c8338c86202898fda00f71873250d', '205.210.31.18', '1657642543', '__ci_last_regenerate|i:1657642543;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047a23b2bd521cb86a105535dc9398338cfce228', '190.43.38.149', '1672284624', '__ci_last_regenerate|i:1672284619;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672272122\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04808dc9fd6b945851da2d1942e61ccb8978dd14', '38.25.26.18', '1681791212', '__ci_last_regenerate|i:1681791120;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681781383\";last_ip|s:15:\"201.230.205.189\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0487a84ef3ce6fa80dc8bf88619f500d9b622e9b', '190.237.30.221', '1621176484', '__ci_last_regenerate|i:1621176484;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('049424b9529d00d6746a646c27fa3ab2cea95981', '181.176.114.107', '1675692548', '__ci_last_regenerate|i:1675692547;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04a0da08423544ed1bd4a7c992b55298f8beb328', '205.210.31.152', '1666387277', '__ci_last_regenerate|i:1666387277;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04a69ec00217072d7fc179a415ac7665a2a20d0a', '15.228.34.129', '1621808225', '__ci_last_regenerate|i:1621808224;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04aa420f68aa7c90a8ec5bb5e9932dcb2387562b', '148.102.26.11', '1620253323', '__ci_last_regenerate|i:1620253123;local|s:1:\"1\";listaVenta|i:260;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620223665\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04cf62823c55d574dc4aaeecae5f5edfe4f39bcf', '198.235.24.38', '1675226321', '__ci_last_regenerate|i:1675226321;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e5c74c60ae40b794ee441b814b4086354c603a', '198.235.24.183', '1666684119', '__ci_last_regenerate|i:1666684119;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050379f1f5106807598a61612bfa3816fcad335b', '18.231.147.40', '1622294229', '__ci_last_regenerate|i:1622294228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050f3f94c8177792bf17bd161ec1c2048e933a0f', '177.91.248.76', '1685466671', '__ci_last_regenerate|i:1685466671;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1684860923\";last_ip|s:13:\"177.91.248.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05349f5ee88cb3c0393cb7f5eaa38384dc12ddf4', '190.237.172.53', '1616098433', '__ci_last_regenerate|i:1616098292;local|s:1:\"1\";listaVenta|i:758;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616082515\";last_ip|s:13:\"190.239.70.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05392ca4281b267e395acdd6b1f1428aa115c37d', '209.17.96.130', '1611335830', '__ci_last_regenerate|i:1611335830;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0541c26c0ae4275a421d26238c8eeebf47331603', '205.210.31.42', '1697489998', '__ci_last_regenerate|i:1697489998;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054b3f35d82852939bc0d91b979b60d3fff1118a', '209.97.163.31', '1680140727', '__ci_last_regenerate|i:1680140726;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05519369682de580e06e51e0169351fc5dbd4c22', '186.1.135.79', '1611951297', '__ci_last_regenerate|i:1611951002;local|s:1:\"1\";listaVenta|i:482;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0559c9c9f21c2cd467224b1c42e93e67669a5b06', '190.238.217.6', '1611932283', '__ci_last_regenerate|i:1611932260;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611927498\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05681d48d3dd063788f413ecffbeca60', '161.132.234.14', '1624914792', '__ci_last_regenerate|i:1624914792;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624914782\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056b7ded4411d9a82d496df10b2962aac952e406', '170.64.190.167', '1683172217', '__ci_last_regenerate|i:1683172217;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056c7924809cc67ce8e0aa1ebd8c46f9fbfcf2ff', '190.236.26.74', '1612836267', '__ci_last_regenerate|i:1612835990;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612814723\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('057f4d6f9ec3530d84a04eb057b80e9cab817bdc', '181.176.109.242', '1676583671', '__ci_last_regenerate|i:1676583650;local|s:1:\"1\";listaVenta|i:200;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1676489706\";last_ip|s:14:\"181.176.107.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0582f5370028c2dd506d24a2b5b493b4', '201.230.205.217', '1671203065', '__ci_last_regenerate|i:1671203065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0587793849f50a249ebe41c8887f3f335004523d', '167.248.133.36', '1678945923', '__ci_last_regenerate|i:1678945923;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('058816de622a34d8314b5a2ae482734dc8653f98', '38.25.16.184', '1698956018', '__ci_last_regenerate|i:1698955960;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"old\";s:9:\"csrfvalue\";s:3:\"old\";}csrfkey|s:8:\"AwdNGX1h\";csrfvalue|s:20:\"B8axqCOUEAc9Iev2zb4Z\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('058e6dbcc245296f5442488475b96aab8075ce95', '186.1.135.159', '1618840633', '__ci_last_regenerate|i:1618840333;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a543ca6d8d0c71bc7a1b18be65f497e7a9189f', '179.6.212.129', '1614804671', '__ci_last_regenerate|i:1614804561;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614778488\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b563231e6eac3bccc5ca2a8e0bfde49b827482', '185.3.94.68', '1668919088', '__ci_last_regenerate|i:1668919088;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05bbb62ed1b74d17119168189f65dbad5b91ac31', '15.228.121.10', '1621963428', '__ci_last_regenerate|i:1621963428;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d1162e0162f4cd967b59b8ee1369276a3ed75a', '18.232.121.166', '1654292977', '__ci_last_regenerate|i:1654292975;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05dc6e21f4d44a74eaef7be7ab286859215656ae', '18.229.135.82', '1622088933', '__ci_last_regenerate|i:1622088933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e2d1ead7ae58a5aba77c2eddbf5d6ba56f8d8b', '186.1.135.131', '1617655883', '__ci_last_regenerate|i:1617655873;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617629517\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e443abb9b744598a223243f5f4ced15be4ef41', '183.136.225.45', '1682162697', '__ci_last_regenerate|i:1682162697;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05f8b9eea0f5352f54679b10fbb9d6ed0a192a81', '183.136.225.45', '1694000140', '__ci_last_regenerate|i:1694000140;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0624fe1b1f9782f5de00734b974f1d905ec445ce', '1.15.175.155', '1629051383', '__ci_last_regenerate|i:1629051383;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063b4fa2e73ed6a388073b3c9965023641ff4b4b', '146.190.157.49', '1689839622', '__ci_last_regenerate|i:1689839622;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063d903992b43f5f962ede78ddf2f515eb2e5312', '45.177.196.194', '1681913452', '__ci_last_regenerate|i:1681913265;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681789340\";last_ip|s:11:\"38.25.26.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06560d5ba303e29e5c24dc50f2ef8e5632c341f5', '148.102.26.11', '1621260178', '__ci_last_regenerate|i:1621260168;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06604679153e76241b08db959febf0834ac2929b', '18.229.135.82', '1622128513', '__ci_last_regenerate|i:1622128513;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06618bf3d942fd3989424c2e7db18cf66da3061d', '179.6.212.129', '1614805284', '__ci_last_regenerate|i:1614805279;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614778488\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067d8b000ed72853c22987dd0e637fe7d23e16f1', '148.102.22.241', '1616703870', '__ci_last_regenerate|i:1616703511;local|s:1:\"1\";listaVenta|i:547;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('069805a376dfae0194f60de2e0d1f36daa35d3c1', '148.102.26.11', '1619451815', '__ci_last_regenerate|i:1619451724;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('069db951be3debdabf6b4cc359b2d21d78001962', '132.157.130.10', '1611928933', '__ci_last_regenerate|i:1611928906;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611927498\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a5c29b0d4f13912c2bddecc7c3ca287111d3e5', '190.237.172.147', '1613291292', '__ci_last_regenerate|i:1613291003;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613291006\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06abf7068a836b81ba091c5bd893e65117317a48', '167.94.138.60', '1636693497', '__ci_last_regenerate|i:1636693497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06aed660ff3ba347bd325411b9b7928eecb78341', '167.94.138.127', '1679124931', '__ci_last_regenerate|i:1679124931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b140299e0deaee89858dcd0a43429e32d0e0ea', '148.102.26.11', '1620659090', '__ci_last_regenerate|i:1620658817;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c07e8ce0d743094c499e54e2fe4a8fb66baec9', '148.102.23.16', '1618944100', '__ci_last_regenerate|i:1618943789;local|s:1:\"1\";listaVenta|i:499;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618854951\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c64a74de408df1b53a6a89b3352159f2978ffa', '45.33.108.175', '1668919084', '__ci_last_regenerate|i:1668919084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06cc49366e02e3d4eef9b8974b68cf25386489d7', '181.176.109.80', '1674842470', '__ci_last_regenerate|i:1674842240;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674776709\";last_ip|s:15:\"181.176.117.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e246dd062ccf827bb1af37c60ce9495fb02ddd', '198.235.24.14', '1655880348', '__ci_last_regenerate|i:1655880348;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ebfda4d05594fb18cc324b9c394f66c43b7074', '201.230.205.189', '1681787495', '__ci_last_regenerate|i:1681787410;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f417ada5b837e8bce91083bdd1ed4a368f1ddb', '64.225.10.172', '1697109851', '__ci_last_regenerate|i:1697109851;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06fa8dae7ffdb8e0860370443d9cc588a831ed19', '181.67.2.234', '1688439904', '__ci_last_regenerate|i:1688439891;local|s:1:\"1\";listaVenta|i:164;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688437685\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070bac25f5e6f3f7cb469ad64849d9207888f76d', '198.235.24.129', '1673690572', '__ci_last_regenerate|i:1673690572;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070bb26b473095e3c677a940469e44381b182afb', '183.136.225.46', '1688843955', '__ci_last_regenerate|i:1688843955;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076136a4015d03a68a2eae6f5c4bc8bc0d10d2c4', '52.90.61.13', '1693607228', '__ci_last_regenerate|i:1693607228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('079ced5f26c6660d1b47c12dcee01e7fea0d17ce', '190.43.38.134', '1621455301', '__ci_last_regenerate|i:1621455301;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07acce70d037ea510e9a303c1b88d1837cc588ad', '18.230.193.82', '1622499306', '__ci_last_regenerate|i:1622499306;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07b1d3a008bec614fb190134c3ec62c9aa3be3f9', '35.222.220.90', '1655858343', '__ci_last_regenerate|i:1655858343;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07b274033508cbda7c66f86078f13b6c3d11725c', '34.66.54.97', '1656016776', '__ci_last_regenerate|i:1656016776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d2c414908a7bc774af4f9b8dca8f9f74cc13df', '186.1.135.130', '1617025380', '__ci_last_regenerate|i:1617025159;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e3b8763dbcfbc8909b0cfea149a65d880cdea6', '106.53.83.56', '1628042000', '__ci_last_regenerate|i:1628042000;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e71227ca399397d0dcd15ad95be2afa76122f3', '148.102.26.11', '1620677298', '__ci_last_regenerate|i:1620677298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f258448b6d6c392a975a25d1e9025b', '45.177.196.194', '1674848329', '__ci_last_regenerate|i:1674848329;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674842242\";last_ip|s:14:\"181.176.109.80\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0804dfe9d15ab66d876916785dc7dad18e44d969', '186.1.135.132', '1615497979', '__ci_last_regenerate|i:1615497962;local|s:1:\"1\";listaVenta|i:332;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615479965\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0819f5e5173277b6f95ea525eccc243637a36be5', '186.1.135.142', '1614626824', '__ci_last_regenerate|i:1614626688;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0838affe8155689427bddcf25cba4babdd23311a', '38.25.16.38', '1697476219', '__ci_last_regenerate|i:1697475906;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1697473515\";last_ip|s:14:\"201.230.205.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08715fa1b768ac876a30fe65d5cf0e2a42782791', '186.1.135.129', '1613742980', '__ci_last_regenerate|i:1613742977;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613680099\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000290\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08879e5d044f469c678a7340063e9a198ca3f510', '186.1.135.141', '1617207205', '__ci_last_regenerate|i:1617207090;local|s:1:\"1\";listaVenta|i:1104;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0893ad010395c4c7befaecef76e025785dcc77cd', '186.1.135.143', '1615391912', '__ci_last_regenerate|i:1615391805;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a46127d2d771fd8fd1ed0df71e826854c02cdd', '183.136.225.44', '1683540409', '__ci_last_regenerate|i:1683540409;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a4f2dec8e0a5229fc388f063817211a55e4beb', '161.132.234.14', '1622650318', '__ci_last_regenerate|i:1622650059;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622579033\";last_ip|s:15:\"146.112.244.227\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08abe02315894108384a149f4f56b1f13ee6e66d', '167.94.138.60', '1664895308', '__ci_last_regenerate|i:1664895308;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b0356f70bbf0549221e7dfe8c137f8f7f7aea9', '54.176.188.51', '1618949718', '__ci_last_regenerate|i:1618949718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b04698eed593a089b9b448ec6282b56e6a0b71', '190.237.243.105', '1612231410', '__ci_last_regenerate|i:1612231256;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612212547\";last_ip|s:15:\"132.184.130.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b06e0d6a98d52c98336ed0ef92510cc094ca5a', '2.57.122.107', '1683851204', '__ci_last_regenerate|i:1683851204;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b5807af871e0eda2033f4288bfe9dfee8a4ee3', '148.102.26.11', '1620858761', '__ci_last_regenerate|i:1620857413;local|s:1:\"1\";listaVenta|i:516;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620846580\";last_ip|s:13:\"190.239.71.47\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08bb1dab7603a2086648203729185a28597046cb', '198.235.24.58', '1679830955', '__ci_last_regenerate|i:1679830955;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c01cac77415a9e492f84124476bfdd849afd1c', '179.6.212.129', '1614975093', '__ci_last_regenerate|i:1614975093;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614959612\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c2e2a7073140e443d72a9483581128fc1ae3dd', '198.235.24.40', '1681864778', '__ci_last_regenerate|i:1681864778;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d3e22100d226adcf27897993a316fbf88338cd', '179.6.212.129', '1614707910', '__ci_last_regenerate|i:1614707707;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08da98dd64166eebfe45c2a7a96649da6edc4aaf', '70.38.10.157', '1690877298', '__ci_last_regenerate|i:1690877298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08dc3847705738689337f49676d53dafa838cc62', '148.102.22.241', '1616690173', '__ci_last_regenerate|i:1616689952;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08df3685e29a01597300c492c1014afda950782c', '198.235.24.145', '1655144528', '__ci_last_regenerate|i:1655144528;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e16a3e94f758bf1abd201071af53286a9ee0d4', '167.248.133.187', '1681466573', '__ci_last_regenerate|i:1681466573;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09077c99a588fffb8d131b517971fc2a98a6a064', '38.25.16.18', '1672936814', '__ci_last_regenerate|i:1672936814;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0910b53813a4b5473689c0ece1d831f98ef1a889', '144.91.106.14', '1678530005', '__ci_last_regenerate|i:1678530004;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0917c8204e2e5bf36a50683419cc71b83b9be218', '148.102.26.11', '1620228697', '__ci_last_regenerate|i:1620228309;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091ac9dbe82c94815c36753db2fca35eca30855c', '190.237.172.147', '1614568846', '__ci_last_regenerate|i:1614568846;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091adb53b8c05d6ab9fd651daeba8c575279d842', '47.128.52.65', '1697948142', '__ci_last_regenerate|i:1697948141;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092908ba51247470306c56bc3794b4f83aeb4d2b', '148.102.26.11', '1620225595', '__ci_last_regenerate|i:1620225290;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:53:\"Se registro y envío con exito la guia de remision - \";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09465e13e5fef14b929d3e3fe9e6a3aa6af4b68b', '181.64.18.180', '1634578918', '__ci_last_regenerate|i:1634578897;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1634414864\";last_ip|s:13:\"181.64.18.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09479bc51ba82ce7996db2ef4e4b75f2bee1cfb8', '164.90.182.182', '1689961925', '__ci_last_regenerate|i:1689961925;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0947acd0bf44be66144f260d4c157f45d2b560c8', '190.43.38.234', '1620403795', '__ci_last_regenerate|i:1620403794;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620330952\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('094b15f187ac01a5be49c2987c5e5c464c461352', '167.71.223.167', '1698153267', '__ci_last_regenerate|i:1698153267;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('094f3f771d336ca05bef7d481173554cdc4a82b5', '13.233.73.212', '1624169524', '__ci_last_regenerate|i:1624169524;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09556d04e6a89f152a25ee09ad01b3b9d71caea5', '205.210.31.242', '1694172622', '__ci_last_regenerate|i:1694172621;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0960b3827893aa79b95643d9532354b5976619cb', '201.230.81.79', '1620138049', '__ci_last_regenerate|i:1620138048;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096a77adbec594a0c3acdc54c9e6f59eeb699cdc', '201.230.81.79', '1619717683', '__ci_last_regenerate|i:1619717683;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096ef1f69a19c2c9088d6aba2598faf0366930a2', '186.1.135.132', '1615473239', '__ci_last_regenerate|i:1615470493;local|s:1:\"1\";listaVenta|i:573;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615414832\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0973c35efad7a77a7e543a21373314146c876339', '38.25.7.251', '1652371356', '__ci_last_regenerate|i:1652371352;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0991f73aa4175491a4eda94d8d0fac44f197e592', '35.193.226.4', '1655740852', '__ci_last_regenerate|i:1655740852;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099511e62d5980d902efbd2febb78a41aed2954d', '179.6.212.129', '1615168187', '__ci_last_regenerate|i:1615167894;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615165073\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b687e2547942c113fcdc36108f1c4758ca287f', '186.1.135.71', '1613685613', '__ci_last_regenerate|i:1613685410;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09bb5b155eedb4b14e8a416a74423cf4155a355e', '181.176.107.88', '1676489698', '');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e2731cdce572b6dc879843c62824a1be2bd48d', '198.235.24.41', '1666665036', '__ci_last_regenerate|i:1666665036;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ea36c9a94cf8b898957c56f9ae97898ec24177', '186.1.135.66', '1616420813', '__ci_last_regenerate|i:1616420586;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616175755\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f6cbaaab72c29b9084e9903c86b3c716d8da5c', '186.1.135.143', '1615914029', '__ci_last_regenerate|i:1615913604;local|s:1:\"1\";listaVenta|i:83;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a17d7a4c99e64696c42f85107e240615bd5f060', '186.1.135.134', '1615829273', '__ci_last_regenerate|i:1615829043;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a1df486d922743934511ad69e508b3ae52bd2f2', '186.1.135.131', '1617644391', '__ci_last_regenerate|i:1617644289;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617629517\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a3b180daa9fe666d3a3470a0d1d30123babfe1e', '92.118.160.61', '1629101222', '__ci_last_regenerate|i:1629101222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a48b7624e643a583d28eb5111d9c496dfcafe1f', '42.193.23.126', '1628908662', '__ci_last_regenerate|i:1628908662;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a59a13b6eba52b3ab29794c0d0de604e394adf9', '186.1.135.137', '1613656082', '__ci_last_regenerate|i:1613656056;local|s:1:\"1\";listaVenta|i:336;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613592148\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6722f0557070bc7568bce90cfac481d479c221', '198.235.24.128', '1696957070', '__ci_last_regenerate|i:1696957070;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a696e6f0cc63a56098030af531fa6088efb03c1', '198.235.24.6', '1687551750', '__ci_last_regenerate|i:1687551750;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6b47d94f2a376e3b1c06675d8f54f467696c75', '3.71.111.153', '1691037658', '__ci_last_regenerate|i:1691037658;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a77dec0f53bd4c9930393fd1327180afdb8b797', '205.210.31.85', '1697798785', '__ci_last_regenerate|i:1697798785;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a7acfb06151e065b7107b168b7a1bc672c9ca13', '15.236.95.194', '1696574776', '__ci_last_regenerate|i:1696574776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8182d1173e2a5164b5d48c1b1d958effafe9d1', '186.1.135.136', '1617914088', '__ci_last_regenerate|i:1617913764;local|s:1:\"1\";listaVenta|i:310;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617908137\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab2f6a5c80166a429752e990aad8c60b384bdb2', '103.27.226.203', '1693695445', '__ci_last_regenerate|i:1693695445;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac6db8a3551bd5a795b75574db9834e1a8c01e5', '186.1.135.129', '1614723880', '__ci_last_regenerate|i:1614723498;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614700430\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0acaebd5d9f0560a88592024ac415d02226e0004', '181.176.107.88', '1676476328', '__ci_last_regenerate|i:1676476328;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675884029\";last_ip|s:14:\"181.176.124.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ace093dd4187ed0f714e72e302d9f61fa54b3d7', '38.25.16.184', '1698953781', '__ci_last_regenerate|i:1698953493;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad0f38c7d8a7bdd8bc645c4805f315bc53e5e83', '115.165.166.162', '1660703618', '__ci_last_regenerate|i:1660703618;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad5d360202a15195e5a5e693d60e61ef26ad3ab', '2.57.122.60', '1664443003', '__ci_last_regenerate|i:1664443003;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0adcbe6a3aed585dcbb40a37293b8fbaa9b52a9e', '179.6.212.129', '1612991437', '__ci_last_regenerate|i:1612990773;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612911590\";last_ip|s:13:\"186.1.135.158\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aff750a5df91a192e6d477a3ed374188189e095', '54.207.7.48', '1621855216', '__ci_last_regenerate|i:1621855216;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b1bd0beecbd335f11f7767fbfba64fac78b2be9', '35.226.228.28', '1657112518', '__ci_last_regenerate|i:1657112518;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b243b68bc4977fc348b67ce2fcb1bed4ac513ef', '186.1.135.129', '1617805902', '__ci_last_regenerate|i:1617805794;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2a01a86226aceba6538c894e56ae04c441ca89', '185.199.221.172', '1671099503', '__ci_last_regenerate|i:1671099503;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4ac5a337b892c0da594c61184ff2195ec786fb', '198.235.24.185', '1677270561', '__ci_last_regenerate|i:1677270561;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4c2a60b3dd69b725bd27a11fbc7f4e9415cba6', '27.115.124.48', '1683360835', '__ci_last_regenerate|i:1683360834;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b59d3ecffc4c73633bd1b131e5be1d7db460e83', '186.1.135.130', '1617036786', '__ci_last_regenerate|i:1617036680;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000346\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b63d463005fac953cf3ff1a60a8a2114da301b7', '148.102.26.11', '1620224836', '__ci_last_regenerate|i:1620224836;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b83ab2b48817430d819338273d5c3ae', '45.177.196.194', '1670874000', '__ci_last_regenerate|i:1670874000;local|s:1:\"1\";listaVenta|i:0;error|s:64:\"<p>Error de inicio de sesión, por favor inténtelo de nuevo</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b94d9d13f5415e173bdf54b7373fe2fb74f9260', '205.210.31.232', '1684470422', '__ci_last_regenerate|i:1684470422;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ba77395aea5cc346542287bf6006a918fcc4c7c', '15.236.95.194', '1696574777', '__ci_last_regenerate|i:1696574777;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0badc117b30fec37d9a9763741d0c28227294fe0', '190.43.38.149', '1672298287', '__ci_last_regenerate|i:1672298006;local|s:1:\"1\";listaVenta|i:4;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672284624\";last_ip|s:13:\"190.43.38.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc80a994963afab1a0c8eadb133dbf031f8da15', '201.230.205.189', '1681786506', '__ci_last_regenerate|i:1681786136;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bdc712529725dd815362bc5c0d262f587edbb44', '186.1.135.133', '1612294933', '__ci_last_regenerate|i:1612294932;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c08ab2e2569cb27d35f2a110f65ce1d59c91cb0', '201.230.205.189', '1681791311', '__ci_last_regenerate|i:1681791280;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c17e8585300631f488bd36a4a8e15caf98c7cee', '205.210.31.5', '1665165259', '__ci_last_regenerate|i:1665165259;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c1fd181efd63e12c5a41365f8c2914942c8e2da', '38.25.16.38', '1698728171', '__ci_last_regenerate|i:1698727888;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698727254\";last_ip|s:15:\"201.230.205.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";form_data|N;register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c231e076859533c702c2c73b1bec4c72054c914', '181.176.121.19', '1675126404', '__ci_last_regenerate|i:1675126395;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674926570\";last_ip|s:14:\"181.176.114.37\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c25eee91b9ff7de9d482fa6effae6da387c00c9', '186.1.135.129', '1617818902', '__ci_last_regenerate|i:1617818776;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000383\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c33827b5a243caa9de7ae6a9a21f5fcd3782c4a', '186.1.135.137', '1614201072', '__ci_last_regenerate|i:1614200663;local|s:1:\"1\";listaVenta|i:292;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614177537\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c6bcbe7a81ddb65a779c0a0ddaa604e1709648c', '167.94.138.50', '1688518954', '__ci_last_regenerate|i:1688518954;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c76f359f8dbf4b499a84e105383466715f036a0', '144.91.106.14', '1690768650', '__ci_last_regenerate|i:1690768650;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c8da438ecf81af158b16a07fa7c8f0cb607f15a', '45.79.228.129', '1661790688', '__ci_last_regenerate|i:1661790688;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c962be99defeb28cb9d9bac6ff4b187e4a4668d', '148.102.26.11', '1620936217', '__ci_last_regenerate|i:1620935193;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620918603\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cbad5f3bb93f2dcab30f811c8a3eca766d615b2', '201.230.205.165', '1698443493', '__ci_last_regenerate|i:1698443490;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1697475919\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cbdaf36d1ffc3ed11645977e5f7248cf23d1f14', '186.1.135.150', '1613161868', '__ci_last_regenerate|i:1613161521;local|s:1:\"1\";listaVenta|i:5;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cde97bb1ed64f4fa1dbd13237583ea2798766e0', '38.25.16.184', '1698947285', '__ci_last_regenerate|i:1698946980;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce33c5f21a6e6ee3ae0e273f37f8ce7e0332fbb', '68.169.41.48', '1671410775', '__ci_last_regenerate|i:1671410775;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf4c13673764771fc961013ca31122b4b40f16a', '138.197.154.123', '1696327947', '__ci_last_regenerate|i:1696327947;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d3410ed00ef3b042a79b53196fc9ee0c015ed59', '205.210.31.12', '1677344541', '__ci_last_regenerate|i:1677344541;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d3bcc87bd659e808d01bdeb5d687a6c2e75f75a', '148.102.26.11', '1619793465', '__ci_last_regenerate|i:1619793464;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d51bcad6a30b554bf2917c8cef4d05cb9983fb8', '179.6.212.129', '1614715528', '__ci_last_regenerate|i:1614714582;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d54376ebba68da3f7feeaf72770bdcc93dad295', '186.1.135.129', '1617809966', '__ci_last_regenerate|i:1617809744;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d552b333b7564fc4927923fabbd4738545513de', '13.233.73.212', '1621055811', '__ci_last_regenerate|i:1621055811;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5fd93a3ba6c50a0cceb5c223f975c36dfd7bac', '186.1.135.149', '1616791982', '__ci_last_regenerate|i:1616791721;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616768418\";last_ip|s:13:\"186.1.135.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d6a4c453e155c9fca5f50e366e03a94bbeb9d6e', '167.94.138.34', '1683153896', '__ci_last_regenerate|i:1683153896;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d7589a5b1278eb0ffc3df889ced14b966d7d708', '190.235.15.24', '1618862729', '__ci_last_regenerate|i:1618862675;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1618853624\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";warning|s:64:\"No se encontraron comprobantes para enviar de la fecha indicada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d93c446e9578c265ac22012c70ba1d2fceedc0d', '162.142.125.214', '1684048498', '__ci_last_regenerate|i:1684048498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db833bc2f8b490f6f51a7c03aeb644664d2fd17', '92.118.160.57', '1613859972', '__ci_last_regenerate|i:1613859972;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de038cdc33b193224c580a047a6a655', '201.230.81.164', '1622146295', '__ci_last_regenerate|i:1622146295;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dedc923b641174bb48146e1dba0f22cc3ce88cc', '186.1.135.79', '1611931370', '__ci_last_regenerate|i:1611931237;local|s:1:\"1\";listaVenta|i:388;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611926657\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df251b34a866cffa18104c53d84bd2b4d1f4619', '132.191.2.181', '1621441256', '__ci_last_regenerate|i:1621441256;local|s:1:\"1\";listaVenta|i:880;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621436735\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df79d4ea54062a617304199102dd7419348d545', '190.239.78.92', '1620665924', '__ci_last_regenerate|i:1620665669;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dfec03c4eae6ba9afe55cca6ca6c65f1c6158a0', '134.209.165.64', '1698926103', '__ci_last_regenerate|i:1698926103;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dff1ec6f6075f32085c978dec62fe334da53437', '15.228.16.184', '1622499323', '__ci_last_regenerate|i:1622499322;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1a2051c57cfd3a1fdbf61747e2007dce3b7e0a', '186.1.135.130', '1614366450', '__ci_last_regenerate|i:1614366221;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614345172\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000298\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e2d882fdb9dad41ff7aac3ae32304fc1c5ccb1b', '179.6.222.7', '1617114390', '__ci_last_regenerate|i:1617114270;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e3ee2749421b69a65c7fcc3e74b6dfaa8b3c4cb', '186.1.135.136', '1617891366', '__ci_last_regenerate|i:1617891019;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617890548\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4e11ea10d3eaf84e465ad5164e470f13a41979', '45.177.196.194', '1670943652', '__ci_last_regenerate|i:1670943628;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670943295\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e56f2405699de0b3d793be1a9c94b9a', '181.64.223.213', '1624915120', '__ci_last_regenerate|i:1624915120;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6b45f9f25c6e62b2f11b051972c6131d0bd58c', '148.102.26.11', '1621006148', '__ci_last_regenerate|i:1621006053;local|s:1:\"1\";listaVenta|i:28;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621000549\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7a399ea7eacd6abcb5c5dc18ca9da1a24073c6', '167.248.133.189', '1689085820', '__ci_last_regenerate|i:1689085820;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7b2f22e92ac7e520bb8ee2ca938b30752889ce', '186.1.135.131', '1614287192', '__ci_last_regenerate|i:1614287192;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7cf696adea01d06ef2a6b33de16c0a0cc04530', '47.89.193.162', '1676562931', '__ci_last_regenerate|i:1676562931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7dbcd71e00445e7bfe246f17bad99a878b9858', '54.229.73.187', '1635408072', '__ci_last_regenerate|i:1635408072;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7e449ed43eca086a2c5dec1aad005cafa5fae8', '190.232.180.131', '1611760292', '__ci_last_regenerate|i:1611760292;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7f309bfcc3bedddeaaee10071686a0921a2dcd', '13.59.226.145', '1621447683', '__ci_last_regenerate|i:1621447683;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e8152a05f3abf0088f5f838b81d927bd486a02d', '181.67.2.242', '1687968346', '__ci_last_regenerate|i:1687968167;local|s:1:\"1\";listaVenta|i:296;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968130\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e9926b32cbd79488b29cf46c65507b669a49add', '205.185.127.165', '1682234367', '__ci_last_regenerate|i:1682234367;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e9e218df5bac420c6a155c5b985c2200e6b59aa', '186.1.135.136', '1617891703', '__ci_last_regenerate|i:1617891418;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617890548\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea2e6cd04ab28a8ca7bd913182728f19037b771', '205.210.31.60', '1666294858', '__ci_last_regenerate|i:1666294858;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea76365ce57760c0b525a4343c21e503895fb88', '128.90.168.52', '1678885389', '__ci_last_regenerate|i:1678885389;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eb56e32060b2456a34ab3d01d1caa07dc603ae8', '87.236.176.86', '1695852996', '__ci_last_regenerate|i:1695852996;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eba1c4344b511495b4f208d000c966e88b3ca42', '161.132.234.14', '1623333161', '__ci_last_regenerate|i:1623332931;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623283203\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ece77d4564f275205dbe366c15d761e16f86d5d', '34.77.162.32', '1624642202', '__ci_last_regenerate|i:1624642202;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eea098300bd1bcc2a69ad5da13a969db7a75808', '186.1.135.79', '1611930780', '__ci_last_regenerate|i:1611930752;local|s:1:\"1\";listaVenta|i:388;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611926657\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ef03fa46ad396e672505c4e0d52d306f00fe1f1', '190.236.0.145', '1617053891', '__ci_last_regenerate|i:1617053698;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0eee5b8030909d9b3c1eb83d25600ae8c2b3b5', '144.91.106.14', '1690768649', '__ci_last_regenerate|i:1690768649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2dc3cb6b139dae9cb112ca24c1bbfa64c21dc1', '167.94.138.50', '1698230471', '__ci_last_regenerate|i:1698230471;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f350e82857ddf1d3e9effd2f7a35b6ae977de20', '186.1.135.142', '1614626109', '__ci_last_regenerate|i:1614625819;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f37c56be49ea718eee5454c4239b1084ef68889', '128.199.243.74', '1667800738', '__ci_last_regenerate|i:1667800738;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f38c80c636c65a37cde58d3082a7b0c330cd11e', '183.136.225.44', '1686228014', '__ci_last_regenerate|i:1686228014;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3f53538434683c4092ef39ca5e2cc6170fc6a5', '38.25.7.251', '1652909441', '__ci_last_regenerate|i:1652909185;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652892301\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f4020d599258d5f43e06b20630f7e4d6886a288', '181.176.114.37', '1674926573', '__ci_last_regenerate|i:1674926569;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674922673\";last_ip|s:14:\"181.176.114.37\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6379548d8189485d234f2f725feb228e2ac7df', '148.102.26.11', '1619719403', '__ci_last_regenerate|i:1619719377;local|s:1:\"1\";listaVenta|i:479;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619631623\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f7db8a0f4f31bacd2d42cf1b6402c972b4c013d', '186.1.135.141', '1617210014', '__ci_last_regenerate|i:1617209760;local|s:1:\"1\";listaVenta|i:1104;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f843770ea12a9555ef64fce440da5f1a9477242', '183.136.225.44', '1684119045', '__ci_last_regenerate|i:1684119045;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f963868350f76d947a872af8611b5b2b4e7f54d', '167.248.133.189', '1689085820', '__ci_last_regenerate|i:1689085820;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fb80ecaafff1b2797e9c300eb6dd7470c69d239', '92.118.160.1', '1624819534', '__ci_last_regenerate|i:1624819533;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc1ce9f81e1c0185385eac87e4ad5e1321ce760', '179.6.222.7', '1617125844', '__ci_last_regenerate|i:1617125269;local|s:1:\"1\";listaVenta|i:314;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff00bbf87b7e94d4d945d301f58954d49e96ea9', '179.6.212.129', '1614703457', '__ci_last_regenerate|i:1614701915;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ffc967174104e5aa0914d6981b78c4a8734a336', '179.6.212.129', '1614697454', '__ci_last_regenerate|i:1614697059;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1002e2ece3e88309847e4fad34f4311f385f49c0', '205.210.31.147', '1693166309', '__ci_last_regenerate|i:1693166309;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1006c493e121ba617932eff49d8f23d58bd408da', '198.235.24.169', '1698655959', '__ci_last_regenerate|i:1698655959;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1006e239b261be2e77160f78333ed199434b8efa', '179.6.212.129', '1614713476', '__ci_last_regenerate|i:1614713415;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103083979d95e3b9e1e12d118036e0ed138b6393', '161.132.234.14', '1623159438', '__ci_last_regenerate|i:1623159199;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623100618\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1037c335763621ceed2d2aab3334d1d7afc436a0', '148.102.26.11', '1619199319', '__ci_last_regenerate|i:1619199319;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1039e378dd6f4ecda82f1eb26096f203fbf6faa7', '186.1.135.141', '1613416611', '__ci_last_regenerate|i:1613416517;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613394753\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10478d65bafdd0915f16cff9b021bf1b12ae6505', '18.231.138.126', '1621779187', '__ci_last_regenerate|i:1621779186;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10480a827fac79c981946d636a065bbb6e75dceb', '38.25.16.150', '1671740492', '__ci_last_regenerate|i:1671740462;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671730864\";last_ip|s:14:\"190.235.46.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10542ed0e4783e80cf97907a0fb670c28149bc00', '186.1.135.143', '1615920793', '__ci_last_regenerate|i:1615919994;local|s:1:\"1\";listaVenta|i:318;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10548347f7da5517c5f6ecaf2344e1c4ecf8cfb0', '205.210.31.178', '1686903209', '__ci_last_regenerate|i:1686903209;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10556b8019fcf440cbc21774d865feb7a4575beb', '186.1.135.129', '1617805332', '__ci_last_regenerate|i:1617805203;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1059138c12ab7e56069d6f5f1dd8de4812a1a204', '179.6.212.129', '1614960650', '__ci_last_regenerate|i:1614960322;local|s:1:\"1\";listaVenta|i:287;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614882416\";last_ip|s:13:\"186.1.135.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('105da3c543de8c574a6be748d37c656b1f667745', '201.230.205.189', '1681788343', '__ci_last_regenerate|i:1681788153;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1070dc7f183f241c29480eba4785a12b2df6455e', '54.233.154.46', '1611133944', '__ci_last_regenerate|i:1611133944;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107205ce011adb61a13d8f84350dc8c3bed96c08', '185.199.221.172', '1671099503', '__ci_last_regenerate|i:1671099503;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10742e6f647a5ac98731f32eeec07984d72774d3', '207.148.127.89', '1694466941', '__ci_last_regenerate|i:1694466941;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10785eebc9e70855ef7ee2d82e53d4d2726b3864', '37.220.93.104', '1686436497', '__ci_last_regenerate|i:1686436496;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107bb92c6ed146d6435370be1c6a0ee8941ff2c8', '167.94.138.44', '1654047819', '__ci_last_regenerate|i:1654047819;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1096851509af28621b895095607a9645adb016f5', '3.71.82.35', '1695987776', '__ci_last_regenerate|i:1695987776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a5f22f06fbdc4715f2ed5afbf270ec8c341a6f', '54.229.216.229', '1680861715', '__ci_last_regenerate|i:1680861715;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a608f12c19060050f0ea68c0fa62399c1e37df', '190.237.172.147', '1613292667', '__ci_last_regenerate|i:1613292224;local|s:1:\"1\";listaVenta|i:168;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613291006\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b76e84e407b9cda7718f207675d4a78c68534d', '35.212.26.22', '1692444723', '__ci_last_regenerate|i:1692444723;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10bcb4c780da525ab62cc58c1408af61436c493b', '2.57.122.60', '1664443002', '__ci_last_regenerate|i:1664443002;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10c2e10b38cb69dd3b76b65795234b85182b180c', '45.225.216.151', '1623898285', '__ci_last_regenerate|i:1623898049;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10dc3a708155a5f125615394702c49a13bb6fb03', '167.71.161.61', '1662801211', '__ci_last_regenerate|i:1662801211;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e13f67198d80d3e7c7600833dda0c925cf14ca', '18.190.152.34', '1677554157', '__ci_last_regenerate|i:1677554157;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e1f44d6e34642a842921415b04a0234ef7473e', '198.235.24.43', '1662469071', '__ci_last_regenerate|i:1662469071;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e288954983fdd7130a6f7df176d48cf14b14c5', '64.225.10.189', '1697109731', '__ci_last_regenerate|i:1697109731;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e32df7fe6eea436e4b89ae421cfb18f40e8663', '38.25.16.38', '1694654252', '__ci_last_regenerate|i:1694654240;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694654201\";last_ip|s:15:\"201.230.205.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e9f332204c052928e38eb3de400eca0db93306', '183.136.225.44', '1688251013', '__ci_last_regenerate|i:1688251013;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11128742d51b392776ca9402591a73970fefe3f7', '205.210.31.57', '1695610206', '__ci_last_regenerate|i:1695610205;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11134cc0538bbad93d2d7126cbfc60a0e45822ad', '179.6.212.129', '1615312639', '__ci_last_regenerate|i:1615312639;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1113f0abb308539c4e01bae789f0a30499a23820', '183.136.225.46', '1682307435', '__ci_last_regenerate|i:1682307435;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('111578ce4ff92fd135dbd6b0a7dd023905abc819', '101.68.211.2', '1671558085', '__ci_last_regenerate|i:1671558085;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('111685b378508936c8fbe156d7a86188691c44b2', '205.210.31.37', '1684790008', '__ci_last_regenerate|i:1684790008;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1129b844b146e735c8b1fa1aa3ed2939bb87ef8a', '103.108.229.61', '1680804642', '__ci_last_regenerate|i:1680804642;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1131ee07a7deba55cd375b87d798d0fd05d9ea2d', '15.228.83.144', '1622650240', '__ci_last_regenerate|i:1622650239;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11459b6ca6aa02dc911f529ca3a71052ba06c2fa', '198.235.24.40', '1665093059', '__ci_last_regenerate|i:1665093059;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11495c473d607aab50afd7056d01c5024a68efe0', '186.1.135.133', '1612273256', '__ci_last_regenerate|i:1612273255;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612209828\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1151981c1007c88e539b20253a9e578a7de0339d', '186.1.135.130', '1617045678', '__ci_last_regenerate|i:1617045440;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('116524e843de0d428caf6373a29318d6908f0ca7', '205.210.31.158', '1697221804', '__ci_last_regenerate|i:1697221804;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1169044b6b6de5d4cc2634275fd4de93c535a23d', '205.210.31.240', '1691164760', '__ci_last_regenerate|i:1691164760;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('116d070ceb6dc1cc79cbb74df89a55a9016503b2', '186.1.135.134', '1618600891', '__ci_last_regenerate|i:1618600568;local|s:1:\"1\";listaVenta|i:155;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618590832\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11804290efce9b8d7314eb3527adcb3235f2e95c', '165.227.113.209', '1633403894', '__ci_last_regenerate|i:1633403894;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('118ed123eb87446d5b2d962b323a398a743e4fee', '183.136.225.44', '1677853329', '__ci_last_regenerate|i:1677853329;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1198a12c32795a758213ba5f8c406951ab871c6b', '18.222.251.87', '1613564058', '__ci_last_regenerate|i:1613564058;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119f93b909294e749c1e8e69c3d318cb64e6df9d', '205.210.31.158', '1695017113', '__ci_last_regenerate|i:1695017113;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ac099d3e4d3b57f453bb2c39f8dc30a501c517', '::1', '1598317163', '__ci_last_regenerate|i:1598317155;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1586467356\";last_ip|s:15:\"181.176.121.107\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|i:0;beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11c5ba167aee58f1ec26ef0621ad6ac8a1dd637e', '167.248.133.185', '1678478832', '__ci_last_regenerate|i:1678478832;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11cd7eeb4c84c6fee9d9a061a5faff921ed4a94e', '186.1.135.142', '1614629413', '__ci_last_regenerate|i:1614629143;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f35284dd5a389c36b3ef9748adc2a62be3aa9e', '92.118.160.13', '1628366760', '__ci_last_regenerate|i:1628366760;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1213095698ad3fd31b562eff79b00541f4dcd32c', '190.239.192.47', '1622567270', '__ci_last_regenerate|i:1622567164;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622556802\";last_ip|s:14:\"190.239.192.47\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1216540471bc6ae26d69e998f0dafa312305a7bc', '198.235.24.8', '1659736279', '__ci_last_regenerate|i:1659736279;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122c1f7a207458a10c166bd5bcee5a21ffc87a7c', '106.53.83.56', '1628042008', '__ci_last_regenerate|i:1628042008;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124b6ca1e8b5928437f0d622851a8b7990e04318', '201.230.205.217', '1671213820', '__ci_last_regenerate|i:1671213820;local|s:1:\"1\";listaVenta|i:133;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;error|s:57:\"El ruc, tipo de documento y documento ingresado ya existe\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1252c4a0348907fe9e4295666bd9f8e9e932657e', '144.91.106.14', '1678530003', '__ci_last_regenerate|i:1678530003;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12553828f9e7f971efd518262e172a2bd85b7dc6', '198.235.24.43', '1677677497', '__ci_last_regenerate|i:1677677497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1261af46be55d33cb7efcb4d01857ba927f50814', '34.244.20.218', '1636577336', '__ci_last_regenerate|i:1636577336;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12879877b4dd90af314ee284052771a11cbe487e', '92.118.160.45', '1621779900', '__ci_last_regenerate|i:1621779900;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1296a20ce30e96385ebe4cba73f3ebacc3f3f23c', '186.1.135.79', '1611947187', '__ci_last_regenerate|i:1611947156;local|s:1:\"1\";listaVenta|i:386;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129e016ad69e8ba9122a75effcf3e2284ef96775', '186.1.135.129', '1618242326', '__ci_last_regenerate|i:1618239606;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12a3d7fc2e9591efa8a72e7ea7e7eb3766ec426e', '162.142.125.211', '1658851914', '__ci_last_regenerate|i:1658851914;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12aaa39da9f14d9782ab5e6634b5e244ce7919ec', '46.101.157.99', '1661647289', '__ci_last_regenerate|i:1661647289;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b68316376a4bd14fe1485798816d2651cb8ffa', '181.64.14.62', '1672369809', '__ci_last_regenerate|i:1672369751;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672369749\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12bf70addc10f766ffa672da2c37f5bcd3aae3f2', '201.230.205.235', '1695397836', '__ci_last_regenerate|i:1695397803;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694654246\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c4cb8bbd16cab12b33a80e756095967e96a78b', '104.198.240.71', '1655915067', '__ci_last_regenerate|i:1655915067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ca6b922bd01212fc75e5d3b3c981192ef5f501', '::1', '1598608152', '__ci_last_regenerate|i:1598608152;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12cb527a3774879281fcc1761fa3b3ffc0390e81', '38.25.16.150', '1670900755', '__ci_last_regenerate|i:1670900755;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670874527\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d18d63a9b5b7f321eaf1a94d288a90a9cb16ba', '45.225.216.152', '1625061745', '__ci_last_regenerate|i:1625061679;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625025047\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12e23b58e19b51101e35c34c6cadb85dfbe183d2', '45.225.216.152', '1625192382', '__ci_last_regenerate|i:1625192382;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625150754\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1308c74fb45a9f4ab6865165fb750546d2c8b924', '144.91.106.14', '1666570230', '__ci_last_regenerate|i:1666570230;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('131643d67f31336136321d26c6ee4b07c38298f2', '162.142.125.10', '1677640290', '__ci_last_regenerate|i:1677640290;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1345e3fc9a77b0fdd76bad2c83e077e7ca47da95', '179.6.212.129', '1615564241', '__ci_last_regenerate|i:1615564225;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615563891\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('134ecd41347c69e14789e22bd7ed0b9ca3b74f99', '198.235.24.184', '1677308037', '__ci_last_regenerate|i:1677308037;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('136663ce4789bc99c53dd97c538b57685be98f2a', '179.6.222.7', '1617977673', '__ci_last_regenerate|i:1617977468;local|s:1:\"1\";listaVenta|i:204;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('136cc1d45ea06d9ca6823bfeca5255103dced172', '198.235.24.170', '1669408817', '__ci_last_regenerate|i:1669408817;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('138998370b305c7294289a90eddf93d378a2d723', '148.102.26.11', '1619813790', '__ci_last_regenerate|i:1619813400;local|s:1:\"1\";listaVenta|i:14;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619798812\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a18a75d6b8092d195b736a16651328214a1c5c', '186.1.135.66', '1616423078', '__ci_last_regenerate|i:1616423054;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616419544\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a602bffa767eb28e257fe6d63bdc7c4ad4221e', '167.248.133.120', '1668694921', '__ci_last_regenerate|i:1668694921;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13bbaf4fb8b1d3b89d062e36ac791023f5ca2957', '148.102.26.11', '1620859200', '__ci_last_regenerate|i:1620859200;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13bcc07822320aacdb0c761bf4a2c61f52e81527', '186.1.135.143', '1615564143', '__ci_last_regenerate|i:1615563891;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615498612\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13c0eb07bf403ccd79b42e335f54b710fc0f32d3', '144.86.173.134', '1628653675', '__ci_last_regenerate|i:1628653675;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13cf68302c99d1ba58d6b481bfba1a7f8bf8be0e', '106.75.130.59', '1693858938', '__ci_last_regenerate|i:1693858936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13eb3c435e688f9efd5d040ca5e46998f6701968', '148.102.26.11', '1619445856', '__ci_last_regenerate|i:1619445567;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('140fc46585e451ceb2b18358d495c009180f05ee', '186.1.135.153', '1618411021', '__ci_last_regenerate|i:1618410338;local|s:1:\"1\";listaVenta|i:14;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618347322\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141053305f63ebe7140da6d30ddc254e', '181.64.223.213', '1624915115', '__ci_last_regenerate|i:1624915115;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1416441c9fe32823e8e66ada2a76f5a7824522d3', '198.235.24.129', '1670041721', '__ci_last_regenerate|i:1670041721;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1424fd2dc6748f08c58df4c1e88771d2174806dc', '148.102.26.11', '1620061680', '__ci_last_regenerate|i:1620061680;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1427063f2f5e11bf43cd3c4b15af2b3d1aa893b1', '205.210.31.45', '1682674523', '__ci_last_regenerate|i:1682674523;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142be38b5aae4c9452babac22e8d4d511d950835', '186.1.135.129', '1617827743', '__ci_last_regenerate|i:1617827527;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000384\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142fc3af1518b34a58325932e7aac1d6138ec17f', '186.1.135.158', '1612897882', '__ci_last_regenerate|i:1612897598;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612878650\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('143048ec2374a1b121f9fd7399ff35789126d15b', '179.6.212.129', '1614778534', '__ci_last_regenerate|i:1614778286;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614777877\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14345d0d2e8fc57903c084e9cf0ec32081e9ca19', '205.210.31.237', '1695087020', '__ci_last_regenerate|i:1695087020;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1450ce3145686cc827a4fb833adfc64e8749eabe', '34.86.35.31', '1623560223', '__ci_last_regenerate|i:1623560223;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14579b30fa4705ebc6697ab49fc70e345860191e', '186.1.135.130', '1617044661', '__ci_last_regenerate|i:1617044397;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1471741561685037249dcc38a4da21575797a905', '190.237.172.147', '1614771430', '__ci_last_regenerate|i:1614771229;local|s:1:\"1\";listaVenta|i:236;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('147617f9219cacba753cca597642209fc1f43890', '167.94.138.49', '1688046891', '__ci_last_regenerate|i:1688046891;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1478c8dd1a660c97fc4ff7bac889b2fa75d267c5', '181.67.2.242', '1687993237', '__ci_last_regenerate|i:1687992948;local|s:1:\"1\";listaVenta|i:592;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968167\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('147e464077f6cee7da734435abc218b1d278a8f0', '181.176.107.88', '1676489706', '__ci_last_regenerate|i:1676489703;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1676476017\";last_ip|s:14:\"181.176.107.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1481161c34c21edebf26000f5ef9f958ba00bdd0', '38.25.7.251', '1652384943', '__ci_last_regenerate|i:1652384907;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1486675e7553e6d01503bdc038f6e1a2766c0041', '45.225.216.151', '1623418053', '__ci_last_regenerate|i:1623417924;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623332925\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148cf30c4eb45f7eba27ceb2a05e51bae1f4248e', '47.128.58.207', '1695580852', '__ci_last_regenerate|i:1695580852;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a42979b80ddc5547008c4480976df3a70d6af5', '186.1.135.141', '1612458172', '__ci_last_regenerate|i:1612456906;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612454362\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a99c82acdbfe3eac413f352edfb18275c828f6', '139.155.54.119', '1623406680', '__ci_last_regenerate|i:1623406680;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c1b9677db23e239f9b97ca33277f9e', '45.177.196.194', '1670874001', '__ci_last_regenerate|i:1670874001;local|s:1:\"1\";listaVenta|i:0;error|s:64:\"<p>Error de inicio de sesión, por favor inténtelo de nuevo</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c44080c2233d0911289d3f7a961a7de02f783e', '179.6.212.129', '1614704786', '__ci_last_regenerate|i:1614704674;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14db18d20d5a8b071d67e3b15e8f2775a9a1651c', '148.102.26.11', '1621027753', '__ci_last_regenerate|i:1621027753;local|s:1:\"1\";listaVenta|i:101;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621002037\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150b2df6a8cb7c3b1875838af564ce6131c4013c', '186.1.135.154', '1618515575', '__ci_last_regenerate|i:1618515257;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618414864\";last_ip|s:13:\"186.1.135.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15245dc9630cf777bb44aa3a6f92599f9f61a76b', '186.1.135.134', '1618591239', '__ci_last_regenerate|i:1618590830;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618589046\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('152d3e53c7585bb40d4cd6072e1b900d901b90c1', '92.118.160.57', '1613859971', '__ci_last_regenerate|i:1613859971;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154002b2a5e58a89422d05a3dd73a1fb20d4da03', '167.94.138.44', '1654047819', '__ci_last_regenerate|i:1654047819;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154471a7592b2993258bfe06c88a9207b3ff0c57', '186.1.135.134', '1614093505', '__ci_last_regenerate|i:1614093238;local|s:1:\"1\";listaVenta|i:223;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1559e5a91fc9e43f101f5cb039986bc1a9e13452', '62.4.14.198', '1634119764', '__ci_last_regenerate|i:1634119764;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15627e7870899243e2726c96f27f7b847f80bbad', '35.202.219.132', '1655974043', '__ci_last_regenerate|i:1655974043;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1572fd3eeab9ae3e6ece3d01d4a44f4d256981a3', '144.86.173.26', '1629568492', '__ci_last_regenerate|i:1629568492;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1597c5f84ae9a66201bb177b9803e23b40fced6b', '45.177.196.194', '1681912893', '__ci_last_regenerate|i:1681912819;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681789340\";last_ip|s:11:\"38.25.26.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15aa864bed3c0776a420d4402e7b7cf46373f1b1', '181.176.117.184', '1672424360', '__ci_last_regenerate|i:1672424360;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b6a42c8dddbd46f395df3e6163072bc4fb2ee4', '148.102.26.11', '1621021079', '__ci_last_regenerate|i:1621021009;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621002037\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b9225390ffbd372fac4da44dfe0e2590e46d12', '144.91.106.14', '1666570231', '__ci_last_regenerate|i:1666570231;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e54b5a10c9c3ef26c2e8a38a2f948d0d87cc94', '198.235.24.84', '1685395830', '__ci_last_regenerate|i:1685395830;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f4592edb0f057daa205cea077c541a090f4e32', '198.235.24.135', '1659572405', '__ci_last_regenerate|i:1659572405;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f8b1c17938a385a012c8da379b5486c7d3ad97', '207.148.127.89', '1694466940', '__ci_last_regenerate|i:1694466940;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1608ec59430c515e0a7478a6c3bcd88de22bd35f', '148.102.26.11', '1621002973', '__ci_last_regenerate|i:1621002036;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621000549\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16173ec4e793aff46bd41d56badbbd92a6c4cd3c', '198.235.24.183', '1686387153', '__ci_last_regenerate|i:1686387153;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('161858d354aa384fdd52ef75b312e30318edf71a', '167.248.133.185', '1680917523', '__ci_last_regenerate|i:1680917523;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('161f58cde37378fa279ab36b5979ea0b56a11016', '198.235.24.20', '1686611456', '__ci_last_regenerate|i:1686611456;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1632c2b386ca91c35097bb6bbb60c3337cbabb7c', '198.235.24.139', '1663394956', '__ci_last_regenerate|i:1663394956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1633ec08f1b0badac27e5bc4a72f29be1de32d0f', '3.249.130.134', '1629615486', '__ci_last_regenerate|i:1629615486;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1665212b0fdae8a7b00fc2e53543e98f91bb9c91', '186.1.135.79', '1611930327', '__ci_last_regenerate|i:1611929690;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611926657\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166ab68bb3d3e1fa808f92ae424f6f0009f05ab1', '190.239.78.92', '1620662887', '__ci_last_regenerate|i:1620662887;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166bec05f95f90657bfda4fc94a07eafe7e5af4f', '38.25.16.184', '1698960601', '__ci_last_regenerate|i:1698960601;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166f536726ed4c654561ad6b645c21a6804027ec', '104.131.72.60', '1691654545', '__ci_last_regenerate|i:1691654545;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1675d1ee73808c59220b07e40080b0442d9525a1', '35.222.19.61', '1656088072', '__ci_last_regenerate|i:1656088071;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('168f8113786a83e4a62863a1cb3400f07d87d463', '146.112.244.254', '1622579959', '__ci_last_regenerate|i:1622579759;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622572881\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169b519e75edef324964f0d338b594d17dccbb4b', '69.167.12.34', '1680859109', '__ci_last_regenerate|i:1680859109;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169d907645fc234598938ba0af66e2f0bee59891', '128.199.48.29', '1693020246', '__ci_last_regenerate|i:1693020246;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a67c9213f2617f7d76732d6f68f67df20ab6b0', '205.210.31.149', '1691266349', '__ci_last_regenerate|i:1691266349;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a9ab690f244dc2bc531edfa9d8c39a3b08f59a', '132.184.130.166', '1612539741', '__ci_last_regenerate|i:1612539740;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ac459d61f2091962bcd2179e9a391b64266f03', '199.203.59.201', '1688330720', '__ci_last_regenerate|i:1688330720;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16cdd90e3895d802752811c51dd4fe203e4677fc', '34.96.130.7', '1635495103', '__ci_last_regenerate|i:1635495103;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d6257b98496f83f18a874f7164f0d7c27ae7c6', '198.235.24.131', '1666479269', '__ci_last_regenerate|i:1666479269;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e416f530835c2b2a7535f45ace1d93ed146c72', '205.210.31.37', '1682780934', '__ci_last_regenerate|i:1682780934;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e67e4778b798a61619d4a25dd7b0321b669f2b', '34.68.135.131', '1658015812', '__ci_last_regenerate|i:1658015812;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171751baed39af9e23e1b48cbfea8c87b08aa520', '186.1.135.130', '1617052195', '__ci_last_regenerate|i:1617051954;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171f5a668333114073a9d0794aa393ec79cac122', '132.184.129.157', '1618505474', '__ci_last_regenerate|i:1618505411;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617729735\";last_ip|s:15:\"132.157.129.160\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1732597192defb0a648acfafe159799ea78e2ab9', '87.236.176.157', '1676310455', '__ci_last_regenerate|i:1676310455;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('173ec661bff35f24a62f3acc703bcd81c4716e41', '190.236.3.248', '1612544586', '__ci_last_regenerate|i:1612544584;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17427194a5b1440e8bfe22e211bcdcc3b949db0e', '38.25.7.251', '1652451092', '__ci_last_regenerate|i:1652451090;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652369091\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('174977a2ffd06e55e9f78c624df5516a8977f504', '101.68.211.2', '1682982869', '__ci_last_regenerate|i:1682982869;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('176dac46909474018f186221cf39b98a1871bc3c', '186.1.135.143', '1615415136', '__ci_last_regenerate|i:1615414832;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615413018\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('176e9b7ea2fd77649c40187fa4a69217585355e7', '205.210.31.5', '1653123648', '__ci_last_regenerate|i:1653123648;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177c8f0bcb5dfd0b9eda0cc68e0333f130d29070', '162.142.125.41', '1636693497', '__ci_last_regenerate|i:1636693497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a9514339a390cb1e420aaeb4232ee6d2314e5f', '35.93.107.150', '1669649127', '__ci_last_regenerate|i:1669649127;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ab3d669bbb53b5bbd8b85da437cd70670941ae', '163.172.180.25', '1659030623', '__ci_last_regenerate|i:1659030623;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ade0f4127e4b51e4b4948045c66ab23582ee58', '45.225.216.151', '1623105305', '__ci_last_regenerate|i:1623105304;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623079921\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b02787fb49e6c4f38b5d37b6030db65e6e1883', '186.1.135.133', '1612275608', '__ci_last_regenerate|i:1612275495;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612209828\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17bf0bd1cbc85cb9a2372e2fe249cc37b2ddf3bf', '34.133.61.90', '1655545946', '__ci_last_regenerate|i:1655545946;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17d368a30dcf6cd5ebb333dc0a253722ff79cea1', '167.248.133.184', '1681993873', '__ci_last_regenerate|i:1681993872;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e6ebdfa3e14e9eae451a3b0ef30b914334f758', '148.102.26.11', '1621278878', '__ci_last_regenerate|i:1621272599;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17eacd4efa17631c63d27ddf918c987e9d667dd5', '167.94.138.34', '1679217253', '__ci_last_regenerate|i:1679217253;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ecf84164e0afcc929341e6b868c69bc7563a9e', '3.252.96.32', '1667435202', '__ci_last_regenerate|i:1667435202;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f7742ef1a2fb00fa8a2e2308b67df8', '181.67.2.242', '1687968130', '__ci_last_regenerate|i:1687968130;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17fa4003d14b9706d70c2a004e3754bd35f2e543', '167.94.138.125', '1689087665', '__ci_last_regenerate|i:1689087665;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1802d3d340b57a499ea2877e078c11281319d7ed', '186.1.135.131', '1614290535', '__ci_last_regenerate|i:1614290235;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614282418\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('180d5c2421fe4b5ab7c34fe4e433cb8100e363fb', '148.102.26.11', '1619792191', '__ci_last_regenerate|i:1619791924;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('181754f3764f437eb7e95cf5f95449e77a94fc3c', '186.1.135.66', '1616421963', '__ci_last_regenerate|i:1616421845;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616175755\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182eb09a3e67056d5d3ced3f1782b3ad7d531562', '87.236.176.61', '1673192586', '__ci_last_regenerate|i:1673192585;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18497fc34ebecfbb0ae79bcb514090f597a4d7c8', '38.25.16.150', '1671212713', '__ci_last_regenerate|i:1671212530;local|s:1:\"1\";listaVenta|i:80;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203125\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1856ce34ac3f781d22f76accafdd5a7c85a00fca', '181.67.2.242', '1688141017', '__ci_last_regenerate|i:1688140985;local|s:1:\"1\";listaVenta|i:96;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688095277\";last_ip|s:14:\"190.234.141.82\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186227a6770dab3ce0daf7911d67011a0a5737ac', '23.97.205.210', '1682616972', '__ci_last_regenerate|i:1682616972;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18796989d9d2c9dbf689402f75e44e01af4a6e83', '186.1.135.131', '1618344427', '__ci_last_regenerate|i:1618344090;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18839aba64ad4fbec6ea7e065959c368718b1df8', '186.1.135.134', '1618589070', '__ci_last_regenerate|i:1618589041;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618587153\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188e442bd4dd0ac11d093d6b8be2f876e2793e55', '3.79.113.133', '1695792515', '__ci_last_regenerate|i:1695792515;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188ecebfdceb04ff9999d4081dffdfee40ed1bf3', '201.212.119.152', '1614056275', '__ci_last_regenerate|i:1614056186;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1613582098\";last_ip|s:14:\"190.236.31.249\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";warning|s:64:\"No se encontraron comprobantes para enviar de la fecha indicada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1890b3d35f81069efe3d5abc848bb817f6fe79f3', '18.202.26.165', '1677803410', '__ci_last_regenerate|i:1677803410;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189f22edf366c93dc9409fcef60966365dd06bc9', '2.57.122.25', '1697156246', '__ci_last_regenerate|i:1697156245;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18a6dbe566512396e72431ff5627ed97069b2b28', '15.228.37.250', '1611299564', '__ci_last_regenerate|i:1611299564;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18aadbe83940cf919cd17d036ec40e082ddbe8b0', '186.1.135.129', '1617813693', '__ci_last_regenerate|i:1617812914;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18ae583108cab507a0af1c038ef2c3b46e57b271', '179.6.212.129', '1614871612', '__ci_last_regenerate|i:1614871598;local|s:1:\"1\";listaVenta|i:94;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614870227\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d47a10041590774b5475f55ed7da4fb9e6fa44', '143.198.9.75', '1660164244', '__ci_last_regenerate|i:1660164244;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e66a3a3ff9d16091adb9d8d18fc3ff49d7cfa6', '104.197.91.55', '1655642607', '__ci_last_regenerate|i:1655642606;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f29dfa7681f067d9aeb27a6493de62905ed52d', '167.248.133.191', '1692894796', '__ci_last_regenerate|i:1692894796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f99fb624295a5b18598041ed063c2216c89f70', '167.94.138.60', '1636693496', '__ci_last_regenerate|i:1636693496;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191044b59ff5bb918c1facdca11b705f', '161.132.234.14', '1624915057', '__ci_last_regenerate|i:1624915057;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19111a3e7f6b8e7b1bae996f80665068ad0616f4', '181.176.124.89', '1675884146', '__ci_last_regenerate|i:1675884027;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675870753\";last_ip|s:15:\"181.176.113.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1914f704f260fa8b795fb7f48b4f96dd643e1bac', '201.230.205.217', '1671207427', '__ci_last_regenerate|i:1671207423;local|s:1:\"1\";listaVenta|i:133;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19196e88d6a700e122279c00ad90e67b73617be8', '190.239.78.92', '1620661609', '__ci_last_regenerate|i:1620661351;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191b8fb75900835ca74be7d270c07952dd198bca', '179.6.212.129', '1614708249', '__ci_last_regenerate|i:1614708082;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193636f5086129fccdecca30591333655e81b264', '205.210.31.185', '1679112838', '__ci_last_regenerate|i:1679112838;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193748aef6776aecb02dd952a1ffa211648180ef', '54.91.214.199', '1654293231', '__ci_last_regenerate|i:1654293230;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193898e326be4e6db2791ec488c27b3e9e3aa95d', '209.17.96.66', '1612252115', '__ci_last_regenerate|i:1612252115;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19399f70eb0e8005882d07becbeb5f37a6a66752', '35.93.107.150', '1669649127', '__ci_last_regenerate|i:1669649127;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1942a727180895a74e7b9539b459ea1b13abd8d4', '186.1.135.134', '1615830599', '__ci_last_regenerate|i:1615830383;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194f9b8471deb6b89669df29b4f6a17dee721a9e', '3.239.158.19', '1611123679', '__ci_last_regenerate|i:1611123679;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1963718d2eb3b07c4629a7c57cb968f9efaa0ae1', '52.71.27.229', '1654293261', '__ci_last_regenerate|i:1654293260;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1964bf83dfad46372d15a2853327fb7f85bd57b1', '179.6.212.129', '1614876578', '__ci_last_regenerate|i:1614876578;local|s:1:\"1\";listaVenta|i:94;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614870227\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196f9eca01b4a78874f099dabe08f671ea0fbab4', '167.248.133.61', '1653073568', '__ci_last_regenerate|i:1653073568;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1973cf4603539fd22cd0b95ff5f3cdac33c70720', '148.102.26.11', '1619791024', '__ci_last_regenerate|i:1619790881;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197d4f147ff8dbe5a33a91b63e8b178a015b421a', '162.142.125.7', '1677471249', '__ci_last_regenerate|i:1677471249;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197ebd5bee8b8d8fb720d32574ec2f73c9129f41', '186.1.135.138', '1613053579', '__ci_last_regenerate|i:1613053216;local|s:1:\"1\";listaVenta|i:1705;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19a38e6afc2c6b0f855709adae8e1d729fe76db2', '51.255.62.0', '1654335006', '__ci_last_regenerate|i:1654335006;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19cc29deb57657596b64eae1eba70d96d7e5c5e6', '186.1.135.71', '1613664318', '__ci_last_regenerate|i:1613663961;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613655953\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19ed181c7d54e6fd6062e1b3a72dae8ec260cc35', '167.248.133.62', '1666144679', '__ci_last_regenerate|i:1666144679;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a1202629cb9e660077e1ff80d4fa13a62d7fc68', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a177e7d19ae8c85bc77280a4950f0b3991b4aad', '205.210.31.146', '1657989660', '__ci_last_regenerate|i:1657989660;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a1dc18f1b6bd532d8a065fb2c4d7f41e031aad4', '181.176.97.28', '1676649391', '__ci_last_regenerate|i:1676649098;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1676583651\";last_ip|s:15:\"181.176.109.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2a04343e0dd2d1c471f94d48df2f84995797fa', '205.210.31.60', '1694545656', '__ci_last_regenerate|i:1694545656;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2da71fd257017a407cda32e400be68130a1a75', '162.55.185.16', '1656436817', '__ci_last_regenerate|i:1656436815;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a321975e27f73b14e484e6acc91c522964f41c7', '179.6.212.129', '1614696986', '__ci_last_regenerate|i:1614696718;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a427797e0460cfd0f048a5d29a8aa5a0f13d115', '195.211.77.140', '1696391401', '__ci_last_regenerate|i:1696391401;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5c44a9f0b61bbb403e87cc4762d65b4da6dceb', '162.142.125.221', '1656611163', '__ci_last_regenerate|i:1656611163;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a65f2d669850d36d106d3dc674b3e0b40b522b2', '148.102.22.241', '1615912816', '__ci_last_regenerate|i:1615912781;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615911078\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a86cff8436139143b3c39de62e2b8e3b5f20ac0', '198.235.24.2', '1655817265', '__ci_last_regenerate|i:1655817265;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aaed1d19784ffc01efaa52c12436700cb60bc57', '::1', '1598321191', '__ci_last_regenerate|i:1598321125;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598317159\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aba1635f3996498bf21e6bf9fed0996f1c831e6', '3.120.172.137', '1674220045', '__ci_last_regenerate|i:1674220045;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ad5bb61cda05c7c41edae6ff9d394c7220ddc8b', '186.1.135.134', '1612796427', '__ci_last_regenerate|i:1612796263;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afa6934d34554ace38928ff4cfa790d197e362d', '107.150.63.174', '1621359582', '__ci_last_regenerate|i:1621359582;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afbbd452e42605a77e0082218e08f01bf2b31e3', '146.70.166.232', '1680847021', '__ci_last_regenerate|i:1680847021;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afd98ad267b9f3f9083480f8033196116ef7333', '45.225.216.151', '1623252617', '__ci_last_regenerate|i:1623252316;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623159603\";last_ip|s:15:\"186.141.135.236\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b0303c921e3a3e4eb94bcc867ae69a1a2fe6c70', '205.210.31.3', '1677964191', '__ci_last_regenerate|i:1677964191;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b03dff22b815fafef4641e3ea0cc48672842657', '183.136.225.44', '1685955498', '__ci_last_regenerate|i:1685955498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b0d1a9316b4ee2080c237913e3e9d0c43b287e8', '186.1.135.141', '1612443711', '__ci_last_regenerate|i:1612443472;local|s:1:\"1\";listaVenta|i:36;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612364658\";last_ip|s:12:\"186.1.135.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b19c8688ab41a58d763963b3d35b6e909075b5c', '205.210.31.183', '1662767488', '__ci_last_regenerate|i:1662767488;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b1dd529f2ce8e0717c214e1491055c9dca974d0', '162.142.125.41', '1636693497', '__ci_last_regenerate|i:1636693497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b35a3e768c310528634062293162084df4f2dc2', '186.1.135.132', '1615497560', '__ci_last_regenerate|i:1615497246;local|s:1:\"1\";listaVenta|i:28;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615479965\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b35dc15d3da73736ea062fbf8b1f1ccf21e6fcc', '15.228.124.8', '1621735435', '__ci_last_regenerate|i:1621735434;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b37a8a26c232151e1164607add2b2af17be740d', '185.3.94.68', '1668919087', '__ci_last_regenerate|i:1668919087;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4b65695e4999d4b511164fd87ce989468c4859', '92.118.160.5', '1624720568', '__ci_last_regenerate|i:1624720568;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5fda5213e82c164c299b04b4179906b3fbffaf', '::1', '1598618113', '__ci_last_regenerate|i:1598618113;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b64e2a5f485e6301e7ca40815e593bec4dff8d1', '144.91.106.14', '1678530004', '__ci_last_regenerate|i:1678530004;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b6750ab465180c964fef95f68f79e0e7a1ce86d', '65.154.226.167', '1691553844', '__ci_last_regenerate|i:1691553844;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b6933185611b696fac2941bf041dda32cfd670d', '45.225.216.152', '1625061660', '__ci_last_regenerate|i:1625061367;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625025047\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b7bc577da735daa30c85e5c581dad9650036eeb', '18.231.137.138', '1622315883', '__ci_last_regenerate|i:1622315883;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b853c5f91efa2349dcbc58b951da8a2c2c3aa9f', '34.254.53.125', '1668926990', '__ci_last_regenerate|i:1668926990;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b894931630e57c0dd20c4bdf3edf6c8619fa33f', '190.239.78.92', '1620666917', '__ci_last_regenerate|i:1620666640;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b92ee3eb48e445497c682139345b2fadd8dd722', '148.102.23.16', '1619632650', '__ci_last_regenerate|i:1619632407;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619630873\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb5126114cb9ac15c24c4fbea5409966c75e233', '190.237.172.147', '1613292884', '__ci_last_regenerate|i:1613292667;local|s:1:\"1\";listaVenta|i:246;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613291006\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb6719805cf27de9d77d27f62015b377221f6b2', '15.228.81.185', '1622070809', '__ci_last_regenerate|i:1622070809;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bbaf09124de0eafca1bb3bc1af09c11735e7d08', '34.254.53.125', '1668926973', '__ci_last_regenerate|i:1668926973;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc251b0cecad95ea5da2a5fbd356174805b3b88', '34.247.136.3', '1691283552', '__ci_last_regenerate|i:1691283552;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bcbc3fa5578391bb11205aa09cbc335df8624ef', '54.233.133.239', '1622221735', '__ci_last_regenerate|i:1622221734;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be2f3d10a449abc7e7e14fdf58aab370f51780e', '201.230.205.189', '1681788847', '__ci_last_regenerate|i:1681788844;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be2fe9505adb0f74211bb831d6bcf4c7737072d', '198.98.48.183', '1666090287', '__ci_last_regenerate|i:1666090287;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf6380586da1693d5e9310747c62f895aacb631', '183.136.225.45', '1694841320', '__ci_last_regenerate|i:1694841320;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf7b400a511d4ff1b4d723fa61dcd697952dcb4', '79.125.63.45', '1685884678', '__ci_last_regenerate|i:1685884678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bfab7baeefe370ec031bb5976828626c766e3f9', '54.236.58.2', '1629213327', '__ci_last_regenerate|i:1629213327;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3a02dde0d9016afcc7309a067096745eae65fd', '18.136.72.135', '1623511666', '__ci_last_regenerate|i:1623511666;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3b87fd1597320f8c0e7e567199a43e56d3c8c5', '183.136.225.44', '1681126529', '__ci_last_regenerate|i:1681126528;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3bd4e539ad9643f123ed40cc6de7b47015b2ef', '161.132.234.14', '1626056987', '__ci_last_regenerate|i:1626056974;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1626039027\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c467447f6f73748d52411bc36252f55dc09c489', '186.1.135.137', '1614178133', '__ci_last_regenerate|i:1614175064;local|s:1:\"1\";listaVenta|i:122;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614113393\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c47113258e26307408d38b84c7e6b71deef4a53', '185.225.74.198', '1682097183', '__ci_last_regenerate|i:1682097183;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c4c2b687eba5345361f668e665fff52f1fc317a', '205.210.31.134', '1653273596', '__ci_last_regenerate|i:1653273596;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c559609a32d99e2ab1e5e5e9c91724e8c117938', '92.118.160.57', '1630166210', '__ci_last_regenerate|i:1630166210;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c65363ade41e02f1965241fdb8126af771ef0ba', '51.81.167.146', '1676523766', '__ci_last_regenerate|i:1676523766;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c65614e585cd6fc755d7873cefe29e28c1dda93', '186.1.135.144', '1615297452', '__ci_last_regenerate|i:1615296939;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615296508\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c94b85e2338509c1058581c0ba13f5d13e71e3f', '169.150.201.24', '1681341897', '__ci_last_regenerate|i:1681341897;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c9f900961ea8273e9b61f804cef674a72d00fdc', '164.92.151.124', '1690449833', '__ci_last_regenerate|i:1690449833;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cade14b32e223f84d20c911600bd2fe7d29f0b3', '186.1.135.71', '1613662116', '__ci_last_regenerate|i:1613662017;local|s:1:\"1\";listaVenta|i:78;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613653607\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb99a3816cd020ac3300e51cb07804384a5a2e2', '148.102.26.11', '1619193471', '__ci_last_regenerate|i:1619193167;local|s:1:\"1\";listaVenta|i:2069;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cc65ceeaa717fd0cc47b180baf8d416a221c6b7', '2.57.122.19', '1637235889', '__ci_last_regenerate|i:1637235889;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cccad93bfb3ec67427cdf7e9c289fb9c9431cf4', '47.251.15.21', '1689782423', '__ci_last_regenerate|i:1689782423;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cdf600e4b3e2aa69f34bbdee0b4e37b02c5b381', '198.235.24.166', '1693015147', '__ci_last_regenerate|i:1693015147;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cedb8dd458af739ec2a570e562fabde9ba4b253', '186.1.135.131', '1617650390', '__ci_last_regenerate|i:1617650390;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617629517\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ceef8556b083767b76485ab48b2561605b4888e', '148.102.26.11', '1619789832', '__ci_last_regenerate|i:1619789455;local|s:1:\"1\";listaVenta|i:256;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cfb62aa0f462d7801f9f210dca7f811a6618ee1', '162.142.125.9', '1661700820', '__ci_last_regenerate|i:1661700820;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d05e442db10a2087595124eeeccbe80743a1973', '186.1.135.136', '1617912635', '__ci_last_regenerate|i:1617912375;local|s:1:\"1\";listaVenta|i:54;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617908137\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d11f5f71689ed1eefd1ea7ea04b68b9647cb4f0', '167.71.223.167', '1698153266', '__ci_last_regenerate|i:1698153266;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d18df385b6d9ee8b73a393502543d389772c3c0', '186.1.135.129', '1618239516', '__ci_last_regenerate|i:1618239097;local|s:1:\"1\";listaVenta|i:15;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d1eab89ab6c276a9da793a1de76eb2f3519c2b0', '148.102.26.11', '1621526475', '__ci_last_regenerate|i:1621526475;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3540fb705baa91cf5f0a4a97beb46eb2a1c3a8', '198.235.24.8', '1663169103', '__ci_last_regenerate|i:1663169103;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d408b4598f579641a3429875237964e83afc0d6', '188.166.247.165', '1661790690', '__ci_last_regenerate|i:1661790689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d49664c4d14e125817461b753fdbf77538ea48c', '161.132.239.98', '1635263444', '__ci_last_regenerate|i:1635263131;local|s:1:\"1\";listaVenta|i:2;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1634578917\";last_ip|s:13:\"181.64.18.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d50a39098576621e66f0323e219fcc19c632007', '162.142.125.216', '1684773098', '__ci_last_regenerate|i:1684773098;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d53ca12ba87769e110607ca3b818798c0914516', '179.6.222.7', '1617986941', '__ci_last_regenerate|i:1617986665;local|s:1:\"1\";listaVenta|i:1831;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5f7e17ba9666e02be48ac10dd2f02a99d86d85', '161.132.238.121', '1628363614', '__ci_last_regenerate|i:1628363583;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1627626713\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d8776459be449dfa1f691d581e475793f8b1bb2', '36.99.136.142', '1690776337', '__ci_last_regenerate|i:1690776337;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d91a9f3d89875af2aff6a58ed214034132c6c4a', '144.91.106.14', '1680462559', '__ci_last_regenerate|i:1680462559;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d9956ce29577f51050bb1ac984c5d7088973c80', '167.94.138.119', '1676968155', '__ci_last_regenerate|i:1676968155;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da451cbde22b6470351fbabcdaf40bdecae2047', '198.235.24.142', '1679985498', '__ci_last_regenerate|i:1679985498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dbf71fd35a1f86bac797660ceaa1255ee498198', '45.225.216.151', '1621870998', '__ci_last_regenerate|i:1621870998;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de3bfbbb460b5db5cf6dd8c0d56bf7343f83450', '38.25.16.150', '1672369814', '__ci_last_regenerate|i:1672369745;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672350030\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1deeb49f61fef8e8443da08adcfb400183b45286', '186.1.135.129', '1615234852', '__ci_last_regenerate|i:1615234839;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615234680\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e075fb0d93ef045976fc826b6ce5e17612bd2b5', '121.4.238.122', '1658533051', '__ci_last_regenerate|i:1658533051;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e148e34710c2b7db72b01ab43029d2253e79ec6', '186.1.135.141', '1612448969', '__ci_last_regenerate|i:1612448884;local|s:1:\"1\";listaVenta|i:221;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612442480\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3632790f28816a2591c2aefc335917d97fcc85', '38.25.16.184', '1698950576', '__ci_last_regenerate|i:1698950292;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3863909e8925814648f5d75a111e4216925a98', '148.102.26.11', '1621272728', '__ci_last_regenerate|i:1621272478;local|s:1:\"1\";listaVenta|i:116;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621260171\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000450\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e529ae7351428e5fcb01e3085781bde2a76291c', '190.235.45.172', '1671565622', '__ci_last_regenerate|i:1671565610;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671547104\";last_ip|s:13:\"190.239.68.82\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e7a070b79eab0d9a50bc36fefe476db48505095', '162.142.125.9', '1661700817', '__ci_last_regenerate|i:1661700816;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e7aef9e38d4e115722507728e5e21fb7100cdc7', '148.102.23.16', '1618341098', '__ci_last_regenerate|i:1618340790;local|s:1:\"1\";listaVenta|i:111;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618335487\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e93d0dde42c9965efc918cbb974806cdecb5f75', '161.132.239.98', '1637793598', '__ci_last_regenerate|i:1637793590;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637768339\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eb3c2f39a7437ea1d8dd73e93ab2f509acbbc9a', '167.248.133.188', '1679549869', '__ci_last_regenerate|i:1679549869;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eb60a8f148ebcc2e27718600ab0d3408a551c48', '92.118.160.13', '1628366760', '__ci_last_regenerate|i:1628366760;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed27132330d07d408c5aa85164be94f44396c19', '38.25.7.251', '1652481116', '__ci_last_regenerate|i:1652481024;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652451092\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed64514960b082c98f9e725b98d5f5c250bd988', '148.102.26.11', '1619199960', '__ci_last_regenerate|i:1619199679;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619198960\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000410\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee39714941796186e93adab8bc8c0b9f3de5933', '18.231.187.105', '1621793799', '__ci_last_regenerate|i:1621793798;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eecfe380863fe02ed47669a09c43cc634696565', '132.184.130.201', '1612212678', '__ci_last_regenerate|i:1612212502;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612212082\";last_ip|s:15:\"132.184.130.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1efc6958d5aee180975059a321dfdeed2c17b05a', '2.57.122.107', '1673671534', '__ci_last_regenerate|i:1673671530;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0103d726562e75483f017d5d746c368b11b993', '132.184.130.166', '1612541407', '__ci_last_regenerate|i:1612541361;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612537080\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f03b51ab9a4dcbe73e889dd5547f66cf0631c83', '186.1.135.141', '1617213883', '__ci_last_regenerate|i:1617213883;local|s:1:\"1\";listaVenta|i:1155;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f146f7894f9f2c07450e598418fdc22a1573495', '205.210.31.232', '1682140534', '__ci_last_regenerate|i:1682140534;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f15968fb68dc765a54584e5a775fb676fdfc73f', '92.118.160.5', '1623579683', '__ci_last_regenerate|i:1623579683;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f29abf05118548c09e5adc5e8e646460ef97a07', '186.1.135.129', '1617817448', '__ci_last_regenerate|i:1617817166;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f304cb18cc2c33c0905a74d80f9dd1acaf031af', '186.1.135.143', '1615913170', '__ci_last_regenerate|i:1615911400;local|s:1:\"1\";listaVenta|i:7;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3d89a8bad0389f96250d4bb5bfada2f0eb7fc5', '148.102.26.11', '1620052789', '__ci_last_regenerate|i:1620052773;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619812780\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f486637a42d6d1af36df6803a971308b084befa', '186.1.135.159', '1618841255', '__ci_last_regenerate|i:1618841005;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f4f0f35efe3411caa6072ba5bf035438eb3cdff', '167.94.138.34', '1680499129', '__ci_last_regenerate|i:1680499129;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f58a616a56c450fd84748c3102b0774b954ddf0', '148.102.22.241', '1616709957', '__ci_last_regenerate|i:1616709956;local|s:1:\"1\";listaVenta|i:547;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f595b95a7cc31b76107ea89f89a8c08f9526abc', '190.239.66.67', '1620146259', '__ci_last_regenerate|i:1620144662;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620072748\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f77f3e952cd517c3e4518546ccea3cb02e13f2b', '205.210.31.12', '1677344542', '__ci_last_regenerate|i:1677344541;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7cd14577962c96f03406caed7c18fbbc352954', '148.102.26.11', '1619718245', '__ci_last_regenerate|i:1619717910;local|s:1:\"1\";listaVenta|i:210;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619631623\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8a8bd2d11566009a5cc5fb042f0f732b4556ac', '134.175.228.189', '1624434043', '__ci_last_regenerate|i:1624434043;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f961267672b52e6d1de9304a57e82d0ee6fe0d6', '186.1.135.141', '1612455655', '__ci_last_regenerate|i:1612455540;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612444489\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000266\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9c2d6c6486d3bbc2f3be7e7b4269137e0c1c06', '186.1.135.131', '1618342119', '__ci_last_regenerate|i:1618341750;local|s:1:\"1\";listaVenta|i:35;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb7fff98e646190664bbbefa48fcfad710719e1', '190.239.67.117', '1620331659', '__ci_last_regenerate|i:1620331299;local|s:1:\"1\";listaVenta|i:79;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620245558\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc35a8fe7282bf2cb0ae496f0d99bfeb94bdbfb', '186.1.135.134', '1618592640', '__ci_last_regenerate|i:1618591246;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618589046\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fd1dc5f2834f2c3d187e9584b74f5de7d47d016', '47.128.33.66', '1694641320', '__ci_last_regenerate|i:1694641320;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fd531222787f2c8508c588661b5ac33ee71a081', '190.236.0.145', '1617200346', '__ci_last_regenerate|i:1617199773;local|s:1:\"1\";listaVenta|i:461;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe6b83e2bc27496fb1262f9fb889c16e4a825d3', '190.237.172.53', '1616088917', '__ci_last_regenerate|i:1616088911;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe7807facef33b91cc691effcda43f7cedce2b7', '167.248.133.51', '1682990982', '__ci_last_regenerate|i:1682990982;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe79350400ead7a41dc7c1474fbe79480f94385', '183.136.225.44', '1690168965', '__ci_last_regenerate|i:1690168965;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1feed693e8dcb4c1eaab0d0ba44a56cdcdb5f795', '119.23.105.36', '1677857770', '__ci_last_regenerate|i:1677857769;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1feef77508e4dba57aeb89a0c9e3cb4ff7f820dd', '162.142.125.222', '1665414073', '__ci_last_regenerate|i:1665414073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff31ab51a6378a86314cc7aef331340c8c9904f', '38.25.16.184', '1692973827', '__ci_last_regenerate|i:1692973827;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2004e389671bdcd175a075f00a5205f5015b331e', '107.150.59.228', '1619465088', '__ci_last_regenerate|i:1619465088;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20087100bbf91d3de0db6b8f7ff090dff11b736a', '167.94.145.59', '1693865954', '__ci_last_regenerate|i:1693865954;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20231474baebecbd8e8464485b3c784c6197687e', '198.235.24.24', '1655318455', '__ci_last_regenerate|i:1655318455;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('202a794c156a726edc2dabaa9836e5c635ea1e39', '180.163.220.43', '1678594499', '__ci_last_regenerate|i:1678594499;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2035f5671c75f09763a1490d82b5fec7dce2f43d', '128.90.43.225', '1691415482', '__ci_last_regenerate|i:1691415482;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('203a87f25f137a8e4b1e2ea1210a047770f1c383', '51.158.108.61', '1678872127', '__ci_last_regenerate|i:1678872127;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('204b338a36244c985be42494da41375843d4cfaa', '198.235.24.154', '1657956856', '__ci_last_regenerate|i:1657956856;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20521537900aaf9e43dd6ee5b686e2f8233fe8c1', '34.96.130.11', '1623727046', '__ci_last_regenerate|i:1623727046;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('208520355541f62f928ff3fd58faaa11befc110a', '198.235.24.129', '1670041721', '__ci_last_regenerate|i:1670041721;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2089685924a8be2e598d1084d195ac63e9bcc8b2', '186.1.135.71', '1613683407', '__ci_last_regenerate|i:1613683403;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20983528ae598241138ff189cfe5a6d664c2846e', '186.1.135.140', '1614886389', '__ci_last_regenerate|i:1614886389;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614871404\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('209d6b73fe4ec2c5315c3843378d92491b05a816', '198.235.24.149', '1660371590', '__ci_last_regenerate|i:1660371590;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a75dec2c75e067ed480ed99a67b0c8cce1d075', '92.118.160.5', '1613808647', '__ci_last_regenerate|i:1613808647;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20aabc640654d55223173eef20cc80b7b7545a3f', '147.182.240.105', '1697902554', '__ci_last_regenerate|i:1697902554;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c15ec5e9c3537fbb7daceefaddeaf34ee195fc', '195.154.63.222', '1617701959', '__ci_last_regenerate|i:1617701959;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c19fb0a3f0f40c420023b766e21b3c976dba1c', '34.122.113.119', '1655679210', '__ci_last_regenerate|i:1655679210;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20cff12ee803a4eca46d77dfefdac24320384eb0', '190.239.64.130', '1621524633', '__ci_last_regenerate|i:1621524626;local|s:1:\"1\";listaVenta|i:79;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621521540\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d74b40c7df31b6e5c2c49b2590cc88be215b11', '92.118.160.41', '1635611906', '__ci_last_regenerate|i:1635611906;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20db912179ddc45089478c657043f898bd5af3e4', '198.235.24.6', '1687551749', '__ci_last_regenerate|i:1687551749;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20dd111dff0d28d8735934357ffe7f0e5a5c5d25', '186.1.135.129', '1618239644', '__ci_last_regenerate|i:1618239517;local|s:1:\"1\";listaVenta|i:21;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2101926c49445eb2506f6f6dccb196b987529b0c', '51.15.205.3', '1634952796', '__ci_last_regenerate|i:1634952796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210e58ece59708dea3e9f4582635b6be4df002db', '205.210.31.38', '1665851864', '__ci_last_regenerate|i:1665851864;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212b2cfea0b295fd7edd6d1279b62168986d01bb', '45.225.216.151', '1623422999', '__ci_last_regenerate|i:1623422997;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623332925\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2152236f380314b2cf8ce5cd7229c752827507f2', '148.102.26.11', '1620744264', '__ci_last_regenerate|i:1620743532;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620677115\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2158aa6f7c6fdede3bbdd9fa05c8503ae52aea99', '186.1.135.141', '1611849443', '__ci_last_regenerate|i:1611849211;local|s:1:\"1\";listaVenta|i:156;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2172047d0f14ee4bb32a4c8b7ad6154db8c2a19c', '38.25.16.38', '1697665878', '__ci_last_regenerate|i:1697665877;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('217c1d98b283d9b33fa21b17d8f9c00d736645c8', '148.102.26.11', '1621023154', '__ci_last_regenerate|i:1621023152;local|s:1:\"1\";listaVenta|i:101;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621002037\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a2f51ea6a7a6f61362530ca73e4fa9d8c6d490', '186.1.135.142', '1612358926', '__ci_last_regenerate|i:1612358596;local|s:1:\"1\";listaVenta|i:71;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612299033\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ae42ce163e5fa06781a69a4a850c2cd0c27f8a', '34.236.55.223', '1617258298', '__ci_last_regenerate|i:1617258298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21af845db472ba11d9652fd530c0ffe9', '181.64.223.213', '1624915116', '__ci_last_regenerate|i:1624915115;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21b181ed9aeae75ca2d1933ca6e237e20189437f', '161.132.239.98', '1637591474', '__ci_last_regenerate|i:1637591419;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1635797368\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d14e29bc26bc727b365913b882534b87f7f4a9', '92.118.160.61', '1628411678', '__ci_last_regenerate|i:1628411678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f5409461e0ee09f03e4b61c967fd49f02f7c25', '::1', '1598560588', '__ci_last_regenerate|i:1598560328;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598362856\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2201599b51601dc0138c239606be9febc8f169ca', '190.232.180.131', '1611760292', '__ci_last_regenerate|i:1611760292;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22133f4e1244f341203219a98a085d52ba645592', '161.132.234.14', '1623558293', '__ci_last_regenerate|i:1623558269;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623546856\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('222c3442f57c1c3daafd3cca2f95ea77e22b4256', '173.255.252.198', '1661790682', '__ci_last_regenerate|i:1661790682;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223263f766e6fc7b384c30ef7df5906482871291', '34.96.130.10', '1623123675', '__ci_last_regenerate|i:1623123675;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2233fd9242855f6ba33a0c6b61d19e020dc45f59', '205.210.31.156', '1662313199', '__ci_last_regenerate|i:1662313199;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223bc9e4bc2b823473c6932b213c6e114fbf5cb6', '148.102.26.11', '1621003499', '__ci_last_regenerate|i:1621003035;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621000549\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2250db5984b94b4b40ffee262e391c839afcb177', '144.86.173.66', '1629767711', '__ci_last_regenerate|i:1629767711;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('225d6b0e5070ece7ace79ec8917e6359072b4289', '163.172.180.25', '1681983017', '__ci_last_regenerate|i:1681983017;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2260e238a20be2acd41bc63e2c7e99dee89cbc4a', '190.192.49.231', '1615556843', '__ci_last_regenerate|i:1615556550;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1614611178\";last_ip|s:14:\"190.239.238.60\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('226e8553b144ef327d2be65c22988698e0439524', '139.144.150.23', '1683172268', '__ci_last_regenerate|i:1683172268;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229af5336a18366dd19f3131d7ca99b2370d2b83', '54.94.57.144', '1612325617', '__ci_last_regenerate|i:1612325617;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a5a1905057f2ce773051179da1e742efa65bc0', '68.183.158.95', '1665215293', '__ci_last_regenerate|i:1665215293;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22b46ca1e3d710b43224d5b98226bf4008837e42', '47.88.87.97', '1683215994', '__ci_last_regenerate|i:1683215994;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22bff40976aa0b55ae08abc40add6a83d4c02a6d', '190.236.28.76', '1619537573', '__ci_last_regenerate|i:1619537483;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619197485\";last_ip|s:11:\"181.64.18.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22cd4354cf44ca8638ef6c08c750ff09a3335c73', '132.157.130.180', '1617483577', '__ci_last_regenerate|i:1617483573;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617415727\";last_ip|s:15:\"132.184.129.122\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d1f26023037d52ed8806e761aa44d9a3559566', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d998ea4cb5bbbb51ed0d7198eb2a33383611e2', '104.155.149.137', '1655532302', '__ci_last_regenerate|i:1655532301;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ddbef29dbb4861f2d2be0188bde87e38a26775', '205.210.31.136', '1697828935', '__ci_last_regenerate|i:1697828935;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e55db920f6a441ba58a2c0c748a2b0881cd162', '186.1.135.129', '1618238904', '__ci_last_regenerate|i:1618238665;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e6a9600ba03865c6f58904283696f3', '201.230.205.217', '1671203061', '__ci_last_regenerate|i:1671203061;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22fadfab2c50ac22afacb2e0bb295eda6f80b49a', '3.252.227.144', '1694093243', '__ci_last_regenerate|i:1694093243;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23095040a1fbd8dfa0e2a2d603aad397920bff33', '162.142.125.11', '1679097133', '__ci_last_regenerate|i:1679097133;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231210e8b68ce976d1573bf3fe4f7a3a8fffeb07', '195.154.62.232', '1634121539', '__ci_last_regenerate|i:1634121539;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2312e0aa0475297581a14485bb4aefdbb400266f', '186.1.135.142', '1614628570', '__ci_last_regenerate|i:1614628336;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231b82773d63f6cd126ba34566b55413340a4e66', '190.235.110.46', '1619122946', '__ci_last_regenerate|i:1619122716;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1618862679\";last_ip|s:13:\"190.235.15.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";warning|s:64:\"No se encontraron comprobantes para enviar de la fecha indicada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232174814903ad427baf12d4730d60916913941d', '205.210.31.34', '1680406073', '__ci_last_regenerate|i:1680406073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232ba0666aec95c75119c876c48b89b70ab902de', '179.6.212.129', '1614700823', '__ci_last_regenerate|i:1614700562;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2361408df8846ff20652f5fb9015d88e6ec9075c', '38.25.16.184', '1698949246', '__ci_last_regenerate|i:1698948946;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2364c20e3224aa1a97e38cbf01e27e9334040d29', '186.1.135.159', '1618843132', '__ci_last_regenerate|i:1618842943;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236df09e777f353660b159fcf5e0e1bb93005700', '92.118.160.57', '1630166210', '__ci_last_regenerate|i:1630166210;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239895f1b7abf22008c4bdcc88abce1d70054f36', '175.24.232.97', '1623273693', '__ci_last_regenerate|i:1623273693;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a909972de67c5827ce54033940a9934ef0931b', '205.210.31.91', '1695713308', '__ci_last_regenerate|i:1695713308;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23acc4374a9fdc01b7e945ae5530480dd44d442e', '159.203.104.122', '1673223145', '__ci_last_regenerate|i:1673223145;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ad6f2a3a91e17012d98447d52efbd150042203', '192.241.142.6', '1687553122', '__ci_last_regenerate|i:1687553122;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b33c788c0926ffadeaf2f7fbfeda069f0c0910', '186.1.135.141', '1612442704', '__ci_last_regenerate|i:1612442473;local|s:1:\"1\";listaVenta|i:36;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612364658\";last_ip|s:12:\"186.1.135.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c0f8e26b8895653c2161592dbb22e3d8878d40', '34.86.35.32', '1624029855', '__ci_last_regenerate|i:1624029855;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c17d61b47a6c0b498a5c6b3f99e8962504ef0c', '89.175.184.250', '1690094217', '__ci_last_regenerate|i:1690094217;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c5777d8ada21febd9c22424cee4832a41eb964', '34.86.35.205', '1613297208', '__ci_last_regenerate|i:1613297208;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23d25f8a7dd8ebffcd016610362fa89d6080566d', '92.118.160.37', '1635613397', '__ci_last_regenerate|i:1635613397;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f828e8645c8db8b7d69514f56e1c249f4a6eaa', '51.158.109.3', '1632327034', '__ci_last_regenerate|i:1632327034;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23fba07770781f91e02d79c1abe72bf9840e647c', '207.148.127.89', '1694353396', '__ci_last_regenerate|i:1694353396;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23fd613de89ece8b0639952ce02b1462cd55e3fd', '205.210.31.42', '1684664377', '__ci_last_regenerate|i:1684664377;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24114dd36ef1a6ae691c0e6318682adb8053b257', '186.1.135.130', '1617026435', '__ci_last_regenerate|i:1617026435;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('241a9d6e85f095ebbc41b02e88ba91fb1339f546', '52.212.60.94', '1688417224', '__ci_last_regenerate|i:1688417224;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('241d45a59d303e057f7e052089b8ad9f837327e5', '45.225.216.151', '1623274440', '__ci_last_regenerate|i:1623274189;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623252334\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('241d9e2127e2eb2989bf3173ae45f5dd380258a9', '181.67.2.234', '1688698951', '__ci_last_regenerate|i:1688698951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('241f8cb71beb72f9a28fafa266a2a98ce067b191', '2.57.122.107', '1673671536', '__ci_last_regenerate|i:1673671536;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2428f373fa8bd9f1e19da2a8d61004a1b5034cb1', '186.1.135.130', '1617047736', '__ci_last_regenerate|i:1617047140;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2438c71430f32a64468fbed7f2e645125413e8b5', '186.1.135.130', '1617739462', '__ci_last_regenerate|i:1617739459;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617723111\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000376\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2444f6ae1b5ee45d60e2e8a7ae2f0227294eeea3', '207.148.127.89', '1694391513', '__ci_last_regenerate|i:1694391513;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24456987b707d168cd562e6318eefd9fe8a9f636', '18.231.137.138', '1622333652', '__ci_last_regenerate|i:1622333652;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24743d1ea94a895a6c842e25a0ddc82d28275925', '148.102.26.11', '1619799712', '__ci_last_regenerate|i:1619799423;local|s:1:\"1\";listaVenta|i:218;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619789458\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c068f069c1ef68434a3a34221c7126b465e0e2', '148.102.26.11', '1619032788', '__ci_last_regenerate|i:1619032788;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c5b2a31aaa695358a9730f599d5e9b873ecd5c', '190.236.0.145', '1617200653', '__ci_last_regenerate|i:1617200346;local|s:1:\"1\";listaVenta|i:461;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ccabfdc2f2a123cfb2e01e0d4d128d0f8b33d7', '179.6.212.129', '1615168865', '__ci_last_regenerate|i:1615168623;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615165073\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24d24b26774a9cf8135502fc47682c3659ae8c19', '207.148.127.89', '1694353259', '__ci_last_regenerate|i:1694353259;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ead5a2e795c348b79f9cd983c1008b3d25abe3', '148.102.26.11', '1619190366', '__ci_last_regenerate|i:1619190154;local|s:1:\"1\";listaVenta|i:760;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f2f0bac099bf4c18f993dfb5cdab90be6eb537', '181.67.2.242', '1687992695', '__ci_last_regenerate|i:1687992639;local|s:1:\"1\";listaVenta|i:132;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968167\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24fd3c4cac98e82e7bd6544d54b0dd23645dbb23', '38.25.16.150', '1671252093', '__ci_last_regenerate|i:1671252019;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671211178\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:52:\"El tipo de documento y documento ingresado ya existe\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250b7f91b81cd04e1ba5959ea969761bd5219f02', '181.64.18.180', '1634415807', '__ci_last_regenerate|i:1634415697;local|s:1:\"1\";listaVenta|i:943;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1632763662\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2514c24142157be222ce5dc7a2060076ea3a0fb4', '167.248.133.44', '1675313391', '__ci_last_regenerate|i:1675313391;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251d2419da24174ff63b1acbee4eebf4bac12bbc', '167.94.138.36', '1680494402', '__ci_last_regenerate|i:1680494402;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25274c468a8fcea7a320c9703d26fb90b580572f', '179.6.212.129', '1615165099', '__ci_last_regenerate|i:1615165068;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615115603\";last_ip|s:15:\"190.237.172.109\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2553ffeb2e17b5558bf3be9854f481b2aaac8cc0', '198.235.24.16', '1690638274', '__ci_last_regenerate|i:1690638274;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255a9a6891ffc4d458cbc285173d5bbf357590eb', '162.55.185.16', '1656450193', '__ci_last_regenerate|i:1656450192;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('256ee74b5fe5a11420393f31167d7aa942aaecbc', '179.6.222.7', '1617981114', '__ci_last_regenerate|i:1617980886;local|s:1:\"1\";listaVenta|i:1626;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257ed93ebc46c103aa5d835050d49dd9e33fde0c', '34.86.35.23', '1618578185', '__ci_last_regenerate|i:1618578185;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25837fa34903f3ade58243a588b8870dab2af945', '183.136.225.44', '1683543479', '__ci_last_regenerate|i:1683543479;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2585d3b5c7c00c048888ff8351a9b78fb3d49ad8', '148.102.26.11', '1619795398', '__ci_last_regenerate|i:1619795384;local|s:1:\"1\";listaVenta|i:822;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258abaf36dcd9251aeea52b8cdc55caa8ca397c8', '34.242.160.159', '1676309802', '__ci_last_regenerate|i:1676309802;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258f82a8e6f0e92e1dad881cdfd25698bad639b2', '190.236.5.11', '1617715256', '__ci_last_regenerate|i:1617714984;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617661470\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000373\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c077e8ebb6b65ae6d804498b2c36669fd7df20', '23.237.196.50', '1673755206', '__ci_last_regenerate|i:1673755206;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c5d3b6e88fdd14db421afb209c7381861b854b', '186.1.135.138', '1613049854', '__ci_last_regenerate|i:1613049680;local|s:1:\"1\";listaVenta|i:518;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000276\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e4697629dc01fd027baf76fc6cd4dcf1da0094', '198.235.24.37', '1677183989', '__ci_last_regenerate|i:1677183989;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e95c258dd7cabc13544c84e22c95894733bd98', '181.176.119.44', '1676126021', '__ci_last_regenerate|i:1676126021;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ef3fdd184af18578a1d52aa87c5c62eeae4190', '201.230.205.217', '1671209851', '__ci_last_regenerate|i:1671209693;local|s:1:\"1\";listaVenta|i:133;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2621d2defd79013f196091935aef76c573df9a11', '183.136.225.44', '1683543475', '__ci_last_regenerate|i:1683543475;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('262b2627b775ca8165d98f38b0327166feed0b4b', '186.1.135.147', '1613572169', '__ci_last_regenerate|i:1613571989;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613510784\";last_ip|s:12:\"186.1.135.70\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2635e31d3a57a2679b8433e798622272bd77e342', '::1', '1598617578', '__ci_last_regenerate|i:1598617577;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2644fe3291a907877f2048534cbfaac760e81c85', '38.25.16.150', '1672350112', '__ci_last_regenerate|i:1672350026;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672298775\";last_ip|s:13:\"190.43.38.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26500e2a43f815f763b67194637cb2d88fda8b00', '167.248.133.63', '1663514498', '__ci_last_regenerate|i:1663514498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26618a4dc4e641837f5c79820c3e913deab92db1', '186.1.135.131', '1614274862', '__ci_last_regenerate|i:1614274612;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614266135\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2669b4666339521cacf2b38d2be595dfc5069176', '62.171.177.111', '1663983626', '__ci_last_regenerate|i:1663983626;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2670e3288ec4d411853f0630e3c19945c3c9ceb6', '190.238.217.8', '1612884249', '__ci_last_regenerate|i:1612883986;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612836019\";last_ip|s:13:\"190.236.26.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2681336f2eb9524669d8bdd595347aec82532389', '198.235.24.162', '1663170503', '__ci_last_regenerate|i:1663170503;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('268bc680ebeb32f34679bbfbd662f9727a6ff4cd', '167.248.133.127', '1687225110', '__ci_last_regenerate|i:1687225110;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26c566c45cf5b604bba4f684043f7568d6e08580', '186.1.135.141', '1613424745', '__ci_last_regenerate|i:1613424544;local|s:1:\"1\";listaVenta|i:256;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613416718\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ea071969bfd751995240aeee4a75181e319cf9', '186.1.135.150', '1613164695', '__ci_last_regenerate|i:1613164314;local|s:1:\"1\";listaVenta|i:417;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26eec401aabf1db5d6eeeee06ec8a72ade2e5222', '205.210.31.143', '1698495264', '__ci_last_regenerate|i:1698495264;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27151f4bb0609e5ece5d290e1c6c8a4bfb32df2e', '148.102.26.11', '1621003651', '__ci_last_regenerate|i:1621003526;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621000549\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271929946476babd66f69c28ccbde0e6c8e15742', '183.136.225.44', '1681126530', '__ci_last_regenerate|i:1681126529;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271e6216700a16950d4cd56275431409fed2686f', '179.6.212.129', '1615498617', '__ci_last_regenerate|i:1615498609;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615496787\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('272074eddf534df98aa760a84a841ab520b1ad9a', '167.248.133.38', '1688027532', '__ci_last_regenerate|i:1688027532;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2728083a146ceac8129d09c56e6195660f1f8d70', '186.1.135.76', '1612361104', '__ci_last_regenerate|i:1612360903;local|s:1:\"1\";listaVenta|i:71;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612299033\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('275175c2b10a949f30b6ee43c6a42f7749558cdd', '186.1.135.129', '1617813889', '__ci_last_regenerate|i:1617813724;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2754a45fdc95b45f815d6b13fe005468a6191a8f', '162.142.125.217', '1680060790', '__ci_last_regenerate|i:1680060790;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27610e41fdb910f269d9657e8516ed3871a29b1f', '167.99.50.251', '1620143840', '__ci_last_regenerate|i:1620143840;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276a55054ac42d502b7d495cfeeb2d002db25f2f', '35.226.203.44', '1657756027', '__ci_last_regenerate|i:1657756027;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276ca564e4bbfca1eed2aeba76c616b4ee66f5c1', '38.25.7.251', '1652909755', '__ci_last_regenerate|i:1652909730;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652909423\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277e69b9c04658c85173795fd91dd1085aa9262e', '179.6.222.7', '1616007112', '__ci_last_regenerate|i:1616006784;local|s:1:\"1\";listaVenta|i:433;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616004221\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27aa2b776ca41b185597ab7fc72eb9e6a0d5aa2e', '54.233.154.46', '1611098262', '__ci_last_regenerate|i:1611098261;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27db54870fbefff939e484c6161e88c264d25d04', '198.235.24.153', '1694906743', '__ci_last_regenerate|i:1694906743;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e4d5046120e78f49f5cf4f74f479dc605430ab', '13.232.96.15', '1618536638', '__ci_last_regenerate|i:1618536638;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e891ec30e642736187fc175f019593b03f2abc', '87.236.176.83', '1680883355', '__ci_last_regenerate|i:1680883355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27facd0c978d53e612b5e8cc8282d63f4080f360', '198.235.24.55', '1694791984', '__ci_last_regenerate|i:1694791984;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28189193c1e8421b53543b7eb503ba8562f74c0e', '167.94.138.63', '1662562966', '__ci_last_regenerate|i:1662562966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('281d00d43f7405f36cef37e6a1398065b29d3616', '186.1.135.129', '1618237316', '__ci_last_regenerate|i:1618237038;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2837982157ab110f8b6c0f60ac0d3d4563f643ef', '190.232.180.131', '1613060905', '__ci_last_regenerate|i:1613060905;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612903184\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283e8e63145304b065040f90ed6fc67bdf9fb0a5', '186.1.135.141', '1611848850', '__ci_last_regenerate|i:1611848505;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28456851bbb2ad332c6407b1c64cf75059fef9d5', '190.239.78.92', '1620669478', '__ci_last_regenerate|i:1620669196;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28592c9adc4c1f63f0800a8f58094a5f9ed6dda2', '181.176.97.28', '1676649499', '__ci_last_regenerate|i:1676649399;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1676583651\";last_ip|s:15:\"181.176.109.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2863a0f7e3ff439908f802d6bb7026158f999839', '198.235.24.143', '1670725001', '__ci_last_regenerate|i:1670725001;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28676d925a2e5607c67fe2592f7244cdef13f41a', '179.6.212.129', '1614802442', '__ci_last_regenerate|i:1614802431;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614778488\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('288c9f9db22f96f5c522e12180fac0b1670ae9ea', '190.237.172.53', '1616190950', '__ci_last_regenerate|i:1616190950;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b7e7ce65d992c6991f4b1cbf676f0605a8412a', '198.235.24.178', '1696904278', '__ci_last_regenerate|i:1696904278;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d064a343ebc873a1853eeaa7245a180abedbed', '181.176.107.81', '1675730768', '__ci_last_regenerate|i:1675730767;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d7aa85e3daa93b6ba5eee99ca71fd7afe1bc4b', '179.6.212.129', '1614981980', '__ci_last_regenerate|i:1614981978;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614974723\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000306\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e44537a09de2a3cc03224d84c7005ef3de76d4', '183.136.225.46', '1684205584', '__ci_last_regenerate|i:1684205584;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ee8fb430f67c97562ce9d4b5e60e2f43471a8e', '179.6.222.7', '1616938176', '__ci_last_regenerate|i:1616938176;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28f4434937c148b61acef0ebb96e444801d1cee0', '45.225.216.152', '1625115281', '__ci_last_regenerate|i:1625115008;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625060675\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2908b29cfa75d29cbb794db5a69f35c4ef793d90', '18.190.152.34', '1677554163', '__ci_last_regenerate|i:1677554163;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('290fc424bfd30bf714defe045159c428f9665e50', '186.1.135.131', '1617656804', '__ci_last_regenerate|i:1617654680;local|s:1:\"1\";listaVenta|i:273;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617644291\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2925f557a0f2fe5c53f2d25ca6dc0a2a3d236e95', '139.59.250.32', '1687327336', '__ci_last_regenerate|i:1687327336;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2934ae73cb7a94d319331da1b0d747d9ebd6f8c2', '198.235.24.135', '1669524500', '__ci_last_regenerate|i:1669524500;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2953cd171af7c167bb9e4f8724a18fd45535b3b6', '167.248.133.44', '1675313391', '__ci_last_regenerate|i:1675313391;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29693ae440c71df5636b4a0cd269138cb3830e5e', '38.25.16.150', '1670796616', '__ci_last_regenerate|i:1670796616;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('298de1890084da36a39440195f7b97c78863435e', '144.91.106.14', '1655994067', '__ci_last_regenerate|i:1655994067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299954e8efdeeab2b5cc1518f662e15c874e7478', '198.235.24.134', '1656121164', '__ci_last_regenerate|i:1656121164;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b827864a622b66ba6180b8e535a52e59be6f49', '92.118.160.57', '1613984210', '__ci_last_regenerate|i:1613984210;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b97fee93c270f21036205cbd0468f48df1c05c', '186.1.135.146', '1614012035', '__ci_last_regenerate|i:1614011867;local|s:1:\"1\";listaVenta|i:226;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614002229\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29dd4be02163ce3a64244d4b053ca452bee1c66f', '27.115.124.114', '1683360854', '__ci_last_regenerate|i:1683360854;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e3657625dcef73a3feff4303df559d53b5bf2e', '34.66.54.97', '1656016798', '__ci_last_regenerate|i:1656016797;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ed0a1603bea3b0c13bd814b59d8db9e9138c34', '45.177.196.194', '1681415565', '__ci_last_regenerate|i:1681415548;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1677334203\";last_ip|s:12:\"181.67.49.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f4b744f2744901bc782fedbcf61b8463605aec', '101.68.211.2', '1679505960', '__ci_last_regenerate|i:1679505960;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f620f242922a3d84e3fac00e1b9c65462b94ae', '132.184.129.157', '1618504662', '__ci_last_regenerate|i:1618503613;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617729735\";last_ip|s:15:\"132.157.129.160\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a05ec8ae880980464a69c8538af3681', '201.230.205.217', '1671203058', '__ci_last_regenerate|i:1671203058;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a160f8e5cea98e4a7265e1decc314ac2c9a541f', '190.238.217.9', '1612895614', '__ci_last_regenerate|i:1612895562;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612893547\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a1cb069eadc110d18cc1c509b909beccbb9a875', '183.136.225.44', '1688233832', '__ci_last_regenerate|i:1688233832;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a1d45b478a502893ed8a4c2a374a50902941fc7', '148.102.26.11', '1619197605', '__ci_last_regenerate|i:1619197507;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619193890\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a224b2d5e84af6661a6333b0fc95ee4b2344ecf', '211.205.155.42', '1664629708', '__ci_last_regenerate|i:1664629708;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a29901e2393db4b11725ac4db1031ffbf294f04', '115.165.166.162', '1660703619', '__ci_last_regenerate|i:1660703619;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3eb41113e2a27a6d78e9859fbd6a16632f2260', '198.235.24.167', '1693346469', '__ci_last_regenerate|i:1693346469;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3f80640f8170b944a03601b9f0f59d71c4248f', '205.210.31.53', '1679443585', '__ci_last_regenerate|i:1679443585;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5bc4cbf98aa44a976733cfa2e248b53e05aab2', '45.225.216.151', '1622573362', '__ci_last_regenerate|i:1622572872;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622562335\";last_ip|s:14:\"190.239.192.47\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a632f2ca40f5b8427156e21db3906392dfeb4e7', '190.239.78.92', '1620658065', '__ci_last_regenerate|i:1620657827;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a67ab9782507a5d8c54b4d1bec7c9f6305c441f', '144.91.106.14', '1690768648', '__ci_last_regenerate|i:1690768648;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a720c5714084ee5d89d68790a9b979700824e00', '186.1.135.143', '1615415499', '__ci_last_regenerate|i:1615415136;local|s:1:\"1\";listaVenta|i:587;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615413018\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a837829f4b9821fc24d232066d2f43596661c37', '205.210.31.128', '1681047013', '__ci_last_regenerate|i:1681047013;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aaace7b6e144ee01ec4ad0b5805fac837f59c09', '92.118.160.37', '1621784506', '__ci_last_regenerate|i:1621784506;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ac2624774247cc8e04ff661b27079834900067b', '186.1.135.138', '1613063200', '__ci_last_regenerate|i:1613062904;local|s:1:\"1\";listaVenta|i:2447;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ac6cf668ffbb2bc1a23a54bff79349c69cb1420', '70.38.10.157', '1690877296', '__ci_last_regenerate|i:1690877296;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ad5396de96e4e5aa515f76c90a6da9c3f3c677d', '205.210.31.47', '1689707152', '__ci_last_regenerate|i:1689707152;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ad8cbaa1182ff529749b5349e0f4f29a0fad87b', '186.1.135.129', '1617808204', '__ci_last_regenerate|i:1617808204;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ada7f61e10a6679b1efbf14e51540f2adfe214f', '190.236.0.145', '1616711646', '__ci_last_regenerate|i:1616711646;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af0f73659a8a7a07fee6182cb6388ac8af367c1', '38.25.16.184', '1698950857', '__ci_last_regenerate|i:1698950616;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2afdb152eb3b4c8170b930798a9779e3375710bf', '198.235.24.145', '1655916488', '__ci_last_regenerate|i:1655916488;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2afed9af0ee6645e9ccd8da8d2fdeca29273c7a0', '54.207.193.27', '1622599405', '__ci_last_regenerate|i:1622599404;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b05a0ddbbca58d9f6a3465606ab316337076c3f', '167.172.139.250', '1672318234', '__ci_last_regenerate|i:1672318234;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b185619ede3af1f024e36d1143a11aaf89a4db3', '45.225.216.152', '1625121232', '__ci_last_regenerate|i:1625121232;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625060675\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3370398125baa917c3785139dff4165b300183', '148.102.26.11', '1619193877', '__ci_last_regenerate|i:1619193475;local|s:1:\"1\";listaVenta|i:2266;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3e22b7c155a12bbf6380de3a671cccd60aeff2', '92.118.160.41', '1623602147', '__ci_last_regenerate|i:1623602147;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b52a02e9f938813ad8f837fa4b0169fa4a719bf', '::1', '1598835005', '__ci_last_regenerate|i:1598834742;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598834013\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b60c61a5b21030bead03af3109f9bfcf37c06d3', '54.202.243.54', '1654293444', '__ci_last_regenerate|i:1654293442;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b68e6158fb45c09ad0fe794f291858869681dd9', '18.231.193.218', '1621984529', '__ci_last_regenerate|i:1621984529;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b6d5d6a59b7b87dde6fa185a613e924fbf88609', '162.142.125.211', '1658851914', '__ci_last_regenerate|i:1658851914;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b887d8404b753ab7ce8993de03da89cdde7073d', '186.1.135.146', '1614012386', '__ci_last_regenerate|i:1614012177;local|s:1:\"1\";listaVenta|i:226;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614002229\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9717365244e35cab36be2849c807c452c1b0c9', '190.192.49.231', '1615562966', '__ci_last_regenerate|i:1615562966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9dc374c931504567eef3b5197077b4d471b2bc', '205.210.31.129', '1684032708', '__ci_last_regenerate|i:1684032707;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ba2a55c5d938f814c28429f3d2e16be7e19ab50', '148.102.26.11', '1621613153', '__ci_last_regenerate|i:1621612790;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2babab77b88dbfa91b5b784da30b3b3821ce84df', '132.184.128.122', '1611863475', '__ci_last_regenerate|i:1611863170;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611854258\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bba68d0035ecb6a36331ff45a1c8359a92a3a5c', '161.132.239.98', '1635797950', '__ci_last_regenerate|i:1635797782;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1635263137\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc4aa0363b25a62d1258b837870fcc8223961b7', '190.236.0.66', '1671575418', '__ci_last_regenerate|i:1671575405;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671565614\";last_ip|s:14:\"190.235.45.172\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc712f69f10fa6f7ed17e786c2efbb0afc14d41', '51.254.49.109', '1634130143', '__ci_last_regenerate|i:1634130143;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bfafee6e127f971b5e158f77df47ab67c052bbb', '201.230.205.196', '1698786503', '__ci_last_regenerate|i:1698786492;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698727897\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";form_data|N;register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c18564d66fa62759303036ce8c7f3e1ba2bcb79', '167.71.178.76', '1673233543', '__ci_last_regenerate|i:1673233543;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1a17e479ae0d861aa29e8b82abfc94f569bc4c', '38.25.16.184', '1698876557', '__ci_last_regenerate|i:1698876317;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698866462\";last_ip|s:15:\"201.230.205.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1b7082851cd1ca8c0ca0290aa6463ac12fa663', '186.1.135.134', '1614099818', '__ci_last_regenerate|i:1614099816;local|s:1:\"1\";listaVenta|i:434;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c26ff43f521ef38503c97c695dd2de295cc6d8e', '183.136.225.44', '1683540406', '__ci_last_regenerate|i:1683540406;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2b9ba349d9ee0c883ebc72c6c71a1495fbee45', '198.235.24.50', '1665793192', '__ci_last_regenerate|i:1665793192;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c352f58b75ed8221d656b6cdfb4aec56ed7dc20', '18.231.78.233', '1612397874', '__ci_last_regenerate|i:1612397874;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3a5667563e164f9b5393c1a4fdb14c2dcbad06', '52.64.20.252', '1617852208', '__ci_last_regenerate|i:1617852208;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c44ed1ca760f6ccde0f28a7c60e5a39fec10a06', '181.176.114.168', '1676235041', '__ci_last_regenerate|i:1676235040;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c45959b4151cd7045b0e36ac0f228f25370d262', '148.102.23.16', '1620148548', '__ci_last_regenerate|i:1620148265;local|s:1:\"1\";listaVenta|i:393;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620072748\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c464f47d441930676c81124d999372a9c5d697f', '186.1.135.134', '1615828051', '__ci_last_regenerate|i:1615828051;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4a94c68dbf1a6923a9a4b45330e32a9f2c42ce', '38.25.16.150', '1672371349', '__ci_last_regenerate|i:1672370882;local|s:1:\"1\";listaVenta|i:224;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672350030\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4cc9b65d260aa972fbe4e542d5cd2de4854d39', '186.1.135.71', '1613662016', '__ci_last_regenerate|i:1613661702;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613653607\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c51bf1b25557fc515e49e27521f3a8f7c41e9d6', '198.235.24.168', '1662882053', '__ci_last_regenerate|i:1662882053;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c531d7e00070532aa88402daaa508110ae23064', '179.6.222.7', '1616008884', '__ci_last_regenerate|i:1616008692;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616005579\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000315\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c72ecb9995ccdacc45fac55b44f45d4', '161.132.234.14', '1624914783', '__ci_last_regenerate|i:1624914783;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7f4abe134944e1020deb68e072992d811a9176', '186.1.135.141', '1612446150', '__ci_last_regenerate|i:1612445577;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612442480\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c8793ecfb222afb016dc239173b96acf8ac9790', '167.248.133.62', '1666144678', '__ci_last_regenerate|i:1666144678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca3855d9d4434f973e2ed79354a4533b2f90289', '190.237.172.53', '1616095518', '__ci_last_regenerate|i:1616095332;local|s:1:\"1\";listaVenta|i:167;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616082515\";last_ip|s:13:\"190.239.70.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca77e97e38ee05ec3366f5965830f2fb01d66a3', '192.241.142.6', '1687553123', '__ci_last_regenerate|i:1687553123;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb0b59ac0d058edf50cf554d430a04769930768', '207.148.127.89', '1694466941', '__ci_last_regenerate|i:1694466941;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc67d0bfccff5379f7968c58b88efd403b66590', '87.236.176.252', '1690353616', '__ci_last_regenerate|i:1690353615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc9da0a8818faca57865288dfab3c8ba61039a1', '92.118.160.5', '1624720568', '__ci_last_regenerate|i:1624720568;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cdf173453fd78d30aee9bc802b6bf947769e195', '167.248.133.38', '1695573781', '__ci_last_regenerate|i:1695573781;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cefd3b1d3fa63270b89077d3706276991de3f4e', '34.86.35.24', '1621942452', '__ci_last_regenerate|i:1621942452;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d0b0688abd934eb6a71a7173459472d370e38db', '186.1.135.143', '1615901632', '__ci_last_regenerate|i:1615901594;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615825062\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1b36dfbf5fb2435aa2bfd53826a5f0203eb60c', '198.235.24.168', '1678610204', '__ci_last_regenerate|i:1678610203;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d2a5df88c240574c850ec918c2dabbd08615500', '198.235.24.25', '1662277711', '__ci_last_regenerate|i:1662277711;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d377d95e87bfa593cacd7cecd2b14fe22a5fa51', '190.238.217.8', '1612883572', '__ci_last_regenerate|i:1612883531;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612836019\";last_ip|s:13:\"190.236.26.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d3bd54a7ef8ac7ef5537239530cf7c6228dc46e', '148.102.26.11', '1620764518', '__ci_last_regenerate|i:1620764141;local|s:1:\"1\";listaVenta|i:245;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620755720\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d6ab600236e51d016057d86f59012cdbcfb138d', '179.6.222.7', '1617127893', '__ci_last_regenerate|i:1617127758;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d71c8e8c381604dfa6f04a2b8409a1e51670961', '101.68.211.2', '1677788860', '__ci_last_regenerate|i:1677788860;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7788bb8246436c3d85f6c9dd6e063ce55dfaf9', '205.210.31.19', '1663061729', '__ci_last_regenerate|i:1663061729;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7c876c6ac7e089960ad96e52c75466ed2d2838', '198.235.24.144', '1670610889', '__ci_last_regenerate|i:1670610889;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7ce8f698d9e519e9601e51c9e009d3bb4d1d8b', '139.155.30.159', '1624197626', '__ci_last_regenerate|i:1624197626;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d849559243a52f3b7ded386fde090797bc7435b', '45.225.216.151', '1622573747', '__ci_last_regenerate|i:1622573678;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622562335\";last_ip|s:14:\"190.239.192.47\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d93c6bdd0b6e3c07eed567f822fb256ea4bd7bf', '47.88.94.161', '1689782422', '__ci_last_regenerate|i:1689782422;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dac2bda7cbe68c1f17723409d102fa437a084f1', '92.118.160.5', '1629652635', '__ci_last_regenerate|i:1629652635;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2db0921905c4a91f66d156e0ac4f4444782bdb06', '92.118.160.61', '1628411678', '__ci_last_regenerate|i:1628411678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dba31c5fb9fd2cad5b95f872a57ad48545129cb', '132.191.2.144', '1616682645', '__ci_last_regenerate|i:1616682507;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616618907\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dbe3a88f462dbdba766600f212ea4a5b2517b56', '52.71.27.229', '1654293142', '__ci_last_regenerate|i:1654293138;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0ad1f45bfad0f23033943d3c43d0ac85f88862', '186.160.223.6', '1625200306', '__ci_last_regenerate|i:1625200304;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0f20958f77bf7d329615510e4e515898c85c62', '167.248.133.38', '1695573782', '__ci_last_regenerate|i:1695573782;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e402f4435f32d59777b2d688ddd55b0635b32ac', '198.235.24.45', '1669421652', '__ci_last_regenerate|i:1669421652;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e41ddddda5a4f5a44e638953b8687f0cdf1cec7', '198.235.24.129', '1657970928', '__ci_last_regenerate|i:1657970928;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4ef5e31e721ce93f17244a8ce61404c0f46158', '103.108.229.61', '1680616986', '__ci_last_regenerate|i:1680616986;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6133cdcd9499645ff21099cd81d4102e217253', '167.248.133.186', '1682001541', '__ci_last_regenerate|i:1682001541;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7d7457eab636c52954fddcfe2b39ce6a7a16e8', '148.102.26.11', '1619200351', '__ci_last_regenerate|i:1619200351;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8227e0c753ac88162a54ab84f51725dfb4f959', '188.166.81.73', '1676522772', '__ci_last_regenerate|i:1676522772;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8c5a0d9e55782e5fd1e5e2686c18eb3d5d0f67', '34.77.162.30', '1634694062', '__ci_last_regenerate|i:1634694062;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eba83b20be0a576d64c4bebcc0caa0c90e6a11c', '186.1.135.143', '1615915547', '__ci_last_regenerate|i:1615915254;local|s:1:\"1\";listaVenta|i:224;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec2c6a6a3be6b6f0c2e13978042e149135d5c29', '186.1.135.144', '1615318751', '__ci_last_regenerate|i:1615318400;local|s:1:\"1\";listaVenta|i:84;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615296965\";last_ip|s:13:\"186.1.135.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed5881d442013f70b1047ea104e0e668f1d762e', '148.102.23.16', '1618326189', '__ci_last_regenerate|i:1618326068;local|s:1:\"1\";listaVenta|i:462;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618254819\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed92b77c745d1def39c800c63eeda5190feb64d', '34.244.44.68', '1688020420', '__ci_last_regenerate|i:1688020420;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef7ef3983926a2b49cd8e9aa1d02df40d192bc4', '3.253.90.161', '1689152843', '__ci_last_regenerate|i:1689152843;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f079648eb5725345ab647101368c9cf0a21ac2c', '211.176.125.70', '1664816707', '__ci_last_regenerate|i:1664816707;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f09c54c5b190c5c187582e0741ba12095337e43', '62.4.14.198', '1611135905', '__ci_last_regenerate|i:1611135905;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f144781ef41c6ee5f5606a4f258edcc1ca0eeef', '51.158.108.77', '1679354507', '__ci_last_regenerate|i:1679354507;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f4cb4c04d8c17b523ebe38d9e274bebe4813e68', '148.102.26.11', '1620654253', '__ci_last_regenerate|i:1620653980;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f56476c5d9169a8f80ae0fa79ba3ea02b0a819e', '138.197.4.164', '1662296116', '__ci_last_regenerate|i:1662296116;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f6080d336b48bbc4ebe6659219579ec0ee8627c', '104.131.72.60', '1691654545', '__ci_last_regenerate|i:1691654545;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f65af788d92c3dac6ff309846f3df21207e5fd1', '161.132.238.121', '1629248325', '__ci_last_regenerate|i:1629248064;local|s:1:\"1\";listaVenta|i:1;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1629213583\";last_ip|s:15:\"201.212.119.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f6cd8e879b2bc1b0aad64b9c0c9a3fd4be167c1', '104.198.240.71', '1655915065', '__ci_last_regenerate|i:1655915065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7e0e58a1f8c7721aaa056b87d2c44599f1f2cb', '45.225.216.151', '1623724346', '__ci_last_regenerate|i:1623724346;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2facc16fe18f1c12d968dc2b46ac75d890602d9e', '179.6.222.7', '1617985549', '__ci_last_regenerate|i:1617985283;local|s:1:\"1\";listaVenta|i:1677;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb1068fa1a50283e05447e11dbbbdfa75ec60dd', '198.235.24.247', '1696959306', '__ci_last_regenerate|i:1696959306;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc718f206c70ec6f9698b9c51b2594e0c3da2f9', '162.142.125.41', '1636693497', '__ci_last_regenerate|i:1636693497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcf42d46dab566e2558e23eb12f4303bd867fbe', '162.142.125.12', '1686581878', '__ci_last_regenerate|i:1686581878;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd43ac8fcaefb95b4498aa1340b78940d894d4b', '186.1.135.143', '1615581499', '__ci_last_regenerate|i:1615581499;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd68054b53120699c5bb0bcdfc86e088c524c51', '207.148.127.89', '1694522433', '__ci_last_regenerate|i:1694522433;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe92e7426232ab5f393f81c5f69ed63905467f3', '198.235.24.149', '1670403822', '__ci_last_regenerate|i:1670403822;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2feed09ce98c0ef5d8185f1b6abcf91fa9150926', '167.248.133.51', '1695345277', '__ci_last_regenerate|i:1695345277;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ffa5faca99af520c78c9948e19de35cdb1488a2', '51.254.49.100', '1654340807', '__ci_last_regenerate|i:1654340807;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ttfeq55fkk3mlvb5g9gcioo7k', '::1', '1598834013', '__ci_last_regenerate|i:1598834013;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('301a2ae91956034a167f435e21308c245fdb52b3', '148.102.26.11', '1619017397', '__ci_last_regenerate|i:1619016621;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618942787\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302884f2ef5faf38ebf589580f24bcf4ba6e93d0', '144.91.106.14', '1690768648', '__ci_last_regenerate|i:1690768648;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302887bee0976f23d9d847b28238182cd7f41cb7', '183.136.225.45', '1697706811', '__ci_last_regenerate|i:1697706811;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30446eceff9bd9fa6030f522f229f8c1aeb320ed', '186.1.135.133', '1612191284', '__ci_last_regenerate|i:1612191216;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612189952\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3054cd0f2a0db24962f567c2e5a209cc8f4bcaee', '92.118.160.61', '1619318931', '__ci_last_regenerate|i:1619318931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30556ac1b754d4c4ebe7d828aeb47c1835b103a6', '157.245.52.110', '1667675105', '__ci_last_regenerate|i:1667675105;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3062630f5004c4e81b1a344d3ddbbdaa7617a563', '106.53.83.56', '1622946115', '__ci_last_regenerate|i:1622946115;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3069a674a090581de2b7437aa7f90ff0118203f3', '181.176.113.174', '1675864482', '__ci_last_regenerate|i:1675864482;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30aa66d53ae7367b38d49210e7e87af6321bf60f', '3.249.44.136', '1635542396', '__ci_last_regenerate|i:1635542396;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30b4c1295c2d87d961087498f126618e39fa252c', '181.67.2.234', '1688438413', '__ci_last_regenerate|i:1688438272;local|s:1:\"1\";listaVenta|i:164;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688437685\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c529d1acddec15d76c7e325f8b7d9350b89640', '51.195.142.201', '1673161872', '__ci_last_regenerate|i:1673161872;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ce421dd3ec069c6ba88a101fb3438fab12f094', '175.24.232.97', '1623273696', '__ci_last_regenerate|i:1623273696;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d48aa75267745cd2da22d1bbbd830237294c7c', '186.1.135.146', '1614025243', '__ci_last_regenerate|i:1614024916;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614019549\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d9eda5c0680b84e39555a5fe5306aada52ced7', '162.142.125.210', '1654268093', '__ci_last_regenerate|i:1654268093;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e15748253f9ebb38c6620e22706db97e4c31b8', '186.1.135.136', '1617912981', '__ci_last_regenerate|i:1617912685;local|s:1:\"1\";listaVenta|i:132;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617908137\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ed7760f459cc0fec1980e74ca45adc882d5b55', '34.250.18.162', '1680335492', '__ci_last_regenerate|i:1680335492;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f31fb0a9d5f57ed7b7193564f19490db618186', '186.1.135.79', '1611926934', '__ci_last_regenerate|i:1611926653;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611873717\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f83a2cdae1a29d774df7c9bc8d33c9688f280a', '92.118.160.61', '1628411678', '__ci_last_regenerate|i:1628411678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f90d10e3b0c7bc02c9f5b56850483a04f4b836', '207.148.127.89', '1694512013', '__ci_last_regenerate|i:1694512013;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31032afc350ba5263698bc92588a3d16471eeeff', '201.230.205.208', '1694653701', '__ci_last_regenerate|i:1694653471;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1692975151\";last_ip|s:12:\"38.25.16.184\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3104edf8e00966214a7f2acc739418406decf655', '198.235.24.19', '1662441995', '__ci_last_regenerate|i:1662441995;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31091a76382aee593076f562b6d98f8a352f671d', '198.235.24.52', '1698269281', '__ci_last_regenerate|i:1698269281;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('311086690a6ab800007fd3e946bc8d56870b0b97', '183.136.225.44', '1681126521', '__ci_last_regenerate|i:1681126521;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31307b8368e195b1a030dc35e3a465a84d9d4164', '15.228.70.183', '1621944200', '__ci_last_regenerate|i:1621944200;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3135b7d1c46ca2108bf4dbfdc7a5ee9b2c8145e5', '198.235.24.158', '1673731166', '__ci_last_regenerate|i:1673731166;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31416907ea5ebce1cffd51b6cd735b4db53a9687', '201.230.205.154', '1697757471', '__ci_last_regenerate|i:1697757471;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3147d91fdad362e2bd0288d139ea4c0d6c79e76b', '183.136.225.44', '1686228832', '__ci_last_regenerate|i:1686228832;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3147f9b4d918653293a2cab13adfe5133228baaf', '138.197.72.216', '1617700884', '__ci_last_regenerate|i:1617700884;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3155a35684c2e5f31e34af4d222ef072da2f072d', '162.142.125.12', '1695600467', '__ci_last_regenerate|i:1695600467;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('315a11984108cd8b8cee1e46af4d5ae5b8dca08a', '205.210.31.132', '1697037928', '__ci_last_regenerate|i:1697037928;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3162b81c4eedff51a7f9f17daf47ef0c14baad74', '18.231.159.128', '1621944193', '__ci_last_regenerate|i:1621944192;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('316493e199d8b7a76229e8b7681a2a417103f383', '148.102.26.11', '1619452065', '__ci_last_regenerate|i:1619452005;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619444304\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317952c34af639efe8db85f10a5365d4', '201.230.205.217', '1672884619', '__ci_last_regenerate|i:1672884619;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317d46c01a2f94bcd03672cffc366cfec68509c0', '161.132.234.14', '1623331997', '__ci_last_regenerate|i:1623331936;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623283203\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3180742718d68126e9c5fc3132993c068e1d92d2', '205.210.31.129', '1664633376', '__ci_last_regenerate|i:1664633376;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3180e8f3dbe1df7e72ed6bc13023718e7d4ae408', '179.6.212.129', '1614441478', '__ci_last_regenerate|i:1614441478;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614373872\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('318a6abc0cdcb92716d7ad6a41667ea287b36085', '163.172.180.25', '1653339965', '__ci_last_regenerate|i:1653339965;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('319472d27d41ed72e738a550faa9d54f2c77abe6', '205.210.31.226', '1695710826', '__ci_last_regenerate|i:1695710826;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3195369c7a975cb9e38b5b3b268046da5a4ed408', '38.25.16.38', '1698798399', '__ci_last_regenerate|i:1698798121;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698785031\";last_ip|s:15:\"201.230.205.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31bb4b8f7e55a077a5594ad2cbe76b4801fe3665', '205.210.31.254', '1693001751', '__ci_last_regenerate|i:1693001751;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31cadd7804685973a77b640d112e0d03', '45.177.196.194', '1673648060', '__ci_last_regenerate|i:1673648060;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31d0ee4158629b69b65d614b4a6fb60afe51b5cd', '186.1.135.131', '1617629743', '__ci_last_regenerate|i:1617629507;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617285684\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31d15f4e9cc0d2875866ac711b93c33e59a9ccf7', '134.209.186.137', '1696573253', '__ci_last_regenerate|i:1696573253;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ee7fb9a1f9d4087672d0e2607fb96d6b8b754c', '92.118.160.17', '1628889735', '__ci_last_regenerate|i:1628889735;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31f35b6148de18e43a8bf4ed5e9c40bab4e611f8', '198.235.24.34', '1668222826', '__ci_last_regenerate|i:1668222826;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321b0c21825b29c6823cf04ff9996e194527b7f8', '205.210.31.177', '1680898142', '__ci_last_regenerate|i:1680898142;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32236b4726cab0c736057f0896fae5d14a93ea52', '201.230.205.196', '1698718381', '__ci_last_regenerate|i:1698718317;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698468897\";last_ip|s:15:\"201.230.205.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323409581c2aa4b1350d90822be40646d30b83e2', '186.1.135.66', '1616448829', '__ci_last_regenerate|i:1616448595;local|s:1:\"1\";listaVenta|i:828;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323fea361b457d134784f2a34f1e2469c858a67e', '38.25.16.184', '1698947654', '__ci_last_regenerate|i:1698947288;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32514720efab5d164eb5e4cd072a164587893b16', '190.235.46.177', '1671733331', '__ci_last_regenerate|i:1671733322;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671666066\";last_ip|s:14:\"190.235.46.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325c296de8a696a8928a2a1c7dd1337d9b2f67d8', '45.225.216.152', '1625195907', '__ci_last_regenerate|i:1625195870;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625150754\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3271d881c5147191c5694005a3fdfbac6beeb39c', '3.252.96.32', '1667435204', '__ci_last_regenerate|i:1667435204;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('327f11617046f89cd8af7a619c8d2e85303fc763', '104.164.173.84', '1696391383', '__ci_last_regenerate|i:1696391383;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32846f3db0cc13d1315f39b834a9867ffec334d1', '190.238.217.9', '1611172442', '__ci_last_regenerate|i:1611172176;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611172209\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3SVuNoULqXw4VUJk/DxMiJyIC1KTUNSQme44df/nTtYS3H4JxSBWFBnc9Msc9e4EUitQcyLEJ+ExafzQR9Wg7w==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:0:\"\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('329a0bc9b370d14c711ef59f44c5ae9ad0b77e2c', '128.199.48.29', '1693020246', '__ci_last_regenerate|i:1693020246;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32af8ff76d9427ed81876cb4c6641a7459c1b63b', '181.66.176.124', '1691634529', '__ci_last_regenerate|i:1691634529;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b55bd8eb5ad58649d8d8a33238986c79118f19', '183.136.225.46', '1682307453', '__ci_last_regenerate|i:1682307453;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b69d214713da745664b84f52713344dd9694ac', '198.235.24.140', '1679181273', '__ci_last_regenerate|i:1679181273;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b8ee66aac31cb6f42d544652599ac04d8e87e8', '157.245.129.229', '1680758472', '__ci_last_regenerate|i:1680758472;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b988493aa6d8ee1dbaa7793a11db195a25d4d6', '87.236.176.197', '1683479036', '__ci_last_regenerate|i:1683479036;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c039423f532c891129b7f24443e371c7b6dbd2', '179.6.222.7', '1617992887', '__ci_last_regenerate|i:1617992633;local|s:1:\"1\";listaVenta|i:2315;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c7c87a4c76e27fcbf05935d2fde946b2e19a49', '186.1.135.129', '1617807556', '__ci_last_regenerate|i:1617807556;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f37b29d732571251564dee4ed974d62dbedec7', '186.1.135.134', '1614113948', '__ci_last_regenerate|i:1614113388;local|s:1:\"1\";listaVenta|i:248;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614094323\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f8cd6bde13679bb42df8dd8b922a26d4c2d6a1', '205.210.31.198', '1687884549', '__ci_last_regenerate|i:1687884549;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3304475643484e06d658d47615b5978e4ba4f9f4', '132.184.128.80', '1611894803', '__ci_last_regenerate|i:1611894783;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611888947\";last_ip|s:15:\"132.184.128.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3306d4ec6e94704288f035ee905a6a7f01416b88', '186.1.135.129', '1617809738', '__ci_last_regenerate|i:1617809438;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33324b0da32dfb49e7d363f04470327fbf3beba9', '148.102.26.11', '1618853905', '__ci_last_regenerate|i:1618853484;local|s:1:\"1\";listaVenta|i:531;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618839872\";last_ip|s:13:\"186.1.135.159\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33361e1794d1ddbb0abd28acb7f5043dc3254f9d', '87.236.176.18', '1690346394', '__ci_last_regenerate|i:1690346393;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('333f6bf38cfb71841dc35ff9e1525b85', '181.64.223.213', '1624915119', '__ci_last_regenerate|i:1624915119;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915057\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('334a0ac44e06579edb6d2ae5e0acdd7f9bbe95f0', '87.236.176.11', '1687654957', '__ci_last_regenerate|i:1687654957;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3365488802a99d11b99aedcbbe46105d35b76c60', '186.1.135.131', '1618335756', '__ci_last_regenerate|i:1618335473;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33673035db6da0fb7686e5cca7ef2b128e887f47', '190.43.38.134', '1621455301', '__ci_last_regenerate|i:1621455301;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336a98679b5ecedd27e92727b1c1912062669c52', '209.17.96.138', '1612180203', '__ci_last_regenerate|i:1612180203;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337233790481889d2239994d46015c19f43d01e7', '201.230.205.208', '1694828311', '__ci_last_regenerate|i:1694828310;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337cb1de5a7e1f4126a46766adbf89e2cf1c3d0d', '190.238.217.7', '1611959598', '__ci_last_regenerate|i:1611959568;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611936372\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338036f4bfc930184245a3b3276493f5e1b15040', '15.228.82.73', '1622110092', '__ci_last_regenerate|i:1622110092;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33833c28b9423dc9d8382e34a22650d215edb1cc', '134.122.7.10', '1685127262', '__ci_last_regenerate|i:1685127262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338dc2edc124f6b1a466c23dadef61e5bfb2f10b', '132.191.2.144', '1616685730', '__ci_last_regenerate|i:1616685730;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338dc6582e3b93a210010d7bfe4210443ae44379', '205.210.31.162', '1676175000', '__ci_last_regenerate|i:1676175000;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a37914b58fcae59eeb146e27ccbd03644836d0', '167.248.133.35', '1695592106', '__ci_last_regenerate|i:1695592106;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33ae77d98036ec74c24832a9b635a6625b2e7634', '207.148.127.89', '1694421984', '__ci_last_regenerate|i:1694421983;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33bc95a324106b44b5d86a340bd06edae4523225', '38.25.16.150', '1672371633', '__ci_last_regenerate|i:1672371349;local|s:1:\"1\";listaVenta|i:224;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672350030\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33c4d7206b2ca923416879c3a977ed26b85d5f44', '186.1.135.138', '1613060565', '__ci_last_regenerate|i:1613059498;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33c9fa54150bf084f706621cf0b43bb149cafb61', '179.6.222.7', '1617127689', '__ci_last_regenerate|i:1617127424;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000355\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e5af2fe29f5de89779bf807198a8309ad5fae5', '142.93.72.114', '1654454299', '__ci_last_regenerate|i:1654454299;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f28c8d9dd5010cd06298156f6e6d2723d3042b', '18.231.133.193', '1622599413', '__ci_last_regenerate|i:1622599412;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34188e53b530abba079a337c9c9e83d7b2ab0645', '179.6.222.7', '1617979389', '__ci_last_regenerate|i:1617979012;local|s:1:\"1\";listaVenta|i:946;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34243affd1112ed8c3c85d4a412195474add1583', '183.136.225.44', '1684118470', '__ci_last_regenerate|i:1684118470;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3431d43a4a096c57d4dd9fe4fe943200', '181.67.2.242', '1687968130', '__ci_last_regenerate|i:1687968129;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687926235\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34373922a6835099903b66ea9aec12ce186f9997', '167.248.133.61', '1653073568', '__ci_last_regenerate|i:1653073568;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3442de6b463f14e22afc0b3bb2e4c40254ba6bff', '179.6.212.129', '1615167764', '__ci_last_regenerate|i:1615167489;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615165073\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('344d83167a9f8fd34c9d393366beddc1d0c08944', '123.6.49.36', '1683454936', '__ci_last_regenerate|i:1683454936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('344ecd221b9a9dad5d5ae52b1d75dcb9a49cb173', '198.235.24.44', '1689401508', '__ci_last_regenerate|i:1689401508;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3456ceb1ed38ee8c1e01f432d79d7a62fbc6f470', '190.239.71.47', '1620846877', '__ci_last_regenerate|i:1620846574;local|s:1:\"1\";listaVenta|i:22;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620836349\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('345a911e678d648ceb366342c799cd124e7187bc', '190.235.46.177', '1671643229', '__ci_last_regenerate|i:1671643219;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671575407\";last_ip|s:12:\"190.236.0.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('345e16a7fdb762ea283355da3a72661edb34078d', '205.210.31.13', '1652775597', '__ci_last_regenerate|i:1652775597;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3467fc6dfcf6226aa7b55ee7cc7ba1520ddd0a7c', '186.1.135.133', '1612299067', '__ci_last_regenerate|i:1612299030;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612269601\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ab1b787338c0c84a78e9b109db5e5e78c73be4', '205.210.31.143', '1698495265', '__ci_last_regenerate|i:1698495265;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c77666843739f6414b1f56e068d8809313f859', '170.64.163.10', '1687174808', '__ci_last_regenerate|i:1687174808;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34cdb0e4788313455717958935498b52046df49a', '18.229.160.115', '1622354568', '__ci_last_regenerate|i:1622354568;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ce49cbb26c5e1a0a96947a3438a00276ecde8f', '190.192.49.231', '1623086466', '__ci_last_regenerate|i:1623082885;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622816464\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34de6909c752d814b6636c01358c5ef1a9809615', '190.236.24.150', '1611077485', '__ci_last_regenerate|i:1611077323;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598834103\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"Dyy60hamyB5kR4ghDgHuAoYOWgK+OKWtNGgoOswAU2v4uhKE3LRY8tqTXq730/+WTAIa0YEPcgEQFTk8Ym0RIQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";csrfkey|s:8:\"7ufycgSI\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}csrfvalue|s:20:\"dC2rc0AnsFebREoQTNJH\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e0a4398c91823ed3d139cf36aa9261dfbdc9de', '89.175.184.250', '1690094197', '__ci_last_regenerate|i:1690094197;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e24aa4b662e203f58cf7c06cef0fc9780f64d8', '186.1.135.130', '1617048714', '__ci_last_regenerate|i:1617048565;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('350b74a1ead39cb8bfb1542226309f70ae70c780', '51.15.191.81', '1634116533', '__ci_last_regenerate|i:1634116533;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3512f27c61783d7ad37b233adcb066760ed0eaaa', '3.0.115.255', '1619157453', '__ci_last_regenerate|i:1619157453;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3513fa9a1a791a3d8ce3133151679672dcea9c3e', '186.1.135.134', '1612816656', '__ci_last_regenerate|i:1612816449;local|s:1:\"1\";listaVenta|i:241;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612812992\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35281018b7175dcce9001d67e33435f142286cd4', '190.239.78.92', '1620662140', '__ci_last_regenerate|i:1620661996;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('352cca04bb853ccd867dcddcf67720e9fa8e7b5b', '201.230.205.217', '1672894150', '__ci_last_regenerate|i:1672894150;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353c56781347195c6ffee871956b6856', '181.64.223.213', '1624915163', '__ci_last_regenerate|i:1624915163;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915160\";last_ip|s:14:\"181.64.223.213\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3570f8e507e6a46f95210f9a6671c4791fe854ee', '34.72.42.174', '1655833584', '__ci_last_regenerate|i:1655833583;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3577aec73fa76f6da2e017608d8a9fd432e2a1f7', '190.192.49.231', '1623100742', '__ci_last_regenerate|i:1623100604;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623079921\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358067d3cc4b74acc35545389272f5592e8d7a0e', '167.248.133.187', '1691106180', '__ci_last_regenerate|i:1691106180;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35968a07780ac227e4a8c09b0cefc427c890c154', '132.184.130.216', '1612298178', '__ci_last_regenerate|i:1612298175;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612276018\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a51d37e0d81a3535ee1bb241e4b71470aadd57', '190.237.172.53', '1616097279', '__ci_last_regenerate|i:1616096499;local|s:1:\"1\";listaVenta|i:377;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616082515\";last_ip|s:13:\"190.239.70.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b4db9cf44d508e30724a8e85e38bd8c75badc7', '198.235.24.19', '1696196666', '__ci_last_regenerate|i:1696196666;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c3f5e719843db7e368b9021ec2a1e611a06b50', '104.155.149.137', '1655532302', '__ci_last_regenerate|i:1655532302;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35cd80f36131822073874daa2585688274ae5ac0', '186.1.135.79', '1611950358', '__ci_last_regenerate|i:1611950212;local|s:1:\"1\";listaVenta|i:482;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d74ee2a428a4d64650fea204947a2284fd06f6', '186.1.135.135', '1612535765', '__ci_last_regenerate|i:1612535511;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d7ac90814f35be8064e42e1e1291021bbbf211', '198.235.24.17', '1666181234', '__ci_last_regenerate|i:1666181234;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d7d7c489b09a8e31a93d4a6c0d77bf293ead9b', '205.210.31.40', '1677955738', '__ci_last_regenerate|i:1677955738;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d82eefc2d7d9872220d99482e568d2ea1a97b5', '198.235.24.115', '1683019992', '__ci_last_regenerate|i:1683019992;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d91d986287b00f7fa4b3743c5781f134c3132f', '134.122.7.209', '1657654219', '__ci_last_regenerate|i:1657654219;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35e9d932a262044cec2159c43625d5b1652adb2f', '34.96.130.1', '1637922695', '__ci_last_regenerate|i:1637922695;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36098be61e8e485905c1ffcb7f07134c456a319c', '205.210.31.42', '1668800382', '__ci_last_regenerate|i:1668800382;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('360abeabd93dbc408b2c79135de10b164721ac03', '186.1.135.134', '1614116071', '__ci_last_regenerate|i:1614115904;local|s:1:\"1\";listaVenta|i:248;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614094323\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('361765ed058c1fc8cf67e6556eb6bb3389cb2c64', '15.228.46.110', '1621840405', '__ci_last_regenerate|i:1621840405;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('362f37f6c7df5f0042e467723a5e8d41abf2f1f9', '186.1.135.131', '1618348418', '__ci_last_regenerate|i:1618348418;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3641b91f5c7058deee7ce5b304df7ec051c5da76', '181.176.117.171', '1675268488', '__ci_last_regenerate|i:1675267460;local|s:1:\"1\";listaVenta|i:300;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675173849\";last_ip|s:14:\"181.176.121.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3650231a51aedd096758f56ddfef12cbc17bcab1', '34.66.54.97', '1656016796', '__ci_last_regenerate|i:1656016796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3651d2cd89ff4187decbc247ec839bdb6a93bb94', '181.176.115.113', '1672687913', '__ci_last_regenerate|i:1672687913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3658f4d6aa0f0688e471c8b1b45550c69259c71c', '198.235.24.134', '1656121165', '__ci_last_regenerate|i:1656121165;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36654b01344a29fce403a0ac20879dd31de9a549', '54.80.21.181', '1654293160', '__ci_last_regenerate|i:1654293159;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36762f921c30e9c1b7497f3fc1deee81e0fc462b', '190.237.172.147', '1614777523', '__ci_last_regenerate|i:1614776357;local|s:1:\"1\";listaVenta|i:2025;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367c37b400b4ff661ca19ba32c3a592a11467696', '179.6.222.7', '1617141566', '__ci_last_regenerate|i:1617141140;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617114271\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367f925e4eb717c22772a903314b9a48bc669aee', '144.86.173.24', '1628023071', '__ci_last_regenerate|i:1628023071;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36954820fa9694642bbe6ec3047a0717576f1161', '::1', '1598580564', '__ci_last_regenerate|i:1598580484;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36988a83afde7c8a84c5d20a97448fd971876538', '161.132.234.14', '1622651361', '__ci_last_regenerate|i:1622651041;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622579033\";last_ip|s:15:\"146.112.244.227\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a40ebaac584fb2b3e922986e4e93bb05a40b7e', '38.25.16.150', '1671740437', '__ci_last_regenerate|i:1671740102;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671730864\";last_ip|s:14:\"190.235.46.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a7f7d95457aa47397dd32ef58fbed3a80fe04f', '190.239.192.47', '1622562022', '__ci_last_regenerate|i:1622561723;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622500495\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b26c76fae55251f742f17e0f808124ff9308ad', '167.94.146.53', '1693099549', '__ci_last_regenerate|i:1693099549;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36be8f1e1bc3ec86a452f9ba17f14926dda8ca45', '51.15.205.3', '1653945871', '__ci_last_regenerate|i:1653945871;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ddaeb0c803440168a9b8bb1707843a5d2fcaa3', '148.102.26.11', '1619197960', '__ci_last_regenerate|i:1619197960;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e3fd462ed14ea804b16a7b418b20009a81bff1', '167.248.133.118', '1672584771', '__ci_last_regenerate|i:1672584771;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f0ed40beb56a9b6c3d4a7d975a74d77fbf45f6', '167.248.133.189', '1677672251', '__ci_last_regenerate|i:1677672251;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f14196628a1d82a87759287f24ad23b65522e9', '148.102.26.11', '1620229324', '__ci_last_regenerate|i:1620228732;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f4323490a0a9667823dd863a1b1671782c7e18', '201.212.119.152', '1611943071', '__ci_last_regenerate|i:1611943036;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3700b7f4241c8cc2237397fe1d830c71d4e9e23e', '72.55.136.199', '1690860627', '__ci_last_regenerate|i:1690860627;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371fd35aa2cc410ca1059df6b29c46a2f5be63c3', '181.176.109.80', '1674852742', '__ci_last_regenerate|i:1674852556;local|s:1:\"1\";listaVenta|i:104;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674848384\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37206845dce5f70fdce48e65988d4dac412845a1', '186.1.135.129', '1617814764', '__ci_last_regenerate|i:1617814485;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3723b78e4ea74c6249ec7ed03e67bc4d3c516ba0', '205.210.31.78', '1682404062', '__ci_last_regenerate|i:1682404062;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372840f69eb17e1c1965314c7857104b0dac5c97', '186.1.135.129', '1618246228', '__ci_last_regenerate|i:1618246223;local|s:1:\"1\";listaVenta|i:670;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37499d30ee39601bc620683fb772814b1dd99ebf', '186.1.135.143', '1615924361', '__ci_last_regenerate|i:1615924323;local|s:1:\"1\";listaVenta|i:570;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374b60bbb2a57d66e83cf5dca105c06fedcc949a', '190.192.49.231', '1623086911', '__ci_last_regenerate|i:1623086777;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622816464\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('375392f5e9f51002e47db27928dead2bbe719244', '38.25.16.184', '1698945854', '__ci_last_regenerate|i:1698945766;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3767422c5ebbeb2f4a2858157fcf63c64768b432', '34.68.99.89', '1656750480', '__ci_last_regenerate|i:1656750480;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('376833040df20c550c5de3fceab3d11607e87b6b', '45.225.216.151', '1623348440', '__ci_last_regenerate|i:1623348440;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3781a90e69e8dda75da1e19e2552650955bbca12', '205.210.31.23', '1660053909', '__ci_last_regenerate|i:1660053909;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37836096195e65cadb1829eaa467793711911cd7', '186.1.135.131', '1614266162', '__ci_last_regenerate|i:1614266120;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614199387\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378f5fb26f965b8a7ecbafd766f3e368e727f855', '38.25.16.150', '1672412888', '__ci_last_regenerate|i:1672412791;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672369754\";last_ip|s:14:\"181.64.231.238\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3796fa814061cfc5719a7cd96632a4b45e509a23', '2.57.122.19', '1637235887', '__ci_last_regenerate|i:1637235887;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ad58ddf98b509965bd8b76203231b77156d165', '186.1.135.129', '1617811831', '__ci_last_regenerate|i:1617811638;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ada615a22a85130a2f45da3a4e07701d51ad19', '161.132.239.98', '1635263465', '__ci_last_regenerate|i:1635263457;local|s:1:\"1\";listaVenta|i:2;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1634578917\";last_ip|s:13:\"181.64.18.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c89e901ec4df6a5b8d3164ec53f9f740995f96', '198.235.24.139', '1670198566', '__ci_last_regenerate|i:1670198566;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e2b2d95d55b1ae3abcab20b39087bda0e03baf', '186.1.135.138', '1613060919', '__ci_last_regenerate|i:1613060618;local|s:1:\"1\";listaVenta|i:2093;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:26:\"Venta efectuada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e382b34a7826713156ad5857d49c35830b54ae', '15.228.70.183', '1622006155', '__ci_last_regenerate|i:1622006154;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e3b0b7cd3de0ab7fb784a15dbda59a81934c9b', '18.231.189.92', '1621808225', '__ci_last_regenerate|i:1621808225;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37eb0b2984400daffdd44326da7fae46', '45.177.196.194', '1673648058', '__ci_last_regenerate|i:1673648058;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380cac86d0604d1ce781f5b4df93b7fb2f95bcfa', '167.94.146.55', '1698171430', '__ci_last_regenerate|i:1698171430;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38374009d8dfa02c50f4df91e0c274b82031ebd1', '38.25.7.99', '1653967501', '__ci_last_regenerate|i:1653967467;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1653955634\";last_ip|s:10:\"38.25.7.99\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38374128512f36a1b299f4bb0555f8847b1fbf84', '34.71.227.84', '1656041414', '__ci_last_regenerate|i:1656041414;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38374618bfe6666740160498977c4806d7057f0e', '186.1.135.135', '1612532110', '__ci_last_regenerate|i:1612532043;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612474708\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3837fdedd1227465f38c91bfeaf0bb89ae2e063c', '201.230.205.150', '1698866642', '__ci_last_regenerate|i:1698866455;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698798133\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384701af05246e7621c9cead8a09290643aeaa42', '162.142.125.222', '1665414076', '__ci_last_regenerate|i:1665414076;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384bf9024125a5f5ade9ee433144bd9508ab5e2b', '186.1.135.159', '1618842191', '__ci_last_regenerate|i:1618841954;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('385dc7ebe55707c7330f2284fbd2b0ab4f03f055', '167.248.133.127', '1685371240', '__ci_last_regenerate|i:1685371240;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3875e4386f1e1e777d464fd23700bdda3ff6276d', '190.232.180.131', '1611934640', '__ci_last_regenerate|i:1611934640;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3881edc13425dc461803d791d3a2ed3ec44a30a5', '37.220.93.104', '1686436497', '__ci_last_regenerate|i:1686436496;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3888b8a2d5fdeb720d39b7e8376959ff635c6b2a', '198.235.24.44', '1697867779', '__ci_last_regenerate|i:1697867779;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388e1bff1e66c6e8bda90a9fa877d62e', '201.230.81.164', '1622131766', '__ci_last_regenerate|i:1622131766;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38a14154118c086a61ed628b7ed0a38b3bc50598', '52.42.79.222', '1623253987', '__ci_last_regenerate|i:1623253987;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38a459cba5b447c8e7e3ec9c5a4b47306094bb67', '123.6.49.38', '1683455440', '__ci_last_regenerate|i:1683455440;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ab71a144966d65cdbf952fb85b0915f2d9d960', '18.230.197.174', '1612095443', '__ci_last_regenerate|i:1612095443;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e3ffaddece8d8da81288b3da4286d9ee49076b', '::1', '1598818162', '__ci_last_regenerate|i:1598818162;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598816134\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e837db93464aef0118194d64ba210793f612b6', '167.94.138.60', '1637544796', '__ci_last_regenerate|i:1637544796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e906cc4e864a51191c0be94c0d357435b5c9de', '134.122.7.10', '1676750936', '__ci_last_regenerate|i:1676750936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38f0a7b4b24e29c36dec608b2de4e904004f2479', '205.210.31.58', '1677676648', '__ci_last_regenerate|i:1677676648;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38f4ff84b13e0ea9606fc374e77c117870a06634', '181.176.109.80', '1674855737', '__ci_last_regenerate|i:1674855736;local|s:1:\"1\";listaVenta|i:104;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674848384\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390572f5ccd8fc9438c65889f6654f5507893c4a', '186.1.135.132', '1612878484', '__ci_last_regenerate|i:1612878147;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612875106\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39098a4252ac7270476dede0d1c503303406e87f', '201.230.81.79', '1620231866', '__ci_last_regenerate|i:1620231866;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620229244\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39099db348a1b20eb79643fb3599309075c8bd85', '190.239.78.92', '1620658472', '__ci_last_regenerate|i:1620658472;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('392658225de9ff30f31ce1163347165a4d27b7db', '134.122.7.10', '1676750936', '__ci_last_regenerate|i:1676750936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393706647e5c27665dea0e6204622173fef8fa86', '205.210.31.13', '1655433150', '__ci_last_regenerate|i:1655433150;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393fe79a3cb6c252a4408c855560b89dbc22b276', '186.1.135.141', '1612466913', '__ci_last_regenerate|i:1612466449;local|s:1:\"1\";listaVenta|i:18;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612456908\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:24:\"Pago agregado con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394a1601d2b919b4a7349e251ef4e9983178ed63', '34.133.61.90', '1655545945', '__ci_last_regenerate|i:1655545944;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3957075c2c108ffdbe3604d87baa8337f0d85c3a', '150.136.250.6', '1661793575', '__ci_last_regenerate|i:1661793575;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3962928fe51fb32346a3a825b21c3f9780a2f524', '186.1.135.79', '1611954866', '__ci_last_regenerate|i:1611954866;local|s:1:\"1\";listaVenta|i:633;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3968004ab773b528134d8402005548aa5162bcd7', '167.248.133.189', '1684774222', '__ci_last_regenerate|i:1684774222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3968fbdcbd600c7770c8f33e30181202c19827d1', '190.235.46.177', '1671640306', '__ci_last_regenerate|i:1671640304;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671575407\";last_ip|s:12:\"190.236.0.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397a7382be432220ed35212caf58fd37f149ec50', '38.25.16.184', '1698958199', '__ci_last_regenerate|i:1698957890;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397b3b8a6f167a4a4ca0917c7d95df72a589eb22', '65.154.226.168', '1676544619', '__ci_last_regenerate|i:1676544619;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ab68ea8dc959cbf2c24863230113f3aa61a4c2', '132.157.129.160', '1617719656', '__ci_last_regenerate|i:1617719635;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617493216\";last_ip|s:14:\"132.184.128.25\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ac0af8f755b8358cfe04ad94e0ac0d6d1e6d23', '45.225.216.152', '1624918655', '__ci_last_regenerate|i:1624918496;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915364\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b63750d65d382076b1f4843e3ee1ab59f6f4e7', '18.231.134.207', '1622182349', '__ci_last_regenerate|i:1622182348;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d42e8d7fbddece8165928baab2d81de30d16f7', '35.238.28.10', '1655475882', '__ci_last_regenerate|i:1655475882;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39dee7f838d2cbd74a55cbcda73ae61b6fe77b83', '45.225.216.151', '1623417285', '__ci_last_regenerate|i:1623416986;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623332925\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a135c76658856c43615064b40a3021c4a0d2e05', '186.1.135.134', '1614087557', '__ci_last_regenerate|i:1614087010;local|s:1:\"1\";listaVenta|i:223;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2d8ce049f6651e355ff78f31dbeefbcb163b80', '92.118.160.45', '1623438215', '__ci_last_regenerate|i:1623438215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3c267123a0ce3001860851d9ae29529355b5af', '190.237.172.147', '1613903816', '__ci_last_regenerate|i:1613903816;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3cdbfaea31238e3e742507e1cc91ca17930cdf', '205.210.31.14', '1662963531', '__ci_last_regenerate|i:1662963531;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a46be599ee12972612aba5cf70bfe76d23bd444', '205.210.31.134', '1653273598', '__ci_last_regenerate|i:1653273598;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a4f6552853bef7ead1e30b2737ef357a8138582', '167.94.138.33', '1681998971', '__ci_last_regenerate|i:1681998971;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a52867bc5333183728683ed30240e3f00488b5d', '::1', '1598556809', '__ci_last_regenerate|i:1598556807;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598362856\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a587de65af882522a15bb1a0ce2b0f3f1ecf5df', '186.1.135.138', '1613064171', '__ci_last_regenerate|i:1613063884;local|s:1:\"1\";listaVenta|i:2994;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6674b72e52b028178609beaf9d38ba', '45.177.196.194', '1670943293', '__ci_last_regenerate|i:1670943293;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8094924d57f20a9da9c52c6cc0c2bfe9fd2581', '23.97.205.210', '1654911616', '__ci_last_regenerate|i:1654911616;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa69c0152e5623f8633b519f49c819a34e2301b', '34.96.130.224', '1614033161', '__ci_last_regenerate|i:1614033161;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa8e9d80d8ef0365fdb706319d4baadbedf20f1', '186.1.135.135', '1612537019', '__ci_last_regenerate|i:1612536995;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aabbca0de1cd8ac08055e7c57b95803b648bd40', '35.183.60.188', '1622788989', '__ci_last_regenerate|i:1622788989;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3acf2a65030a77b9c7dbb0de84dad5ab713bf712', '18.230.155.51', '1622373089', '__ci_last_regenerate|i:1622373088;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3adb0b91dcdbfc29815038c5e2bcb91228b2a446', '38.25.26.18', '1681790218', '__ci_last_regenerate|i:1681789325;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681781383\";last_ip|s:15:\"201.230.205.189\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af10802196d61b9de4956b89297fd6c', '190.43.38.134', '1621695314', '__ci_last_regenerate|i:1621695314;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b048c27bee71cb77933be306857d67bce18b169', '181.176.114.37', '1674922673', '__ci_last_regenerate|i:1674922671;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674852558\";last_ip|s:14:\"181.176.109.80\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b065b8ac1a22703d2ac24900f9b2d97edc04462', '104.197.91.55', '1655642603', '__ci_last_regenerate|i:1655642603;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b09b32e6e310eea65dde1421b019dcff87a2cb9', '186.1.135.146', '1614019704', '__ci_last_regenerate|i:1614019526;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614011469\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b28a1a4ba0f30fed6965d0b5d6a7d182abbfd72', '148.102.26.11', '1619199399', '__ci_last_regenerate|i:1619199376;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619198960\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b33b4a3af3c25c8ad3df967814ddc8d56cb1c8d', '2.57.122.25', '1682736330', '__ci_last_regenerate|i:1682736330;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b340d403a5a89b3c8725a9356eb1207f531888c', '186.1.135.129', '1615237060', '__ci_last_regenerate|i:1615236596;local|s:1:\"1\";listaVenta|i:61;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615234680\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3641d2ed78adf9b41acacc246fda843e655111', '186.1.135.136', '1617913481', '__ci_last_regenerate|i:1617913433;local|s:1:\"1\";listaVenta|i:204;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617908137\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3af4b62138418fce8cc55758f02e686e9f14f9', '::1', '1598601756', '__ci_last_regenerate|i:1598601733;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b63e1609ec8c4fd1b12d9741628e90dc8b513d2', '170.64.154.140', '1683172222', '__ci_last_regenerate|i:1683172220;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b65f601ce9f61eb14234132381526d37dd9177a', '38.25.16.150', '1671248901', '__ci_last_regenerate|i:1671248802;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671211178\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6f807fc2220ac8f33efddd6f980ddfeadb0dd0', '198.235.24.58', '1679830956', '__ci_last_regenerate|i:1679830956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b781f818e62dbf4d4ee8970c8467088623eaf90', '54.233.99.161', '1612173861', '__ci_last_regenerate|i:1612173860;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b8137167054bee1e0d851d3fac96b7145fc8f4f', '198.235.24.239', '1683583249', '__ci_last_regenerate|i:1683583249;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b8c2553ddee78e6a022ca3f9fc715f673635e27', '52.64.20.252', '1620401493', '__ci_last_regenerate|i:1620401493;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b9f1470e56a803902d3c2e529e0681f5c19e54c', '192.175.111.254', '1690877298', '__ci_last_regenerate|i:1690877298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba1180d303b10240f50dba0d9ba7529', '201.230.81.164', '1622131759', '__ci_last_regenerate|i:1622131759;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb3ccc285c6e02f1cbafda5f96eb495e43e24ed', '51.15.205.3', '1684555141', '__ci_last_regenerate|i:1684555141;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bcf5a52561affe2699d4f75abd55ef94aefba9b', '167.94.146.55', '1694795594', '__ci_last_regenerate|i:1694795594;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd7f37e09a7c4193fdc2a56b2409dae4f4c21e1', '51.81.167.146', '1668922111', '__ci_last_regenerate|i:1668922111;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd7f7a67f0b9ea1cff420cedd93aaa922e5a610', '186.1.135.131', '1618344973', '__ci_last_regenerate|i:1618344973;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf76cc8a2bf24c439ef4ae05ca777fa72b86eae', '148.102.26.11', '1619727183', '__ci_last_regenerate|i:1619726849;local|s:1:\"1\";listaVenta|i:435;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619717910\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bfbb33d993f9ff84869829cbe94df19910c5c4d', '35.222.82.19', '1657026198', '__ci_last_regenerate|i:1657026198;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bfc27c28fda44cec51a42d4e68de1194da6b8b4', '101.68.211.2', '1685590685', '__ci_last_regenerate|i:1685590685;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c13b2c76faa90efb151d4e325e1e17e850aee7a', '134.122.7.10', '1685127262', '__ci_last_regenerate|i:1685127262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c140279ce11ad8b4bf41d96932ec98c0c85f96f', '198.235.24.50', '1669965590', '__ci_last_regenerate|i:1669965590;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c29500666fca8e933fa0206ac25c90b84ef0370', '205.210.31.162', '1681177522', '__ci_last_regenerate|i:1681177522;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c468d43fedc8ce35160b501bdbc29073807ff90', '34.194.68.222', '1669004716', '__ci_last_regenerate|i:1669004716;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c50ba563ff16fc55203dc82c27e3463219794a2', '159.65.184.120', '1628039235', '__ci_last_regenerate|i:1628039235;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c550d5cea36942abe9a5d43f17c81819faf666f', '205.210.31.22', '1673688775', '__ci_last_regenerate|i:1673688775;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c693f600c762b1872484221370f117d81112b91', '38.25.7.251', '1652890892', '__ci_last_regenerate|i:1652890892;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c76784eafd56760522e1cfbf0c2738672e8e4cb', '186.1.135.79', '1611931840', '__ci_last_regenerate|i:1611931581;local|s:1:\"1\";listaVenta|i:441;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611926657\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c94b3bb34a414873a965fecdb0c65861d232511', '142.93.190.239', '1628187815', '__ci_last_regenerate|i:1628187815;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c952d335eae0a2b0ebfc1cee682636a99b2d884', '13.232.96.15', '1623043338', '__ci_last_regenerate|i:1623043338;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c9f8a91658b3a700c47a44e1619984feca2fde5', '52.67.147.77', '1622354572', '__ci_last_regenerate|i:1622354571;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb8c4b1e73b6f0118ef19989925c8af2516a971', '205.210.31.66', '1681781394', '__ci_last_regenerate|i:1681781394;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc572f69b9592f57efbf1fa675c9fe59ca64345', '47.88.86.63', '1696435199', '__ci_last_regenerate|i:1696435199;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc5b2b162f729211fd3a7f92b721a0bd26b74c4', '161.132.234.14', '1624915389', '__ci_last_regenerate|i:1624915358;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915211\";last_ip|s:14:\"181.64.223.213\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ccd2b13af8c78e111ea2540592a70ad6dfe0c65', '186.1.135.134', '1618600243', '__ci_last_regenerate|i:1618599697;local|s:1:\"1\";listaVenta|i:87;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618590832\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce84d3959308e57582f2569965dfab0873dfedb', '148.102.26.11', '1619816177', '__ci_last_regenerate|i:1619813791;local|s:1:\"1\";listaVenta|i:207;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619798812\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf58a1e3a615bcd81c070d0f98f0e628850f37c', '167.94.138.45', '1659858356', '__ci_last_regenerate|i:1659858356;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf8f920e3a7ec70668cfe2a6589792246ae7738', '132.157.129.160', '1617720483', '__ci_last_regenerate|i:1617720476;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617493216\";last_ip|s:14:\"132.184.128.25\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cfff4f63cd7f419f5bc84586e2ca67cbe09580a', '42.192.11.192', '1628898819', '__ci_last_regenerate|i:1628898819;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d027a48d7bed44e339bd8c3e7eaa356d1c5b188', '15.228.56.85', '1611594972', '__ci_last_regenerate|i:1611594972;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d060f598fc88d990614f77884414c8f97c592ba', '190.239.71.47', '1620836501', '__ci_last_regenerate|i:1620836294;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620764144\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d224f0164ffd77c2f11aa7b828a9c57828f4f14', '190.232.180.131', '1612816462', '__ci_last_regenerate|i:1612816380;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612798667\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d2a3c28107f6b1361818fcac591adc70d62ed9a', '18.230.119.177', '1612095444', '__ci_last_regenerate|i:1612095444;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d491ef9f188a5fa95e5cb93fae3ba227635eabf', '167.94.138.36', '1685375548', '__ci_last_regenerate|i:1685375547;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d4a3823ece0f29ab9e52adc94cabfc290466f82', '179.6.1.37', '1698444615', '__ci_last_regenerate|i:1698444573;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698443492\";last_ip|s:15:\"201.230.205.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d575ad8ea83bd3bdd700d479c45bef5', '45.177.196.194', '1670874001', '__ci_last_regenerate|i:1670874001;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d60da6bbb2ae42e380f8aa11178f7cfe85bbf7a', '179.6.212.129', '1614698044', '__ci_last_regenerate|i:1614698044;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d6f66690716ec97c099c75352603d4cc249df79', '::1', '1598324404', '__ci_last_regenerate|i:1598324348;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598317159\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d726decaa767df240e9f93cc413cc62d3682886', '18.231.127.118', '1611929726', '__ci_last_regenerate|i:1611929726;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d75aacdb3a2b19069a0bd15e8ad3f999402df55', '162.142.125.217', '1681575098', '__ci_last_regenerate|i:1681575098;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d79dac4192540a996e2237a22129e2a3e523471', '209.126.77.67', '1676104336', '__ci_last_regenerate|i:1676104336;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8093ebc2fa08c728176b99d68f1c97f0eeb65a', '190.237.172.53', '1616097940', '__ci_last_regenerate|i:1616097280;local|s:1:\"1\";listaVenta|i:377;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616082515\";last_ip|s:13:\"190.239.70.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d82e9fcd43503dbabbfb8dc6adc80083d33ee56', '190.232.180.131', '1612902018', '__ci_last_regenerate|i:1612901815;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612895575\";last_ip|s:13:\"190.238.217.9\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d87d2f5590851f21c6e4fbd9974646bd86489a6', '167.94.138.60', '1674339057', '__ci_last_regenerate|i:1674339057;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3daea4928b1e59c19feccf003b4629af2044f12f', '162.142.125.210', '1677420551', '__ci_last_regenerate|i:1677420551;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3db0214451876d88367ed9054a960e9a561805c5', '148.102.26.11', '1621614665', '__ci_last_regenerate|i:1621614665;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3db901d99e908280a98937bedc9bf8b660d459c0', '162.142.125.221', '1656611164', '__ci_last_regenerate|i:1656611164;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e0b1ec326e042a5b852be7cfaa70603d0f2ef1d', '51.158.37.209', '1672826300', '__ci_last_regenerate|i:1672826299;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e213ad09cc9b93d2c8905cc8d130320342ecf52', '148.102.22.241', '1616692964', '__ci_last_regenerate|i:1616692959;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3ff7d8576fde9647db1e5c2f47f9547c520252', '148.102.26.11', '1619733223', '__ci_last_regenerate|i:1619732512;local|s:1:\"1\";listaVenta|i:619;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619717910\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e44a8255141c74e9a6d843465cb9cdadd962411', '132.184.128.103', '1611971841', '__ci_last_regenerate|i:1611971841;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e4a26092fca9db436414fbdcbeaed87ec254ad4', '92.118.160.41', '1635611905', '__ci_last_regenerate|i:1635611905;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5057629bfe00dbe4828d89afeaf72756938649', '162.142.125.211', '1658851914', '__ci_last_regenerate|i:1658851914;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5e2f66fbcd7442284e6766d612c0119f1bbe63', '201.230.205.189', '1681790462', '__ci_last_regenerate|i:1681790264;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e88cf280ab427e13310c819c7644e8df1fdff2c', '167.94.138.45', '1659858355', '__ci_last_regenerate|i:1659858355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9673fb7f8530af118e45683e2d87d9649afe6c', '181.176.114.37', '1674914106', '__ci_last_regenerate|i:1674914105;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e97e574961c7a2465f2036a04cdec480e696bb1', '179.6.222.7', '1617973903', '__ci_last_regenerate|i:1617973630;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9e96ffd79bc543362b43893799d3d848e03ae2', '162.142.125.210', '1654268094', '__ci_last_regenerate|i:1654268094;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ea6a52cdfacd1ce3e6226cfbaa9963d3f4e5f29', '186.1.135.66', '1616438491', '__ci_last_regenerate|i:1616438491;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ec612184fb2132bec6ae27157351d93', '201.230.81.164', '1622146294', '__ci_last_regenerate|i:1622146294;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622131811\";last_ip|s:14:\"201.230.81.164\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed234d77e831aec5460814221ff099c891371f6', '148.102.26.11', '1619195892', '__ci_last_regenerate|i:1619195658;local|s:1:\"1\";listaVenta|i:2991;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed7b4ebbb4eebaa44d1050b92b4c6354294645b', '186.1.135.130', '1617032884', '__ci_last_regenerate|i:1617032061;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee0633d49f7079be1516e00d54a3647c41a7a14', '162.142.125.217', '1680060791', '__ci_last_regenerate|i:1680060791;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee45f813f04781bdf342937a6c700de753a46e8', '201.230.205.217', '1671076920', '__ci_last_regenerate|i:1671076917;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671071243\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef5e11ec4565fc7e0acc4b08b0c018ff0049b8c', '167.248.133.45', '1663426888', '__ci_last_regenerate|i:1663426888;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef82a972fcdc87d496abace05904199c5bcdf51', '38.25.16.150', '1671075650', '__ci_last_regenerate|i:1671075650;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0680923195ccd479e31964dd02a4f46a004cf5', '101.199.254.235', '1677871954', '__ci_last_regenerate|i:1677871954;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f085b076b569b732d0925fd8b025c1c7173996c', '92.118.160.13', '1637480156', '__ci_last_regenerate|i:1637480156;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0e77336c8e4da05849e9d6ab3d62d95e49c022', '167.94.145.58', '1696540742', '__ci_last_regenerate|i:1696540742;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1a16616ea11490278f3bca9e64fe7c8d8b814e', '38.25.7.251', '1652378138', '__ci_last_regenerate|i:1652378128;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1d8465ce8386fdffad8ede0cbad4df71ad786e', '205.210.31.28', '1655532188', '__ci_last_regenerate|i:1655532188;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f2ac58ab4fbf2bfbbcc6e1070a8bba7794ed40c', '3.80.199.119', '1654292994', '__ci_last_regenerate|i:1654292992;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f72b6bb2cdb8f3b3a9bb60ce22c422608792be8', '92.118.160.13', '1622438880', '__ci_last_regenerate|i:1622438880;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f78e80c68367d4dfa8ddc7cb5ccbd7ffe6882c3', '162.142.125.9', '1661532492', '__ci_last_regenerate|i:1661532492;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8146e765d26bd6ec148b32e7bf9269af45a82e', '::1', '1598610557', '__ci_last_regenerate|i:1598610546;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8697b120368d8b09427cd1be2f0df6bd373521', '38.25.16.184', '1698950265', '__ci_last_regenerate|i:1698949976;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:60:\"<p>Usuario desactivado</p><p>activation email successful</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8c854e8d9d9e6cf1a9023fa420c7b65ac32ce8', '190.232.180.131', '1612567021', '__ci_last_regenerate|i:1612566594;local|s:1:\"1\";listaVenta|i:227;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612541361\";last_ip|s:15:\"132.184.130.166\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8c95b6b6157df50d0c7f995990b646ba0dbf46', '209.17.97.98', '1612288793', '__ci_last_regenerate|i:1612288793;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f90dc240dc6b6d2b3098cfb77389707a54c63a6', '186.1.135.130', '1614366570', '__ci_last_regenerate|i:1614366556;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614345172\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f9a25b15e6ee36068d13159bd1ba4c41f648ef9', '167.94.138.44', '1654047819', '__ci_last_regenerate|i:1654047819;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f9b43a7fba5ab211ce8836c4706f3be7374008b', '207.148.127.89', '1694421983', '__ci_last_regenerate|i:1694421982;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa1169025aba496facfbb49a5bc615ec6537e02', '179.6.212.129', '1614717550', '__ci_last_regenerate|i:1614715870;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa475dec9cb85acc2cf9e550573dc3f294662b5', '44.199.235.222', '1668989963', '__ci_last_regenerate|i:1668989943;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb43fb4e4837907861f55a92c69f21870a96698', '186.1.135.129', '1614695679', '__ci_last_regenerate|i:1614695395;local|s:1:\"1\";listaVenta|i:122;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614692817\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb6c74253ec90278577ecb7ffb29afe5e9f1bc4', '167.71.223.167', '1698153267', '__ci_last_regenerate|i:1698153267;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fc5b24c138c7efb778a999cb95016d3c8c7061a', '92.118.160.57', '1629044269', '__ci_last_regenerate|i:1629044269;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd0865f7387eecaf338c03cdea81f6feeae7708', '198.235.24.149', '1660371588', '__ci_last_regenerate|i:1660371588;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe255b31be67fc48f4e188a7ac20fa89882a487', '186.1.135.134', '1615823223', '__ci_last_regenerate|i:1615821602;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe2c0a59d481c293a95094cbdf542eca1462c59', '167.248.133.45', '1663426886', '__ci_last_regenerate|i:1663426886;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3feff25f207ebb13425bde8e6c5e092c635b6b37', '190.237.172.109', '1615120228', '__ci_last_regenerate|i:1615120228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff4c04a290753b1bd73a5670dfcedb689e79501', '186.1.135.141', '1611849102', '__ci_last_regenerate|i:1611848851;local|s:1:\"1\";listaVenta|i:156;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400bf80217087dbeab955033a1845b476666a5b8', '185.195.27.20', '1635914298', '__ci_last_regenerate|i:1635914298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4020714bbf75acfcc77ee90ea31980670b8305fb', '195.154.62.232', '1634125256', '__ci_last_regenerate|i:1634125256;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405bd20648ea39e1260e940855bc52c7ed797e68', '198.235.24.165', '1666072743', '__ci_last_regenerate|i:1666072743;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('407d2fac1b83532266d82303e6ab7d633d6db049', '186.1.135.144', '1615318279', '__ci_last_regenerate|i:1615318064;local|s:1:\"1\";listaVenta|i:84;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615296965\";last_ip|s:13:\"186.1.135.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4087b0fac3a563e8c587e53cee49fa8fbaf63584', '38.25.16.18', '1672970907', '__ci_last_regenerate|i:1672970841;local|s:1:\"1\";listaVenta|i:80;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672936816\";last_ip|s:11:\"38.25.16.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408dc540221f616a2177c008f56c9191a4419bcd', '190.239.78.92', '1620676042', '__ci_last_regenerate|i:1620676006;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c5438ebf390846ad3a63f334a40338f1c945ee', '144.86.173.13', '1630427032', '__ci_last_regenerate|i:1630427032;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d43e703ad1fc3a4916edb10596ba38ed767033', '190.237.172.147', '1613902172', '__ci_last_regenerate|i:1613901801;local|s:1:\"1\";listaVenta|i:89;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613742638\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e5828af3a87990c9e3685901e09d06160a0d15', '186.1.135.132', '1615473573', '__ci_last_regenerate|i:1615473570;local|s:1:\"1\";listaVenta|i:573;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615414832\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000312\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4102840c21648783c488316f3428658b7c218b1b', '167.94.138.49', '1688046891', '__ci_last_regenerate|i:1688046891;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4105829511aac45999e94bdc21dacba6fdd0c456', '186.1.135.137', '1613655954', '__ci_last_regenerate|i:1613655932;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613653607\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4110424af202eaa1c703966609bf967ff76b3516', '52.90.61.13', '1693607228', '__ci_last_regenerate|i:1693607228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413856640e8f7b230b676578b287609bfa35e263', '70.38.10.157', '1690877298', '__ci_last_regenerate|i:1690877298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41487888eaa43b87ab9ee71975971371e395f559', '186.1.135.150', '1613137176', '__ci_last_regenerate|i:1613136895;local|s:1:\"1\";listaVenta|i:239;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613047424\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41489fa003578bd12aed160a4382035e2c795463', '186.1.135.144', '1615318817', '__ci_last_regenerate|i:1615318814;local|s:1:\"1\";listaVenta|i:84;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615296965\";last_ip|s:13:\"186.1.135.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000307\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416a0fa8cd100654b8941ff99d8a394612031415', '198.235.24.50', '1683627463', '__ci_last_regenerate|i:1683627463;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4173d9e1a07d3bcd7951cf55176fad3bf2fa8beb', '198.235.24.178', '1686895256', '__ci_last_regenerate|i:1686895256;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41801f23184fdfcd40a931db0765e3a4288c0ba3', '148.102.26.11', '1619536627', '__ci_last_regenerate|i:1619536560;local|s:1:\"1\";listaVenta|i:595;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619534195\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419a2d0508566f53a78cb6122ac8e040524e309d', '138.68.133.118', '1683172266', '__ci_last_regenerate|i:1683172266;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419f8ea86707d5973fbc72798aa5dd8eba313bca', '15.228.41.141', '1622549268', '__ci_last_regenerate|i:1622549267;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a418f9f0ff65df4fa39c8517a0b58e3ea445e6', '167.248.133.127', '1685371240', '__ci_last_regenerate|i:1685371240;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41aaa7559b32301bc7b6fe9e9ddae3849c9c0f98', '201.230.81.79', '1620157579', '__ci_last_regenerate|i:1620157578;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41b827d9d6e2629c02701b876493b38076303688', '87.236.176.224', '1685276582', '__ci_last_regenerate|i:1685276582;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c0dd699df5144254517052eaa9729da9ad5288', '198.235.24.149', '1694892548', '__ci_last_regenerate|i:1694892548;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c13ca2a89700a9670df439240d0998', '45.177.196.194', '1670943290', '__ci_last_regenerate|i:1670943290;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c5948a3b09b096c91901357930e65644b85d04', '190.232.180.131', '1612565474', '__ci_last_regenerate|i:1612565319;local|s:1:\"1\";listaVenta|i:78;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612541361\";last_ip|s:15:\"132.184.130.166\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d6d0d31e81374bc02048d2fcbf4003c251e9fb', '164.90.182.182', '1689961926', '__ci_last_regenerate|i:1689961926;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41db15ddf1ea577484436f7e9f91e71f1dc2068e', '186.1.135.129', '1614723952', '__ci_last_regenerate|i:1614723881;local|s:1:\"1\";listaVenta|i:10;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614700430\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f8794e69914388ffa1ceac8e53e997f0209346', '179.6.222.7', '1617992618', '__ci_last_regenerate|i:1617992321;local|s:1:\"1\";listaVenta|i:2211;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4217906ac23dcc2c620ce4abae934b2ca86b64b5', '190.236.5.11', '1617717304', '__ci_last_regenerate|i:1617717180;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617716007\";last_ip|s:12:\"190.236.5.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421cab095b8fd93b254ce68dea9cfb475ed0d97f', '181.64.105.12', '1622214631', '__ci_last_regenerate|i:1622214609;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622210824\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:59:\"Forma de Pago no fue agregado con éxito, intente de nuevo.\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4220ff1eba14e9a0181de92e0592d4cbe8bd6061', '45.225.216.151', '1623274184', '__ci_last_regenerate|i:1623273814;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623252334\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('422901360321796155a4efb400d3139f53b079a1', '198.235.24.153', '1694906743', '__ci_last_regenerate|i:1694906743;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423a733ec6040a80627aa78b5c5e2ec78b8f7f81', '34.254.199.186', '1689118883', '__ci_last_regenerate|i:1689118883;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423a7830375d3e742d76323b6391101bc9fdeaf0', '179.6.222.7', '1617984385', '__ci_last_regenerate|i:1617984244;local|s:1:\"1\";listaVenta|i:1677;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4242cf21c20065127c7e40b38f0fea70ad32d0b4', '186.1.135.142', '1614619767', '__ci_last_regenerate|i:1614619619;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('424595a34375fb03207f266670e006eabf5dac21', '186.1.135.158', '1612911712', '__ci_last_regenerate|i:1612911585;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612910624\";last_ip|s:13:\"186.1.135.158\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('424bd9c8324df727a3051388a5607a03834ce069', '159.223.227.125', '1688724357', '__ci_last_regenerate|i:1688724357;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4253ceac6229cc246105720031fc56f9530796c6', '198.235.24.30', '1658120065', '__ci_last_regenerate|i:1658120065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425dc4b693bee370d5b0b03c29d47b78c04c8399', '3.250.180.218', '1686017245', '__ci_last_regenerate|i:1686017245;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425fd1c8f705b22d70dad1812d2524f9cddf239e', '34.254.53.125', '1668926989', '__ci_last_regenerate|i:1668926989;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42623acb8bf017417dfae2ab0551a6c60eba9928', '45.225.216.151', '1623693257', '__ci_last_regenerate|i:1623693257;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623692024\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42644f97585dd6a573cda761cd9bc8beea3232e2', '186.1.135.141', '1612443433', '__ci_last_regenerate|i:1612442859;local|s:1:\"1\";listaVenta|i:36;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612364658\";last_ip|s:12:\"186.1.135.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427052444c953ef8d31ceb794eb1208574f7db9a', '201.240.25.180', '1654293088', '__ci_last_regenerate|i:1654292778;local|s:1:\"1\";listaVenta|i:783;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1654292171\";last_ip|s:10:\"38.25.7.99\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4270b8c53c0d975556f49553a2cce470d8cdb617', '198.235.24.85', '1691550498', '__ci_last_regenerate|i:1691550498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42774e9ef644cca814bce0c1518bf1d629669d59', '198.235.24.58', '1669971946', '__ci_last_regenerate|i:1669971946;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42942885fbc5551fcd19c18ce8ba5ea3b590b769', '162.142.125.219', '1676951661', '__ci_last_regenerate|i:1676951661;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42be13ee7d4457a4e21d30cc4b6c786c565b1b43', '205.210.31.22', '1666450473', '__ci_last_regenerate|i:1666450473;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d1d84c2b6af1e0d372ed203565020e065beb62', '34.133.61.90', '1655545946', '__ci_last_regenerate|i:1655545945;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d82e3af4e887cd558237f277ac9cef39dbfab8', '18.231.156.60', '1611357737', '__ci_last_regenerate|i:1611357736;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d9cbbfdc9dbc662a5c4c4923f602730d8d23cd', '186.1.135.143', '1615399369', '__ci_last_regenerate|i:1615399369;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f4de598a406116a390bfd64d2afe154fd783af', '198.235.24.239', '1681857698', '__ci_last_regenerate|i:1681857698;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f892535023a6bb794cc300d021abf0c283478e', '45.177.196.194', '1670943583', '__ci_last_regenerate|i:1670943321;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670943295\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4300b5ebec83942574753cd871b3416b0dde1192', '198.235.24.52', '1662333554', '__ci_last_regenerate|i:1662333554;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430911bd87bbfdd82615896a19e747b7754fb1f0', '186.1.135.66', '1616444238', '__ci_last_regenerate|i:1616443937;local|s:1:\"1\";listaVenta|i:51;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432c32285e7f555306044c0a01aa7fdbed6b2355', '190.232.180.131', '1612567028', '__ci_last_regenerate|i:1612567022;local|s:1:\"1\";listaVenta|i:227;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612541361\";last_ip|s:15:\"132.184.130.166\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('434c26f3aef24e7af049328390cf82ab6e12e0fe', '167.248.133.37', '1681557240', '__ci_last_regenerate|i:1681557240;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4361323d73ba073c6085c7bedf7aa0975ed6b935', '161.132.234.14', '1632771941', '');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('436b30f71d1e25d4ebe36a9f990e30ec11b9070d', '198.235.24.18', '1680078948', '__ci_last_regenerate|i:1680078948;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('437c5d9bc8b8e7d6f76bad65b156e9340d09038a', '2.57.122.25', '1682736331', '__ci_last_regenerate|i:1682736330;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4382b0dac25ace6868791139923ca2ebf05afd41', '162.142.125.10', '1656958467', '__ci_last_regenerate|i:1656958467;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43892a3579c8a9c71019d21cc58a64e919271140', '51.158.98.24', '1688392148', '__ci_last_regenerate|i:1688392148;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('439a11a9214334e8863400c63e91f62d21d8ff29', '186.1.135.131', '1618341744', '__ci_last_regenerate|i:1618341417;local|s:1:\"1\";listaVenta|i:35;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43b5735444b678cd1be2f75c93c7bc707537253b', '198.235.24.59', '1684669297', '__ci_last_regenerate|i:1684669297;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43b5995f2cd75008ac9b2eca581d44110624054d', '205.210.31.176', '1669379407', '__ci_last_regenerate|i:1669379407;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43b5bedb83eccb7adf470793b5b84d99c5f5528a', '54.94.171.43', '1622524260', '__ci_last_regenerate|i:1622524259;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43bf39880a4d2c23054735df3fb050c43b458bb9', '199.45.154.51', '1698243556', '__ci_last_regenerate|i:1698243556;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43cd24c0ebf1adbc35f79334cb363ff31d60ca43', '162.142.125.212', '1677443435', '__ci_last_regenerate|i:1677443435;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43f744278ed4ca12cb2fe5356801a36bd16ce673', '186.1.135.138', '1612474732', '__ci_last_regenerate|i:1612474704;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612465975\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441507183e22e933a0270e98654d643f1d0e67c0', '148.102.26.11', '1619799946', '__ci_last_regenerate|i:1619799944;local|s:1:\"1\";listaVenta|i:218;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619789458\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44227c0785b136c75a4e0ed975ccd68b926b4001', '205.185.127.165', '1682234365', '__ci_last_regenerate|i:1682234365;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4423f2452dceb478ecc8fc9d6a7e35508d1f696f', '35.212.218.163', '1634030659', '__ci_last_regenerate|i:1634030659;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442509e9a62444688d499198f942aafda7bf2659', '201.230.205.217', '1670904985', '__ci_last_regenerate|i:1670904773;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670900121\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442964ef239939b050cd1169c4efe9e8', '201.230.205.217', '1672884619', '__ci_last_regenerate|i:1672884619;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4461c0223d39daa7d157925c2944efaf25b644ac', '198.235.24.143', '1662881203', '__ci_last_regenerate|i:1662881203;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4470371c84e836dc769e7c7110093d62eefbb6b3', '65.154.226.170', '1654271366', '__ci_last_regenerate|i:1654271365;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4488cb011f32752a5aa763d6f9f42536c0152ed6', '205.210.31.155', '1654915312', '__ci_last_regenerate|i:1654915312;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448cbf78fa0f748727bda93fc9aa4a0b9af46ec2', '190.43.38.246', '1628889909', '__ci_last_regenerate|i:1628889908;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448ea201db2147c15141e4a2615f23a5d1ca5062', '1.15.175.155', '1629052176', '__ci_last_regenerate|i:1629052176;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4499d5bc25c5b2f5404558e222c04fe14f8817e9', '190.236.10.253', '1621008555', '__ci_last_regenerate|i:1621008554;local|s:1:\"1\";listaVenta|i:28;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621000549\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a3a96d9281972bdc572be544f398aa83eff90c', '167.248.133.185', '1679568815', '__ci_last_regenerate|i:1679568815;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a689a559f679847d5aed0d2b10035c5d7138dd', '51.255.62.3', '1669065655', '__ci_last_regenerate|i:1669065655;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b247a9031683c7a891730de5ae9bf1783d9942', '34.194.68.222', '1669004716', '__ci_last_regenerate|i:1669004716;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c2238176c74d1929b89032b6040b1a5693f0dd', '148.102.26.11', '1619192723', '__ci_last_regenerate|i:1619192721;local|s:1:\"1\";listaVenta|i:2069;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000406\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d9e1d20cab26219bc56f1937098410e5c6764d', '186.1.135.129', '1618236596', '__ci_last_regenerate|i:1618236584;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44e091c0f53f5a42477fd4c1884dfcb9d36367b6', '181.67.2.234', '1688746784', '__ci_last_regenerate|i:1688746604;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688698878\";last_ip|s:12:\"181.67.2.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f6e0a75d2fa9de40091f8eb2920e30af17866d', '190.232.180.131', '1611779591', '__ci_last_regenerate|i:1611779582;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611760323\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450246b5967e05f62e12e808aebc0039a4c80be4', '38.25.26.18', '1681790500', '__ci_last_regenerate|i:1681790303;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681781383\";last_ip|s:15:\"201.230.205.189\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4505336af18356fb248c6da0c28fcc3778671de7', '35.192.207.120', '1657582974', '__ci_last_regenerate|i:1657582974;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45071590c8f119c7a892fd753d8347a93f978d7c', '190.239.67.117', '1620332018', '__ci_last_regenerate|i:1620331997;local|s:1:\"1\";listaVenta|i:256;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620245558\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4515125c6b3293adf3babfce6befc96ed4336231', '92.118.160.5', '1635095954', '__ci_last_regenerate|i:1635095954;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('451bc316c2fe48b77d141ca5fc4c939eb4f2452e', '87.236.176.5', '1688274253', '__ci_last_regenerate|i:1688274253;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('451d882da842a96cd3efa9fb4c460de7333c4c7a', '186.1.135.131', '1617630913', '__ci_last_regenerate|i:1617630814;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617285684\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45207ce5ee61df7d6b78c13c019fe68653d68768', '13.49.41.104', '1628844473', '__ci_last_regenerate|i:1628844473;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4526dd60c02c80b8f4ddf77156c73574b06f9553', '34.86.35.207', '1613381244', '__ci_last_regenerate|i:1613381244;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4535d36e3566f5fca9c4050f970cfd67dfe6cf09', '144.91.106.14', '1655994067', '__ci_last_regenerate|i:1655994067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('454f463cd1c8f908386959777a471281d902c72b', '205.210.31.210', '1691255433', '__ci_last_regenerate|i:1691255433;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45716fb3016f30a5e78cfa54717c3d1b5fbf8fe3', '51.255.62.3', '1654335006', '__ci_last_regenerate|i:1654335006;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4575ef63a1c3ca1447c0d2c9ece259a46ccecda7', '201.240.25.180', '1654293217', '__ci_last_regenerate|i:1654293217;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4581b9404014f6b9592d205368d01593b05a0c81', '198.235.24.148', '1658362099', '__ci_last_regenerate|i:1658362099;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45825472d6c3285ae83875811fe0ddce', '45.177.196.194', '1673648058', '__ci_last_regenerate|i:1673648058;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a3854c0d399f9f83468e0404727e3b966222d1', '148.102.26.11', '1620250164', '__ci_last_regenerate|i:1620250152;local|s:1:\"1\";listaVenta|i:26;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620223665\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45aa532a06c9dcbc57bb44d2d52cdf7501e4a659', '167.248.133.36', '1678945923', '__ci_last_regenerate|i:1678945923;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f9218c4a1bd9bb984bef04204871dc95b84f61', '51.158.98.24', '1621565028', '__ci_last_regenerate|i:1621565028;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46098c1cadc14f092862954609e72c175f823090', '52.67.236.219', '1611174084', '__ci_last_regenerate|i:1611174083;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4610568e365a4d977c853520928d68186faee304', '45.177.196.194', '1681420955', '__ci_last_regenerate|i:1681420663;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1677334203\";last_ip|s:12:\"181.67.49.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4614d8d3a7cfc86b191730e7e9b06235f0027d47', '5.189.171.179', '1666863026', '__ci_last_regenerate|i:1666863026;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461b389591fc8feca8d78241e1c3ef0885d79fc4', '167.94.145.58', '1696540743', '__ci_last_regenerate|i:1696540743;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461eaf8afc81c092ad1c532880fc2d3dc08540dc', '13.56.251.116', '1615508901', '__ci_last_regenerate|i:1615508901;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461fb6a0061c14029cf842a7aea35c044fa71a14', '183.136.225.46', '1682307451', '__ci_last_regenerate|i:1682307451;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4621ee72756f66c5dd1db4addc08fabdcd6b7f7b', '148.102.26.11', '1619195096', '__ci_last_regenerate|i:1619194832;local|s:1:\"1\";listaVenta|i:2991;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('463c1621bb9e53f13215c459d7bca34893fec79b', '34.66.78.2', '1655430561', '__ci_last_regenerate|i:1655430561;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('464748fc1d721cada87c9c5ef163d24a0ffbaa6d', '183.136.225.44', '1685036529', '__ci_last_regenerate|i:1685036529;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46493ad96d3afb390df66bc5bd4071d0c8f730b8', '198.235.24.8', '1694822856', '__ci_last_regenerate|i:1694822856;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('464c402904ae0d38669d79d9960c22009c44fe4f', '186.1.135.149', '1616768716', '__ci_last_regenerate|i:1616768418;local|s:1:\"1\";listaVenta|i:143;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616765276\";last_ip|s:13:\"186.1.135.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4656080a527a0ca66c4722e6fafff89dbc216082', '148.102.26.11', '1620654688', '__ci_last_regenerate|i:1620654470;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466cf2aa83b819181ea8102bec4d27bb755859e7', '198.235.24.152', '1655183756', '__ci_last_regenerate|i:1655183756;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467777b207ab53254c23d7f7b28a660cf52f817d', '167.94.146.56', '1693089657', '__ci_last_regenerate|i:1693089657;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('469136bde0097be1dd0a07913b42ebd9e74eefcc', '186.1.135.129', '1617809018', '__ci_last_regenerate|i:1617808689;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46921222e68e99e36ebb6f5e541f37c75bca7ffb', '167.94.138.34', '1679217253', '__ci_last_regenerate|i:1679217253;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b496ef8d88eb6d3e3bb6a86d93e395b62223a4', '186.1.135.129', '1617809173', '__ci_last_regenerate|i:1617809167;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617803157\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46bf55e392df83648b462bc4f6ee435ce2001708', '148.102.26.11', '1619455534', '__ci_last_regenerate|i:1619454235;local|s:1:\"1\";listaVenta|i:622;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619452033\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46cdb54bb71d22484558b80622e9093057c2260a', '::1', '1598648461', '__ci_last_regenerate|i:1598648443;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598648215\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:0:\"\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"+U4vbcImELpXubxucfgS4tlCzTZcBIpSQHvTH/cKGHrg3cgyPM+xMRIhJb/Nj2O7ctu8mCXkqTzikhf3vkqTSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46de3525b88296d4956ec1997b6899bffd3d0644', '201.230.205.235', '1695400368', '__ci_last_regenerate|i:1695400069;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694654246\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e2745e38364390cc79c1a9ed4b31d8decb1ddc', '44.199.235.222', '1668989963', '__ci_last_regenerate|i:1668989943;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46fcba69969348e5ec2ded757ee9d2fd5bad1ca9', '167.248.133.38', '1688027532', '__ci_last_regenerate|i:1688027532;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47059000fb27bb8186c227b919ce9db3f5cfe0d4', '144.91.106.14', '1655994067', '__ci_last_regenerate|i:1655994067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472275e5f0569850947394f3eb56cf9dd1c4433c', '47.128.46.16', '1696073927', '__ci_last_regenerate|i:1696073927;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4726636ad69f8f58a31937321927f90ac79e05f2', '188.166.81.73', '1676522771', '__ci_last_regenerate|i:1676522771;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472d99f6384185df8cbb5f0356593e98d4df3059', '148.102.26.11', '1620656437', '__ci_last_regenerate|i:1620655838;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('473de49aba33eb333fb71a64abdc03636bee97c8', '38.25.16.38', '1688609153', '__ci_last_regenerate|i:1688609145;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688438276\";last_ip|s:12:\"181.67.2.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4755eaebec117a1b89ed6d74b768e02a15757e3d', '45.225.216.151', '1623332986', '__ci_last_regenerate|i:1623332918;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623331944\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('475899816215b740a67789824f5c173ebbfc3110', '3.125.33.249', '1689198252', '__ci_last_regenerate|i:1689198252;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4765d163454d62351f316bffd401cccd28680adc', '38.25.16.38', '1688438426', '__ci_last_regenerate|i:1688438409;local|s:1:\"1\";listaVenta|i:404;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688140301\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('476e7e45e0653ee3af23d104bef7cf68c94d90eb', '44.199.235.222', '1668980630', '__ci_last_regenerate|i:1668980610;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477367612e212cede48b51b7c7ed38ec27356760', '186.1.135.135', '1612549501', '__ci_last_regenerate|i:1612549499;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4777d3094a1b8f5fd16357ad58469499122d5da5', '52.38.202.71', '1654293743', '__ci_last_regenerate|i:1654293742;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47782238b78560a53a7a83bd232fec5741658620', '139.59.250.32', '1687327335', '__ci_last_regenerate|i:1687327335;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477960bb64626bec5318db35b47f8b970bd69bbc', '37.19.221.132', '1696391398', '__ci_last_regenerate|i:1696391397;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('479ac9f245e931e5caa520a3d38577f6efb13b6f', '161.132.234.14', '1621695966', '__ci_last_regenerate|i:1621695916;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621695332\";last_ip|s:13:\"190.43.38.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('479fa10d9b57af04076c4f1881a2326ae4ce9d7a', '190.192.49.231', '1615556937', '__ci_last_regenerate|i:1615556872;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1614611178\";last_ip|s:14:\"190.239.238.60\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a355e7279f785b3e1ef0cde12d960eb1e8faa1', '44.233.222.88', '1635270647', '__ci_last_regenerate|i:1635270647;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d935d4886c08f481d61f2b3e2137dcf0f0c066', '::1', '1598324216', '__ci_last_regenerate|i:1598324017;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598317159\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47dc43cc9e53d24cba51cef73eba110b4c37e35a', '186.1.135.129', '1615234873', '__ci_last_regenerate|i:1615234608;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615210259\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e02a309c7cb77aea50bff963baacad15764644', '186.1.135.141', '1613419257', '__ci_last_regenerate|i:1613419257;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e72df6d8f3c4cee9cb63b04a9aa5a1c879a84f', '144.86.173.87', '1628580063', '__ci_last_regenerate|i:1628580063;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47eaf468dd3d2c04bedb3953909c462e2f7155e2', '2.57.122.19', '1637235889', '__ci_last_regenerate|i:1637235889;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ee2c44555537b28fa1d32770febdd089167c17', '45.225.216.151', '1623111097', '__ci_last_regenerate|i:1623110544;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623079921\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47fdbef8c99ddfb9acab0e1984e91505facc8e09', '198.235.24.133', '1662311036', '__ci_last_regenerate|i:1662311036;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('480243c02b04dc83ac6985b1f0724e38d634cb0d', '186.1.135.134', '1618593080', '__ci_last_regenerate|i:1618592653;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618589046\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('480aae39bb5c4a9234512631418784f0c0c8c99f', '198.235.24.19', '1660035780', '__ci_last_regenerate|i:1660035780;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('481220b7fe2c160ad6d9cd19c842b31a6ffa741f', '::1', '1598363106', '__ci_last_regenerate|i:1598362854;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598339373\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4815c519315e9d12bf0e08edbd7d6e1cd86f8312', '148.102.26.11', '1619727530', '__ci_last_regenerate|i:1619727523;local|s:1:\"1\";listaVenta|i:589;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619717910\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48203e2c4162442d4bc3dc460bc00999733f2525', '148.102.23.16', '1617723127', '__ci_last_regenerate|i:1617723072;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617717184\";last_ip|s:12:\"190.236.5.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48212ad107b807160ac4a5ff967797a0934098f1', '64.225.10.189', '1697109731', '__ci_last_regenerate|i:1697109731;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482639e4af7bf56e8d253d36cd0a92a7f75207f5', '186.1.135.131', '1618347416', '__ci_last_regenerate|i:1618347314;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618342366\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48335489330364126cbe48c5c3df208e57e0e8b8', '132.157.130.59', '1611855188', '__ci_last_regenerate|i:1611855165;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611851401\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4835f640b27c2cc222956a2fdce1da5c620088b6', '148.102.26.11', '1621524867', '__ci_last_regenerate|i:1621524867;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483c3287acf3bccf8dd8f3a2e53c7325a9adb853', '201.230.205.217', '1671289430', '__ci_last_regenerate|i:1671289426;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671253516\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484315043389e9686176c898fa3ffdc7bbf27621', '87.236.176.19', '1682963146', '__ci_last_regenerate|i:1682963146;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4844f434f154a745784cbd9baa5d5d928665ba0a', '34.96.130.26', '1623165564', '__ci_last_regenerate|i:1623165564;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484972218a80ded31a5bd8feb49efd0a5007d56b', '179.6.222.7', '1617992268', '__ci_last_regenerate|i:1617992009;local|s:1:\"1\";listaVenta|i:2010;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4854ea5231be1aec068e8eec8df9866d0566a6af', '186.1.135.134', '1615829619', '__ci_last_regenerate|i:1615829375;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4858ed8747a229a1708a267c746f92df2d8dec11', '144.126.202.105', '1683172262', '__ci_last_regenerate|i:1683172262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('486db56b8b39a0f8a856379ba12a5823c745cf4e', '186.1.135.135', '1612532757', '__ci_last_regenerate|i:1612532460;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612474708\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4874c3906d1ec9342c7fcca8d28d5f204d3e0af8', '190.43.38.234', '1621273910', '__ci_last_regenerate|i:1621273903;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48984aa2b3118a97879ded9102eba1523214eca8', '190.43.38.134', '1621695633', '__ci_last_regenerate|i:1621695331;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621695317\";last_ip|s:13:\"190.43.38.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4899c6fc2e30d2e3d2e3ad828693aef0adfdb367', '2.57.122.107', '1683851210', '__ci_last_regenerate|i:1683851210;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a3eea8f1ca7c7afb6b8100b02e2fe2f61fdc64', '45.135.57.222', '1698903243', '__ci_last_regenerate|i:1698903243;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48afd6137d0b75b3567cf12a4d7c3e935f44a73f', '205.210.31.177', '1683920213', '__ci_last_regenerate|i:1683920212;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d9f4aa2a9ad8b337d881a03be86ba85da981f8', '148.102.26.11', '1619719364', '__ci_last_regenerate|i:1619719019;local|s:1:\"1\";listaVenta|i:479;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619631623\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48de2dd30a91dee3968f178668ff2929', '201.230.205.217', '1672884743', '__ci_last_regenerate|i:1672884742;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e9253e1990331f126ba28b2ebce8c4db113e5e', '34.77.162.2', '1634706802', '__ci_last_regenerate|i:1634706802;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4908ee80233a3608c9b254dd531cec27a4ea1a2b', '146.112.244.230', '1622579710', '__ci_last_regenerate|i:1622579322;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622572881\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4931f30a56d36470deaa48982d9c7eb1ea534726', '201.230.205.150', '1698869370', '__ci_last_regenerate|i:1698869366;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698798133\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4933a9f12b4d285b278a42d592c02a1c9a52174a', '198.235.24.133', '1662311037', '__ci_last_regenerate|i:1662311037;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4943ac0a55862069bc57c4bb08dc64a0b9410a08', '164.90.137.117', '1633402674', '__ci_last_regenerate|i:1633402674;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('494ac42f473e857be869e57c859f5076e118b2ea', '190.239.64.130', '1621549839', '__ci_last_regenerate|i:1621549798;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621529599\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000453\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('495353c0760bcfd9240ff5343e69910e599fac77', '54.229.216.229', '1680861719', '__ci_last_regenerate|i:1680861719;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4955456fcf19c1484189db2a20d2a0da82133cf4', '207.148.127.89', '1694522433', '__ci_last_regenerate|i:1694522433;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49597b01eef49807b414fa60dce2fcebfec1ef72', '190.237.172.147', '1614773908', '__ci_last_regenerate|i:1614773591;local|s:1:\"1\";listaVenta|i:728;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('495aac7eb01e113a0fb761c3e201a31df9b34844', '104.223.118.43', '1689740371', '__ci_last_regenerate|i:1689740370;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4985a958cc6a0ae404a1e3a7d2ef3be3ecae6b29', '198.235.24.155', '1683996893', '__ci_last_regenerate|i:1683996893;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49898b45ae5c07bfe4ea83caea7470545f0dfa41', '34.122.113.119', '1655679209', '__ci_last_regenerate|i:1655679208;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('498b106c1a1b0bdb1490aba304030bdc51679371', '92.118.160.61', '1629101223', '__ci_last_regenerate|i:1629101222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49972fa88025d4f14553ee52d6cc265577cb5661', '38.25.7.251', '1652883375', '__ci_last_regenerate|i:1652883375;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a4cda847f910c34f5ab7e2d6c6b73942fefd3e', '148.102.23.16', '1617909325', '__ci_last_regenerate|i:1617909180;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617891179\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a50c004eceabd54bc4fb856cbc22430cac75f9', '183.136.225.46', '1682307438', '__ci_last_regenerate|i:1682307438;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49b51175c7dc7b56f8c19f6323db1f72c10b4156', '198.235.24.28', '1658373859', '__ci_last_regenerate|i:1658373859;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49be1dbbe94eb6317a7a8018a4b88fd1d0053593', '183.136.225.46', '1684224806', '__ci_last_regenerate|i:1684224806;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49cc7546f9942735b50d49a42b09942506040878', '144.91.106.14', '1655994066', '__ci_last_regenerate|i:1655994066;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49cf57db19a4cb14f20aa7ae64b5cd2167d8386e', '132.184.128.122', '1611866328', '__ci_last_regenerate|i:1611866094;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611854258\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d5b58a29eb522413fec1b51d9573b0', '181.64.223.213', '1624915120', '__ci_last_regenerate|i:1624915120;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49dc30db2ccea23f2fd815d40edb93e96262ea41', '190.239.78.92', '1620668190', '__ci_last_regenerate|i:1620667941;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49e5b61a68ca9d50974379acd02ce0f0127d9dc4', '159.89.178.189', '1620185242', '__ci_last_regenerate|i:1620185242;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49f5eeabdb35ead13c6048d844f4662949a5ac1b', '190.239.192.47', '1622559074', '__ci_last_regenerate|i:1622558915;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622500495\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fcfb83ccac451443c2824fd8b9196ac1d7af87', '3.250.187.87', '1694090638', '__ci_last_regenerate|i:1694090638;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0e75aec5d811d134ba1e71654885cfa3390043', '167.248.133.186', '1692567027', '__ci_last_regenerate|i:1692567027;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a16747c5c7903866439a2c8cce151c0710238c5', '190.237.172.147', '1614771900', '__ci_last_regenerate|i:1614771562;local|s:1:\"1\";listaVenta|i:461;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a1c8f7307c8908f966c112d1d26be3d043e1ffe', '183.136.225.44', '1683292833', '__ci_last_regenerate|i:1683292833;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a462f75a030a0a4f2f345cd6888dd328dd039a7', '181.67.2.242', '1687995687', '__ci_last_regenerate|i:1687995619;local|s:1:\"1\";listaVenta|i:2210;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968167\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a52af927d099c73f6b67a96496931a89ad6dc50', '54.188.123.232', '1654292924', '__ci_last_regenerate|i:1654292922;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a623fef5e5c409554741656e1d32f2d207bf159', '159.223.196.15', '1666387970', '__ci_last_regenerate|i:1666387970;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6346d2651cfc19674cd8f252dc5f7b592e867b', '186.1.135.141', '1617206700', '__ci_last_regenerate|i:1617206700;local|s:1:\"1\";listaVenta|i:1007;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:26:\"Venta efectuada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a85764e127831205d6a6e5f4931d64a7e295a1e', '123.6.49.36', '1683454953', '__ci_last_regenerate|i:1683454953;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a88b00f48fc187941749071bb88d28c4cb6cee1', '104.155.149.137', '1655532303', '__ci_last_regenerate|i:1655532303;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a89e0c665f489cf0fbff388b4072cd55f92f813', '205.210.31.138', '1677322452', '__ci_last_regenerate|i:1677322452;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a97d441b3b02825ab97659b04788b1280e65195', '54.246.239.108', '1688481517', '__ci_last_regenerate|i:1688481517;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac63f72891e4ed0d219eecf05b0d12e6dd67456', '201.230.205.217', '1671251434', '__ci_last_regenerate|i:1671251287;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671248810\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac70c30c06eeb19d1da41f3a8a52033c252170c', '205.210.31.131', '1654999328', '__ci_last_regenerate|i:1654999328;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aca70124dfaa5ba899944fd027ffe14fc237b69', '167.248.133.63', '1663514497', '__ci_last_regenerate|i:1663514497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acb075c0ce027e34f82178ab61256f7e0339eef', '144.91.106.14', '1666570229', '__ci_last_regenerate|i:1666570229;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad4d4d8711320ef63f3cf6585e27939ca6d9e30', '45.225.216.151', '1623416312', '__ci_last_regenerate|i:1623416234;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623332925\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b193652582cdda8cd998bae70b2f72ef09c88f6', '167.94.138.60', '1636693496', '__ci_last_regenerate|i:1636693496;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2cf8d0100565ff3d3e46a28ac2c27bc8aa0623', '162.142.125.9', '1661532495', '__ci_last_regenerate|i:1661532495;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2f06d68ed0fc7aea13acb96d572680d3cc1a67', '205.210.31.53', '1662333405', '__ci_last_regenerate|i:1662333405;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b51038eea2db14c09ce456a0aa32c76f1dfd550', '167.172.139.250', '1672318234', '__ci_last_regenerate|i:1672318234;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b72d7d4577dcfe675a532d6b17564677dd39c4b', '15.228.12.241', '1622294231', '__ci_last_regenerate|i:1622294230;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b74652cef9952b41ec162039a6df803', '190.43.38.134', '1621695319', '__ci_last_regenerate|i:1621695319;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba6449e9d27e76eebab883ee009b83c305d0d8f', '132.191.2.181', '1621451303', '__ci_last_regenerate|i:1621450972;local|s:1:\"1\";listaVenta|i:52;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621438505\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba6c7d3c4faaf352633472c966ead93a4b9f5c5', '186.1.135.71', '1613664842', '__ci_last_regenerate|i:1613664495;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613655953\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb33c318671284614c758a557ad3dd28a1ed99a', '198.235.24.153', '1656239067', '__ci_last_regenerate|i:1656239067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc5d996440e5e0d67d9c26525cd9f696649c12f', '190.235.46.177', '1671720163', '__ci_last_regenerate|i:1671720163;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc8aa9b827d9fc60338c922507283a51c21d2ce', '198.235.24.141', '1669437136', '__ci_last_regenerate|i:1669437136;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd69317084572497032c0d207734e38aac435bc', '167.94.138.62', '1657218361', '__ci_last_regenerate|i:1657218361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bdb36d314622e4de454e677efcc6229463c87a0', '186.1.135.134', '1618601198', '__ci_last_regenerate|i:1618595405;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618589046\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be2c83e01b4691a6696b5dcba5d187a8b873468', '186.1.135.133', '1612280951', '__ci_last_regenerate|i:1612280951;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612209828\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf5c2ab13d0d1dbbed1697d63b0ca29ecd08d54', '186.1.135.143', '1615392567', '__ci_last_regenerate|i:1615392227;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bfc3b056831f616026957e0e31dad0b84fde23b', '186.1.135.135', '1612561175', '__ci_last_regenerate|i:1612561172;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612556109\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000270\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bfd320ec73394b8dba7c78f1faae7cacc010cd7', '190.237.172.147', '1613293236', '__ci_last_regenerate|i:1613293236;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bffcc7373a6cb6d3433bc351a52fa88907a1ef5', '186.1.135.131', '1614283152', '__ci_last_regenerate|i:1614282779;local|s:1:\"1\";listaVenta|i:328;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614274615\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1e1fb4bd1837eee148ce1a99ff49b3478d5150', '186.1.135.132', '1612876540', '__ci_last_regenerate|i:1612876246;local|s:1:\"1\";listaVenta|i:57;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612819345\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c32801db1511ccf59221f0aa291b86b212758ce', '190.239.67.117', '1620331977', '__ci_last_regenerate|i:1620331685;local|s:1:\"1\";listaVenta|i:256;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620245558\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c36db0445bb723a67c5ef4e41b32ddf1ab19d4c', '35.232.100.2', '1656212960', '__ci_last_regenerate|i:1656212960;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c43dcc0e06f5c3bd2f3ab6887b2d162ef1e4dc2', '92.118.160.45', '1623438215', '__ci_last_regenerate|i:1623438215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c64fcc4c2d6e6c9456e10274ecfd5ba4e9c4b77', '205.210.31.53', '1693034128', '__ci_last_regenerate|i:1693034128;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c67a0e8240e05917f6acb64f5d4fadc91b696d8', '186.1.135.141', '1617199123', '__ci_last_regenerate|i:1617198518;local|s:1:\"1\";listaVenta|i:238;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c6ab2388120224fcd82e1a647afbc2705d48509', '45.225.216.152', '1625188912', '__ci_last_regenerate|i:1625188912;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c6e7d198653c7100aa70369e363c69584806e10', '205.210.31.25', '1653136831', '__ci_last_regenerate|i:1653136831;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c70cddf3803ba04dcf09955dc82a3fd12fb6325', '186.1.135.70', '1613511801', '__ci_last_regenerate|i:1613511309;local|s:1:\"1\";listaVenta|i:21;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613493096\";last_ip|s:12:\"186.1.135.70\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c81c00d9849403733bc231ce0e602bb03ce9188', '190.232.180.131', '1612547598', '__ci_last_regenerate|i:1612547576;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612363876\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8bb121957755fc8aadf45ddc3e59caa7265723', '198.235.24.156', '1677342865', '__ci_last_regenerate|i:1677342865;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca20541aacfa2b5cf218ca9289d5e2251c309ec', '190.237.172.96', '1616860919', '__ci_last_regenerate|i:1616860919;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616847991\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca6c8c0326aa3d520c9fb6a1478cbde9bc42d9a', '139.144.150.26', '1683172262', '__ci_last_regenerate|i:1683172262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cae494c8d9140b191ffc83b308dea4ebd9287d7', '54.173.237.83', '1654292976', '__ci_last_regenerate|i:1654292974;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb129adf74c15f15d121ff3966d2a4e6934c439', '186.1.135.132', '1612875840', '__ci_last_regenerate|i:1612875585;local|s:1:\"1\";listaVenta|i:57;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612819345\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb3b8c334c180fa94f5c11ac797d160197f89ea', '186.1.135.159', '1618840955', '__ci_last_regenerate|i:1618840674;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd107cf3141f1cf084708a98b8b03ae5d9f7778', '161.132.234.14', '1626236822', '__ci_last_regenerate|i:1626236820;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1626056982\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ce3d0b76346b84d6fc3461810c81c7e80e08571', '186.1.135.79', '1611942744', '__ci_last_regenerate|i:1611942594;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ce63625d6b3e9b7821b96df44795a15ee7fd4ae', '167.248.133.187', '1681466573', '__ci_last_regenerate|i:1681466573;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf815fb3e0c315ba41714a73034e2f6c9516673', '::1', '1598816791', '__ci_last_regenerate|i:1598816598;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598816134\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0544f57001a9b1de55913b5706d0b501af4d55', '190.237.172.53', '1616176766', '__ci_last_regenerate|i:1616176674;local|s:1:\"1\";listaVenta|i:373;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616166389\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d21cb833c323cb16a47fbbb16fd84e63dac2ebb', '198.235.24.155', '1683996894', '__ci_last_regenerate|i:1683996893;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d23e7a052fbc9c5df607e6d4830b5f867e5bb29', '89.46.223.134', '1687478298', '__ci_last_regenerate|i:1687478298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d3f40dba4a14494a808de172ab1faf62789f572', '190.238.217.9', '1611155275', '__ci_last_regenerate|i:1611155219;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611155257\";last_ip|s:13:\"190.238.217.9\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3SVuNoULqXw4VUJk/DxMiJyIC1KTUNSQme44df/nTtYS3H4JxSBWFBnc9Msc9e4EUitQcyLEJ+ExafzQR9Wg7w==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:0:\"\";pass_sol|s:0:\"\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d465f318f7a05cf033ac938c97e988b4586157f', '186.1.135.143', '1615396701', '__ci_last_regenerate|i:1615394597;local|s:1:\"1\";listaVenta|i:15;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5e51ce0acee8fbcc82a16bfac076fd2d7083a9', '144.91.106.14', '1666570228', '__ci_last_regenerate|i:1666570228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d66b7522e8dd8b5f45c209b89d72069ee52ee00', '148.102.26.11', '1619790185', '__ci_last_regenerate|i:1619789833;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7238649b8e9baeacd31f40cc752d3119063b80', '201.230.205.217', '1671077735', '__ci_last_regenerate|i:1671077716;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671071243\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d759af38667fb36e8d7930a6723b786a77b1c11', '181.176.114.232', '1672929344', '__ci_last_regenerate|i:1672929344;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d788b267d7ca168b1bfb9a19862f3250fb87432', '186.1.135.143', '1615413468', '__ci_last_regenerate|i:1615412970;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615391910\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7d1e4f2fe4e2bff598f526b33e769a1b086873', '186.1.135.146', '1614026221', '__ci_last_regenerate|i:1614025613;local|s:1:\"1\";listaVenta|i:102;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614019549\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8e469e388561b2843cf09c4b73b5f4a3435bd7', '15.228.76.186', '1622394796', '__ci_last_regenerate|i:1622394796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dabb03777eebd99a1ae50b88270e5363d17766a', '186.1.135.146', '1614028930', '__ci_last_regenerate|i:1614028915;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614024944\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db80829b83bc04c30354922541cf2a506c01c5a', '186.1.135.141', '1613426574', '__ci_last_regenerate|i:1613425619;local|s:1:\"1\";listaVenta|i:483;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613416718\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dcc4ec50dd6fccea87a75bf2627463a50d41419', '101.68.211.2', '1671557734', '__ci_last_regenerate|i:1671557734;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ddb3ca207d3a97ec73a3ce5da7aa155801a2b06', '183.136.225.46', '1682310739', '__ci_last_regenerate|i:1682310738;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1a489a6802c53c026c19b93085f94002e8a326', '190.237.34.224', '1684208345', '__ci_last_regenerate|i:1684208338;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681912822\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1bfdaf30aed681a5bbe07a36648573b8a213fe', '18.229.160.115', '1622333653', '__ci_last_regenerate|i:1622333653;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e24d21cc87d9a60178586132262338bae1a2213', '198.235.24.11', '1655198877', '__ci_last_regenerate|i:1655198877;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e2843c44bbfc04163d005686fb46cae0512ad58', '87.208.123.168', '1681375020', '__ci_last_regenerate|i:1681375020;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e32b139c377121558aeacb2fc04681dea6e915c', '3.71.82.35', '1695987776', '__ci_last_regenerate|i:1695987776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e38f525f0da990231f489050a579f1e556238f4', '179.6.222.7', '1617661600', '__ci_last_regenerate|i:1617661468;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617654758\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000372\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4049bad21939cdb9d56b31a2d447d2', '201.230.205.217', '1671203061', '__ci_last_regenerate|i:1671203061;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4fd486a34acdf0c60d6da39e053be29d47ac37', '15.228.22.233', '1622048929', '__ci_last_regenerate|i:1622048928;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e505cbdd8cb5ce8e672ee9590685e65c8bf556b', '186.1.135.79', '1611952968', '__ci_last_regenerate|i:1611952968;local|s:1:\"1\";listaVenta|i:633;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5a33c3f9262e5d2dff1fb20b854f78c9f76a05', '54.80.59.143', '1654292933', '__ci_last_regenerate|i:1654292932;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5fb902611cc9ceeb5d310fe9b15a880bd006db', '51.15.247.214', '1681560858', '__ci_last_regenerate|i:1681560858;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e67610d0bc146f09671a8685a644952c831ed69', '167.99.130.62', '1690615564', '__ci_last_regenerate|i:1690615564;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e780a3239857c727cf176d37f8ae7b7dffc5228', '2.57.122.107', '1673671529', '__ci_last_regenerate|i:1673671529;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9210b589760e201bd0ee5a203036bbc7186e70', '186.1.135.131', '1618342359', '__ci_last_regenerate|i:1618342120;local|s:1:\"1\";listaVenta|i:84;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e92d5e1f1311da06ed7726edb4d8baebcd05281', '51.158.118.231', '1619107374', '__ci_last_regenerate|i:1619107374;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9f230e3c0f91152cc544799588e5a47d56126f', '134.209.24.4', '1697063662', '__ci_last_regenerate|i:1697063662;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea948cba05b7a912df432192a0f4b924aa0444f', '183.136.225.44', '1688233833', '__ci_last_regenerate|i:1688233833;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb197564bb5642b8c9c26c8c3794d645b591fc0', '175.24.232.97', '1623535993', '__ci_last_regenerate|i:1623535993;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed5846dff38ee2fffad31a98e65cad0d7e3e85c', '45.79.228.129', '1661790688', '__ci_last_regenerate|i:1661790688;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee3195e9015a58b0b53237be72f72fb97cc77fa', '148.102.26.11', '1621267330', '__ci_last_regenerate|i:1621267237;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ef5888cf2a13e30e45ad99745c740e40a68e155', '34.86.35.245', '1614188004', '__ci_last_regenerate|i:1614188004;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4efba435d8bf0d5c2a83550fd6e72910f38cb36b', '205.210.31.25', '1653136832', '__ci_last_regenerate|i:1653136832;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f04eb50afa7a59293b2adafcfb49c1d5af3a74e', '47.254.25.10', '1696435201', '__ci_last_regenerate|i:1696435201;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f06946ccc178ed328339a879d5cfc9894fd597e', '161.132.234.14', '1625620506', '__ci_last_regenerate|i:1625620238;local|s:1:\"1\";listaVenta|i:167;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625591688\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f31ae8ef119b34869a011ffd7d7e6ce9bce1de6', '198.235.24.21', '1683970488', '__ci_last_regenerate|i:1683970488;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f38ff3d30ce93a7fdcc48491443728881ea2746', '181.64.18.180', '1634415697', '__ci_last_regenerate|i:1634415195;local|s:1:\"1\";listaVenta|i:943;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1632763662\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3bf2ca0d0ae9b07f4818f468da8b7bc5e95865', '201.230.205.196', '1698717769', '__ci_last_regenerate|i:1698717598;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698468897\";last_ip|s:15:\"201.230.205.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f471232343284f2472d3ab7bef568caad0bffdb', '162.142.125.211', '1677408809', '__ci_last_regenerate|i:1677408809;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f72f97cfb81c4bff41df9cd8c449e3c68407a1e', '186.1.135.130', '1617039832', '__ci_last_regenerate|i:1617039678;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7311088149be9fae0f641998fbe81d95bb59d1', '186.1.135.153', '1618414930', '__ci_last_regenerate|i:1618414930;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f8bbda1fe54aac79fa8d3afa74e444973293222', '54.207.15.156', '1611357737', '__ci_last_regenerate|i:1611357736;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f8bf709a19005d2461898a11db3410f751b2204', '212.83.146.233', '1611286035', '__ci_last_regenerate|i:1611286035;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f927cad0a03b39a976321c33eeda766716b6798', '198.235.24.59', '1684669299', '__ci_last_regenerate|i:1684669298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9a099126590166b933bfb10b53d96528c2fe28', '205.210.31.34', '1674038340', '__ci_last_regenerate|i:1674038340;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb51c7b56977d5a0fb6c7cac43756b1d90c371d', '54.94.57.144', '1612253397', '__ci_last_regenerate|i:1612253397;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fbcfdad5f79752ecc882eff080f0877', '181.64.223.213', '1624915161', '__ci_last_regenerate|i:1624915161;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc24379db3625ed0940f7015dda6d86dea815ab', '87.236.176.242', '1677538851', '__ci_last_regenerate|i:1677538851;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc30491212b371c11e1667f186e019aebcc8049', '190.233.5.229', '1621543602', '__ci_last_regenerate|i:1621543602;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc544e5fca05c39e8bf127418fecc5793fc0538', '15.228.46.4', '1621840404', '__ci_last_regenerate|i:1621840403;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc828cf49aa9254675b769bb1aa9108a6154a7b', '148.102.23.16', '1621549791', '__ci_last_regenerate|i:1621549229;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621529599\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fce1233d0d8b8df13503e3eda1ca6c8b8201542', '167.248.133.124', '1687222341', '__ci_last_regenerate|i:1687222341;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd1377fdc12d0ee5b2b64d32869f14496bfb7ad', '148.102.26.11', '1619188914', '__ci_last_regenerate|i:1619188914;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff3e995de23dc6629396c04d67b413430179bb6', '190.237.172.147', '1614772098', '__ci_last_regenerate|i:1614771901;local|s:1:\"1\";listaVenta|i:582;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50002511e377f3b88dadb88f03eedb6fd6848da9', '164.92.177.101', '1696325621', '__ci_last_regenerate|i:1696325621;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501c380df7d65bf51ce46e53e4d931a6774a1a9f', '34.77.162.18', '1624319718', '__ci_last_regenerate|i:1624319718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501ded077c95e02412389ff980d4b725a7fe8ae5', '198.235.24.166', '1694572212', '__ci_last_regenerate|i:1694572212;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5024359702339a44d4bc9da92498a84cd40f799e', '186.1.135.78', '1611859558', '__ci_last_regenerate|i:1611855304;local|s:1:\"1\";listaVenta|i:292;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50293eba54056d514fee03420d176726813c5a37', '44.199.235.222', '1668999294', '__ci_last_regenerate|i:1668999274;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50325fd6bb4a91bda6f35f303c7f5de9f0c22b0f', '51.158.37.195', '1670692824', '__ci_last_regenerate|i:1670692824;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503570d64ceca57be2208ba4034e8060e7310275', '186.1.135.130', '1614345470', '__ci_last_regenerate|i:1614345168;local|s:1:\"1\";listaVenta|i:165;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614290424\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503b27cac8df0112109ce0fb43b4a49f027dd6af', '205.210.31.78', '1685692692', '__ci_last_regenerate|i:1685692692;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503b983e11bbf3ec6898542848c05685450396fe', '34.77.162.27', '1623479297', '__ci_last_regenerate|i:1623479297;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5044eeea2ef63cdd7b9d0a424f3e78b188a5498e', '181.176.107.193', '1676384573', '__ci_last_regenerate|i:1676384573;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('504c6a67650f56f4c7e880df59f0a5468e1f06aa', '161.132.238.121', '1627626714', '__ci_last_regenerate|i:1627626705;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1627102761\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('505af9565349a13fdf1f783afab42adc970b7a37', '148.102.23.16', '1618946046', '__ci_last_regenerate|i:1618946046;local|s:1:\"1\";listaVenta|i:499;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618854951\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5068f90c7babbc998bb23df5f9c24447e75c769a', '54.233.119.128', '1622128515', '__ci_last_regenerate|i:1622128514;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50bfe64ba76bc118e42f86c84be91c5d551b36af', '183.136.225.44', '1686228839', '__ci_last_regenerate|i:1686228839;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50c1db52bfbfe08c212187e488aaf9aabcf025ed', '52.42.79.222', '1623253987', '__ci_last_regenerate|i:1623253987;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d76f2359de02c68cb364b97c385d05fd26df15', '190.237.172.147', '1614779049', '__ci_last_regenerate|i:1614778825;local|s:1:\"1\";listaVenta|i:2758;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50dcced7aa5177a70b49df28467bd5f79340dd08', '179.6.212.129', '1615168978', '__ci_last_regenerate|i:1615168939;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615165073\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50f7a71c19fd0ced5792101e96c5871ee74dfbfd', '167.248.133.187', '1691402891', '__ci_last_regenerate|i:1691402891;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5107010eeccf46935aa4c13c9a4461fa7cbdf568', '167.94.138.60', '1637544796', '__ci_last_regenerate|i:1637544796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5107585cc13a174eb24cc2442111ad5e91f61e52', '132.191.2.181', '1621451036', '__ci_last_regenerate|i:1621451036;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510e5905314f4d306fe66212996b37b2fa8bd43c', '186.1.135.131', '1618344568', '__ci_last_regenerate|i:1618344428;local|s:1:\"1\";listaVenta|i:216;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51158ae7d781af9d94519e45731daf87cd8a16fe', '35.222.19.61', '1656088070', '__ci_last_regenerate|i:1656088070;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5128a45c4c55893ef914e7f5f7bfd6f84ae77f63', '38.25.16.150', '1671251776', '__ci_last_regenerate|i:1671251717;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671211178\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('513681bfe10c3cecefc9cfaa54389c62f25911c5', '106.53.83.56', '1628042013', '__ci_last_regenerate|i:1628042013;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5137093c4841db4e95ae5d6ec3f97563022b2988', '162.142.125.222', '1665414075', '__ci_last_regenerate|i:1665414075;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515c80cc9dd76205244d5f5652b96154d164d3b3', '87.236.176.251', '1693322116', '__ci_last_regenerate|i:1693322116;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51699fa3e8ff34455b3a5327a64b5d00cac633e3', '18.219.38.43', '1698013923', '__ci_last_regenerate|i:1698013923;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519754aa898bfc4a1dd920f6e94775164fb5ede2', '82.193.104.168', '1662923113', '__ci_last_regenerate|i:1662923113;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519cf1f5316128b0917c233acfff72f75f72ca55', '167.248.133.190', '1685699326', '__ci_last_regenerate|i:1685699325;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ab7033332abcbaf741e3a8dcc46fc6819a65ac', '35.222.220.90', '1655858349', '__ci_last_regenerate|i:1655858347;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51bad2650d4774894e21692efdc04b0efd2765ab', '190.239.78.92', '1620657358', '__ci_last_regenerate|i:1620657085;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51bbb9a6dfa810994145517836b47d3a49731cb1', '159.203.110.200', '1664828396', '__ci_last_regenerate|i:1664828396;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51bed9f35485528b14de58afe56f5b895ff1cec1', '190.192.49.231', '1623079270', '__ci_last_regenerate|i:1623079270;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51c282115cb20b06f1f0944a7c0b349a2d1c0927', '181.64.93.165', '1619726844', '__ci_last_regenerate|i:1619726844;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51c54e709523d7d795b79e40a3b8f91989ee068e', '186.1.135.66', '1616433854', '__ci_last_regenerate|i:1616433469;local|s:1:\"1\";listaVenta|i:243;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616423078\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e52ada120b25e47993afaf615724770064007c', '162.243.4.24', '1676482193', '__ci_last_regenerate|i:1676482193;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e6c953ab7364cdabc677b6dbcb2041fe62f793', '198.235.24.9', '1659090098', '__ci_last_regenerate|i:1659090098;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e916e07c8e641ff3fc6a1c61b7c3bb8d1e24a9', '201.230.205.196', '1698792883', '__ci_last_regenerate|i:1698792883;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698727897\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";form_data|N;register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ef6a04811d0a881a0b0450791b28ca56dcd5e8', '15.228.121.10', '1622006158', '__ci_last_regenerate|i:1622006158;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('520c5d5f48bb5b4d941f87112a80589d4c37e479', '132.184.129.122', '1617416345', '__ci_last_regenerate|i:1617416336;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617398618\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('520f7f9bfe1f55ab58cf7f7484da6fa888846261', '38.25.7.251', '1652375186', '__ci_last_regenerate|i:1652375186;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5212e5328e7389cb7272c00ba3cb75a423fcc2f1', '205.210.31.31', '1652607399', '__ci_last_regenerate|i:1652607399;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5219fcdf742d988916cc96c349e7df6ef2c470e4', '179.6.212.129', '1614699961', '__ci_last_regenerate|i:1614699686;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5220886d6638bae50be8fe037474ddb2e0c11b0d', '179.6.212.129', '1614708633', '__ci_last_regenerate|i:1614708491;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522cb7e6b482c8d89eecbaf6cff57688d1d533e5', '59.11.214.75', '1692186741', '__ci_last_regenerate|i:1692186741;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522ddd51b0b51d4d654d60ec598294c846e3beca', '54.211.1.233', '1654292913', '__ci_last_regenerate|i:1654292912;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522f3b9987da908224a18149b64fe2d8e0eee19d', '186.1.135.154', '1618516372', '__ci_last_regenerate|i:1618515576;local|s:1:\"1\";listaVenta|i:160;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618414864\";last_ip|s:13:\"186.1.135.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5246ed6c75a00dbe895421585708c02d7f67b599', '148.102.23.16', '1618342391', '__ci_last_regenerate|i:1618342365;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618335606\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5255d3cb650283ec2ced71bf2236830409bf5ebf', '148.102.26.11', '1621005487', '__ci_last_regenerate|i:1621005003;local|s:1:\"1\";listaVenta|i:28;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621000549\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('527057c91023f1faceed6e34bbc509ec51cf7c4c', '::1', '1598558733', '__ci_last_regenerate|i:1598558587;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598362856\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52872878e4b4e390c69f246870cebf1c579eae3d', '186.1.135.66', '1616448533', '__ci_last_regenerate|i:1616448256;local|s:1:\"1\";listaVenta|i:816;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a2bbc18f123541d089bbfa8f171455438c2b30', '186.1.135.130', '1617032934', '__ci_last_regenerate|i:1617032931;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000345\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a5b00338958adc2af7e7466759b3d5d39cb3d1', '144.86.173.152', '1629235213', '__ci_last_regenerate|i:1629235213;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52b038992456b2c5afc9e8837907a7ca589f24e8', '148.102.26.11', '1621264269', '__ci_last_regenerate|i:1621264263;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52b16a07662c156d1abcaad49be73c39b5415a43', '34.236.18.197', '1618665466', '__ci_last_regenerate|i:1618665466;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d3eff9a5bf35ac1cfda369cbdbfdb7bd129412', '161.132.234.14', '1622652014', '__ci_last_regenerate|i:1622651721;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622579033\";last_ip|s:15:\"146.112.244.227\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52db37495eae1b1b1d4cc68cdbe079f6cff627e8', '198.235.24.147', '1668829689', '__ci_last_regenerate|i:1668829689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5306052b24bca0a2904aba81fa0773035afe7634', '45.225.216.152', '1625115456', '__ci_last_regenerate|i:1625115430;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625060675\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530674bccbaf66e60751fde4896aec7030089e75', '35.222.19.61', '1656088070', '__ci_last_regenerate|i:1656088069;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('531a9b56c100d5eafd666f14a290d5550e77d15c', '190.232.180.131', '1611943062', '__ci_last_regenerate|i:1611943025;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611928932\";last_ip|s:14:\"132.157.130.10\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('531ab3aa513f0d5eac89065c5b55dda24819e557', '198.235.24.223', '1682741398', '__ci_last_regenerate|i:1682741398;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532cb2d322147e4175af80fd7fc3ffbeecfee42c', '186.1.135.150', '1613165365', '__ci_last_regenerate|i:1613165105;local|s:1:\"1\";listaVenta|i:552;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532fbec94ce33bcfcceda0e413cecc520074770d', '::1', '1598578390', '__ci_last_regenerate|i:1598578319;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('536437c3dae901e06ce3a0ebe293fe643efc1c62', '186.1.135.141', '1613426745', '__ci_last_regenerate|i:1613426741;local|s:1:\"1\";listaVenta|i:483;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613416718\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000285\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5369003dca741bf39e5fcc47e99fe250966e24b1', '167.94.138.119', '1654973510', '__ci_last_regenerate|i:1654973510;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('536dfcf0925916a4bc4d6bb6682ec5088826bbd2', '186.1.135.79', '1611947793', '__ci_last_regenerate|i:1611947793;local|s:1:\"1\";listaVenta|i:386;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537aebfa888541b8ba5c092a0932ecbef32fc983', '34.236.55.223', '1621494309', '__ci_last_regenerate|i:1621494309;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537e3935f4aca873e01c58af896df5237d7b2dc5', '::1', '1598581642', '__ci_last_regenerate|i:1598581598;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5382e853775564b4f0276846edb9645a000b5634', '44.199.235.222', '1668961941', '__ci_last_regenerate|i:1668961922;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53873154fa389761d2ffad3614563235c9e62fba', '186.1.135.129', '1617818174', '__ci_last_regenerate|i:1617817986;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538fdab840325d1d0c611c9180ab1dbbbe271427', '186.1.135.150', '1613137234', '__ci_last_regenerate|i:1613137218;local|s:1:\"1\";listaVenta|i:239;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613047424\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5390b06c90a96a86b20aff430786879dab6bfb6e', '165.227.185.189', '1614458290', '__ci_last_regenerate|i:1614458290;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5393a283c04464564e8b84337539bc7c54e7af46', '205.210.31.56', '1685282208', '__ci_last_regenerate|i:1685282207;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a3bc8d7b189cbf69f810890f3fcf002f1c9348', '159.203.168.243', '1620187119', '__ci_last_regenerate|i:1620187119;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a5cee25d327009dc4c33ceafb93885db137ca0', '52.52.190.187', '1623412355', '__ci_last_regenerate|i:1623412355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a6381d615ef051e57cd8f68623b8a38b3fb51a', '18.232.35.99', '1698022250', '__ci_last_regenerate|i:1698022250;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b4689dc0683881c43567a722175cda34faca8a', '15.228.84.139', '1612173864', '__ci_last_regenerate|i:1612173863;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b6b280bed176cc0ec036b5bfdb9f0a1a4f522f', '186.1.135.132', '1615497961', '__ci_last_regenerate|i:1615497597;local|s:1:\"1\";listaVenta|i:332;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615479965\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53bbf33495ef125e23ab3cae9c8b62cf7372d29e', '51.254.49.98', '1669076002', '__ci_last_regenerate|i:1669076002;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53bdbbf0f51d45326e3ed70b68d1bd6acebb12d3', '186.1.135.138', '1613061642', '__ci_last_regenerate|i:1613061394;local|s:1:\"1\";listaVenta|i:2177;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c75f2db841b8e54c560955c121bcafe253eb09', '179.6.222.7', '1617139119', '__ci_last_regenerate|i:1617139014;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617114271\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000358\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c9cf188bdd0a668a2e8b1df02e8cb357c951de', '190.237.172.96', '1616863087', '__ci_last_regenerate|i:1616863087;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616847991\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ca0d8f29007ae4f2b8b1b918092cd98124dee2', '34.96.130.8', '1634953206', '__ci_last_regenerate|i:1634953206;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53e162183003f7fb31fc62fe475663a9e82b87ea', '179.6.222.7', '1616847467', '__ci_last_regenerate|i:1616847365;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616790272\";last_ip|s:13:\"186.1.135.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53fc9102cac23dd8ed830e2123eb34e23252b701', '18.231.130.140', '1622455966', '__ci_last_regenerate|i:1622455966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('540a7b1fc5beda822bf4486f40d933c232dcabf2', '205.210.31.56', '1685282207', '__ci_last_regenerate|i:1685282207;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5412a51d32c37028d2581febfb0763d8a7ef8f76', '92.118.160.45', '1624087503', '__ci_last_regenerate|i:1624087503;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541512639629605609575bf56f835f8e7d514449', '190.237.172.53', '1616097636', '__ci_last_regenerate|i:1616097397;local|s:1:\"1\";listaVenta|i:271;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5417ff700385293328bce5426c02df63908d7772', '69.30.225.101', '1619083029', '__ci_last_regenerate|i:1619083028;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541f65f6d35a0c81b72a3bc4ac6c734fc13d22ad', '148.102.26.11', '1620755744', '__ci_last_regenerate|i:1620755718;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620743537\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('544c0af2240407c7c8bbf544664219acd2977034', '186.1.135.136', '1617914328', '__ci_last_regenerate|i:1617914328;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545b1c43b95ce55f9d2c7fd86d1c96c8124fbff5', '87.236.176.66', '1695894849', '__ci_last_regenerate|i:1695894848;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545b5f36caec33870f97925658bc84ae8b1411e0', '186.1.135.133', '1612190057', '__ci_last_regenerate|i:1612189950;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611937040\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545bd75c1307461d8e7989c701f38c839813746b', '201.212.119.152', '1614056875', '__ci_last_regenerate|i:1614056577;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1613582098\";last_ip|s:14:\"190.236.31.249\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";error|s:36:\"La fecha ingresada ya fue procesada.\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54657f9b7431d3f5c92dce8e40022fce5bed9bbe', '186.1.135.79', '1611947459', '__ci_last_regenerate|i:1611947459;local|s:1:\"1\";listaVenta|i:386;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546864fc0da67f82ee37ba0ab74d90da567c0a94', '34.122.113.119', '1655679211', '__ci_last_regenerate|i:1655679211;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546af4cff6b229cfe9e9e3d4750a9ed390efdd43', '62.4.14.198', '1611138521', '__ci_last_regenerate|i:1611138521;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5475d750a0dc2f02ac70dc2cca02fac6ceaafd35', '47.88.5.56', '1676562931', '__ci_last_regenerate|i:1676562931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5493e70fedfada5562743c01a58e04e58150e04a', '81.0.219.240', '1672073169', '__ci_last_regenerate|i:1672073169;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54975ab6da86866dbec2e66cd2a9a24ecd549580', '34.254.53.125', '1668926974', '__ci_last_regenerate|i:1668926974;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c7be8a1a2bf84f9114faa963301434f7e86e78', '167.248.133.37', '1681557241', '__ci_last_regenerate|i:1681557241;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c8d838eb810e050b3467037d68036d5a2591a0', '190.235.110.109', '1623093998', '__ci_last_regenerate|i:1623093997;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54f1afca368fd405da538961feb218e146356c17', '198.235.24.155', '1656078219', '__ci_last_regenerate|i:1656078219;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5508204ae1ad851415c2dae3440cc3f55719fe2c', '173.212.236.106', '1660451686', '__ci_last_regenerate|i:1660451686;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5532d7494c435233f23d403026c974450f15f149', '103.27.226.203', '1693695446', '__ci_last_regenerate|i:1693695445;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55357b1767fe826b10b17b06016781931388b3ff', '3.96.53.238', '1619461378', '__ci_last_regenerate|i:1619461378;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5552282a57b4eb2f35491726ee046d54790a8fca', '92.118.160.17', '1637460746', '__ci_last_regenerate|i:1637460746;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5553273f94aca7cda0c58eb6d17384facbd19208', '34.222.174.174', '1634274779', '__ci_last_regenerate|i:1634274779;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('555828147b20d1b37e971ac0f110ecc872279ad6', '128.90.5.205', '1694517511', '__ci_last_regenerate|i:1694517511;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('555f038cdc9d467d92b46ae2ecf05e4b8afe64ae', '186.1.135.134', '1614115547', '__ci_last_regenerate|i:1614115250;local|s:1:\"1\";listaVenta|i:248;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614094323\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5564e1f70453a6c19f45b8361d427b13e3a2610d', '35.222.15.139', '1657236904', '__ci_last_regenerate|i:1657236904;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55727672175707a128f33b619e89efa82ffbb4fb', '::1', '1598365013', '__ci_last_regenerate|i:1598364732;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598339373\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557438af912652e3edcb653f865fe68cb6aca340', '190.236.9.128', '1671334569', '__ci_last_regenerate|i:1671334315;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671315296\";last_ip|s:14:\"190.239.64.158\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5578b485edb25523613bdc6f04256fb6ed3a6374', '186.1.135.141', '1617197933', '__ci_last_regenerate|i:1617197834;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5582d2fe26457cd47c84df1b5b32ef539b10d4b2', '190.239.78.92', '1620666310', '__ci_last_regenerate|i:1620666126;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559771ca3fc13298b7dbd79e94800d1e8fdd247f', '::1', '1598644881', '__ci_last_regenerate|i:1598644834;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598618675\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"E8LtByEfX9ez0ZPlAEXqDVZfnur9B8rqvvx8cooiot7XBriMC+m58A0Idk4oENsC9lzzfrm3W1I79d1xC86LLQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:3:\"321\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c6f55e13001628ece0b6aeba6abb9531a736bc', '148.102.26.11', '1619211676', '__ci_last_regenerate|i:1619211673;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55dd960bb608dded743943f7f7754799a50ecc0d', '38.25.26.18', '1681791069', '__ci_last_regenerate|i:1681790815;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681781383\";last_ip|s:15:\"201.230.205.189\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:61:\"Se registro y envío con exito la guia de remision - T001-466\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ed2db3be0032524c02be40bac3c9c8c4b51352', '148.102.26.11', '1621260752', '__ci_last_regenerate|i:1621260625;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ee46418daef14a557ce1dc639bb15ef3d9b13d', '::1', '1598366626', '__ci_last_regenerate|i:1598366619;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598339373\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f5dcb62176f6cf84042f728832ee503b3c6dd3', '190.43.38.246', '1628870441', '__ci_last_regenerate|i:1628870097;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1628362077\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560476b394430e7a51f803628d253f4db98ee23e', '13.53.208.18', '1617156530', '__ci_last_regenerate|i:1617156530;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560988da44c3f76792876f8a04e1242478bd0a4e', '128.90.21.26', '1685748927', '__ci_last_regenerate|i:1685748926;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560f52200b5c83fecd0b9efb98505442243004a4', '207.148.127.89', '1694459510', '__ci_last_regenerate|i:1694459510;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('562d171e785d05ec3f992bbaa5821746539efb17', '198.235.24.218', '1689717042', '__ci_last_regenerate|i:1689717042;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563416c5e1401a3e1884081999497e10653c3281', '186.1.135.141', '1617206700', '__ci_last_regenerate|i:1617206070;local|s:1:\"1\";listaVenta|i:1007;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563c321475b7350fc76ed9796b9bceec54bc6e2f', '34.77.162.29', '1622637599', '__ci_last_regenerate|i:1622637599;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5652177bb10492acaaaa3a26e3981f501934b1e5', '186.1.135.137', '1614174274', '__ci_last_regenerate|i:1614174266;local|s:1:\"1\";listaVenta|i:122;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614113393\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5656ead71aeeb6a2f8ef971d144191d916999acb', '167.248.133.187', '1691106180', '__ci_last_regenerate|i:1691106180;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56795f4f56190097cc60312f8087cd1d9a2b6c35', '206.189.28.149', '1676522775', '__ci_last_regenerate|i:1676522775;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('567e8f2158286d10db9ba5cc93b13c4e36bc4176', '167.248.133.189', '1678424721', '__ci_last_regenerate|i:1678424721;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56833632a1324a7f09583db11e1e682c', '18.231.134.207', '1622146052', '__ci_last_regenerate|i:1622146052;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('568c58a1c42ae5fc6ddb164b7049b41bbcb6bbc7', '34.241.77.13', '1624208595', '__ci_last_regenerate|i:1624208595;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56971042f89f7a22a461ee7f81868bf24105f9a8', '186.1.135.147', '1613594751', '__ci_last_regenerate|i:1613594482;local|s:1:\"1\";listaVenta|i:203;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613579275\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569a15c6fbe23e2517743bab62739711060ec141', '164.92.151.124', '1690449833', '__ci_last_regenerate|i:1690449833;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569b5425ab59d275bbccee8ef195bcf775cf8ef0', '190.233.5.229', '1621543613', '__ci_last_regenerate|i:1621543602;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621438550\";last_ip|s:13:\"190.233.5.229\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a0ae93cb34ed641e4d695a39d23d644c06534e', '201.230.205.217', '1671071388', '__ci_last_regenerate|i:1671071239;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670989365\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a14fe8624eb6d6ed007e58bc0f76a09c1ad349', '201.230.81.79', '1620138082', '__ci_last_regenerate|i:1620138049;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619973748\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b47df6cd3fb5160d92ce045c19a15021065515', '190.192.49.231', '1623079922', '__ci_last_regenerate|i:1623079921;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622816464\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56bc70da054c7f6e1ee59764c3beb2d57b6da81a', '201.212.119.152', '1611935072', '__ci_last_regenerate|i:1611934945;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611929690\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c7d0a74073bbb6c8bf08902fc80a71d5cee9ea', '34.214.182.54', '1654293857', '__ci_last_regenerate|i:1654293855;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56de488adba17aa307d3b4116e9742a4a2d32ccf', '47.128.20.108', '1695939731', '__ci_last_regenerate|i:1695939731;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f0b0875fb59207e5dc13f6bd7d18ea1330f101', '38.25.16.150', '1670901098', '__ci_last_regenerate|i:1670901098;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670874527\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f8c6bd321cc55ded8627817de40633eb80748a', '148.102.26.11', '1619727481', '__ci_last_regenerate|i:1619727194;local|s:1:\"1\";listaVenta|i:589;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619717910\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56fc88717d2e6aa31edfb0047de90c927dee43a2', '148.102.26.11', '1619801912', '__ci_last_regenerate|i:1619801768;local|s:1:\"1\";listaVenta|i:218;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619789458\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5700887655b657b0b00adc3cbd2a1b71687396c7', '186.1.135.134', '1618601210', '__ci_last_regenerate|i:1618600892;local|s:1:\"1\";listaVenta|i:155;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618590832\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5704244570604fcf94df2685a5cfcbb3c04b4c66', '148.102.26.11', '1620944572', '__ci_last_regenerate|i:1620943965;local|s:1:\"1\";listaVenta|i:578;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620935983\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('570d060f26c4a5283a1d59bbafbd9bb0d1fe4211', '161.132.234.14', '1625592711', '__ci_last_regenerate|i:1625592511;local|s:1:\"1\";listaVenta|i:1;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625199290\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('570f9097a0a2ef09ca6557ffe6049547b5ce924b', '190.237.172.147', '1613902881', '__ci_last_regenerate|i:1613902609;local|s:1:\"1\";listaVenta|i:637;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613742638\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57139512e73299c1269469c3c2ccc30c7b45b719', '167.248.133.62', '1656868339', '__ci_last_regenerate|i:1656868339;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('572babc2eb6798205bb45f859b1ee688354efd65', '34.96.130.111', '1613882237', '__ci_last_regenerate|i:1613882237;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57416bfff50ae67c31fdae2501c43caa8b7eaa02', '148.102.26.11', '1619555175', '__ci_last_regenerate|i:1619555175;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575f9a32514f156aad1b0b2a162f075724354773', '162.142.125.12', '1686581877', '__ci_last_regenerate|i:1686581877;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('577474032b6ad8fcdfafe06df8ff8f16059d2ed8', '34.77.162.14', '1621945692', '__ci_last_regenerate|i:1621945692;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5779aa739a3764da06a4cf0c2f64d27a3f45f22b', '167.172.27.200', '1654453813', '__ci_last_regenerate|i:1654453813;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('577e80559a6c596bcec2635e48e96cd441d266b3', '186.1.135.149', '1616768411', '__ci_last_regenerate|i:1616768113;local|s:1:\"1\";listaVenta|i:865;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616711069\";last_ip|s:13:\"190.236.0.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57874cc098c79aa8b01816112eedb58b5f5f32ab', '183.136.225.45', '1692152285', '__ci_last_regenerate|i:1692152285;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5793552b0826c2b01b88bd69eeb6c77ce6be8ff1', '186.1.135.140', '1614888529', '__ci_last_regenerate|i:1614888529;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a46e38d3fc05c93b8d5e09dbe4071c81fc8756', '201.230.205.208', '1694654209', '__ci_last_regenerate|i:1694654197;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694652993\";last_ip|s:15:\"201.230.205.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a9d0d2f8479420f8a6173082d56b8bd227aaa0', '183.136.225.44', '1681126522', '__ci_last_regenerate|i:1681126522;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57c470c5971e54d171440df8a32228fd8feb59c5', '139.144.150.26', '1683172264', '__ci_last_regenerate|i:1683172264;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57d6fbc6be76c07c3a5140a5d675d8fceb5ddfe0', '34.209.105.222', '1620142747', '__ci_last_regenerate|i:1620142747;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57e4a5ec5f33de77938f3de61c7a366647da9702', '186.1.135.146', '1614023669', '__ci_last_regenerate|i:1614023669;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57ff02823ca7f5762bf75565877a5da991f26aa6', '148.102.26.11', '1619189944', '__ci_last_regenerate|i:1619189731;local|s:1:\"1\";listaVenta|i:760;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58219dcb9723e1d8bab264fe8051bfa5a52d9b64', '183.136.225.44', '1683292836', '__ci_last_regenerate|i:1683292836;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('583e0a2e0b934f964b02807990cb40acb1d39073', '190.236.26.74', '1612836494', '__ci_last_regenerate|i:1612836345;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612814723\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('583f4ce316dbb16afa7c64ff87524b8de0a998ec', '106.75.185.60', '1693858936', '__ci_last_regenerate|i:1693858936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58434f3ccb04eebb1d8287f02f667f1202e2b5ea', '34.96.130.26', '1634253394', '__ci_last_regenerate|i:1634253394;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('584c7969213e3fd1573136234848d45d0e5a8dff', '167.99.130.62', '1690615565', '__ci_last_regenerate|i:1690615565;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58678e2a29f6f92b61d9ad20c90d54d1b407727f', '148.102.26.11', '1620225740', '__ci_last_regenerate|i:1620225595;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588739415d68268afa45486493829d98be6eafa3', '3.125.33.249', '1689198252', '__ci_last_regenerate|i:1689198252;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588a568cdfa12f0d3104140fd4093c5716ac7bb1', '3.249.222.56', '1673486839', '__ci_last_regenerate|i:1673486839;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589a3149d3dc109df3688fc8b799d7ef7229d55e', '190.236.24.150', '1611077642', '__ci_last_regenerate|i:1611077640;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598834103\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"Dyy60hamyB5kR4ghDgHuAoYOWgK+OKWtNGgoOswAU2v4uhKE3LRY8tqTXq730/+WTAIa0YEPcgEQFTk8Ym0RIQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";__ci_vars|a:3:{s:7:\"message\";s:3:\"old\";s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}message|s:27:\"Usuario cambiado con éxito\";csrfkey|s:8:\"cMHmyri9\";csrfvalue|s:20:\"Q3pKVmvXyEIgoM75dReT\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a0faa9194752b691bfcaaa1fdcbde970d7d622', '167.248.133.63', '1662391024', '__ci_last_regenerate|i:1662391024;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a417718ca35d56cb6262508f92a061dfe5a9b7', '198.235.24.181', '1663047876', '__ci_last_regenerate|i:1663047876;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a5aa69dce15f868a02655ad4db89f77ddd5cf0', '45.225.216.152', '1625060939', '__ci_last_regenerate|i:1625060664;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625025047\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a9df1c2904cd23e68311c76b75f15ce3c0d378', '15.228.82.73', '1622164637', '__ci_last_regenerate|i:1622164636;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58b28a532234eb1dc33087b34638364c01cd54b4', '181.64.105.12', '1622211507', '__ci_last_regenerate|i:1622211225;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622158527\";last_ip|s:13:\"190.237.30.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c43855b46c936a480c76a359570cc1d09c3151', '201.230.205.196', '1698721112', '__ci_last_regenerate|i:1698721098;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698468897\";last_ip|s:15:\"201.230.205.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c9274716c85109f802a30ff7821d51ae025ff0', '162.142.125.221', '1657742633', '__ci_last_regenerate|i:1657742633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d388e3dc9528d673e3736f36850070ca3d7d88', '186.1.135.149', '1616792877', '__ci_last_regenerate|i:1616792874;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616768418\";last_ip|s:13:\"186.1.135.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000336\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d78d669204430bdb2f7b36ed0ff8f5ec3ee112', '147.182.240.105', '1697902553', '__ci_last_regenerate|i:1697902553;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d80e3cc60359db3fba93509160d752a98d66a6', '35.206.247.151', '1663970961', '__ci_last_regenerate|i:1663970961;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58db1b351e6872102cb4f440ecba0ebef672680a', '54.221.27.173', '1627484198', '__ci_last_regenerate|i:1627484198;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ecb2b4ad7d10d5a1b2a5c25d9c6e0d50e14312', '212.83.146.233', '1617698933', '__ci_last_regenerate|i:1617698933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f34524cfb0056334abb008759edb18ffb164c0', '190.238.217.6', '1611936197', '__ci_last_regenerate|i:1611936197;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611927498\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f944986cbf7c702bdd18cbe9ff7bd5b6e4bb6b', '161.132.234.14', '1626044256', '__ci_last_regenerate|i:1626044243;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625848842\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('590d8ce8415987144fbad8146395979a4300f68b', '52.42.79.222', '1620641508', '__ci_last_regenerate|i:1620641508;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59163c13a0dff6aafe1226f12bb72a05b0c3756d', '186.1.135.143', '1615914253', '__ci_last_regenerate|i:1615914043;local|s:1:\"1\";listaVenta|i:190;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593cb793915137119f82af3d1a87e080305535b7', '186.1.135.66', '1616449828', '__ci_last_regenerate|i:1616449828;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59500e3be5b7230bcb2199fa1267f9be4550667c', '188.165.202.227', '1659856506', '__ci_last_regenerate|i:1659856506;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5955686d4c3ef4cb0e4d4815958853939bd41ceb', '186.1.135.129', '1617815182', '__ci_last_regenerate|i:1617815182;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('595f5eb155a71bc5c6ec3f5119af715fb0cdad0b', '190.43.38.134', '1621442819', '__ci_last_regenerate|i:1621442739;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620840076\";last_ip|s:12:\"181.64.57.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:26:\"Resumen enviado con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59630c6cf356b374d447627bc0847304838bff1d', '170.64.190.167', '1683172215', '__ci_last_regenerate|i:1683172215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5967c6239fb1f7ae4f50cbd05af66f23bd83a5bf', '198.235.24.38', '1678606725', '__ci_last_regenerate|i:1678606725;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('599dca3052efb2d048e0f1378587650cd996720c', '190.236.27.43', '1619553723', '__ci_last_regenerate|i:1619553656;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a059150cd5526976dfc9c401b9922e14b699a8', '181.67.2.242', '1687993364', '__ci_last_regenerate|i:1687993281;local|s:1:\"1\";listaVenta|i:988;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968167\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59deea424f8ad0237de530becd6915ac3eaff796', '148.102.26.11', '1619458006', '__ci_last_regenerate|i:1619458006;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e82981058c09ee4ab4d62f60cca288f61cdceb', '186.1.135.137', '1614203643', '__ci_last_regenerate|i:1614203643;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59fa70c71c52f5c8dce71fa5f904b95b', '45.177.196.194', '1673648060', '__ci_last_regenerate|i:1673648060;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1673278624\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59fc72f505c24cbf16ee8cd4be4e1f2191f1b35a', '34.254.60.106', '1692837571', '__ci_last_regenerate|i:1692837571;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a126a9279670d9925a3b36f15e57fcc41262105', '34.86.35.29', '1618304977', '__ci_last_regenerate|i:1618304977;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a1451ceeda114939fbd82c4e3c0beb4', '201.230.205.217', '1671203064', '__ci_last_regenerate|i:1671203064;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203060\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a395181e6312cf3dd13314a142b67acd5b4fb78', '167.94.138.60', '1637544796', '__ci_last_regenerate|i:1637544796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a5fe902e4fd6aaeec62a9b5135343b25a60cf83', '179.6.212.129', '1614706732', '__ci_last_regenerate|i:1614706661;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a7c73a85ba5c06bff5b5c9f49b89f2d125bff6f', '167.248.133.125', '1681138579', '__ci_last_regenerate|i:1681138579;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a7f3c604f5d7a75a86e5b32a9537528fe118174', '18.219.38.43', '1698013880', '__ci_last_regenerate|i:1698013880;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8af91a059f7c6c32f30bbdccc1f547e964804a', '186.1.135.140', '1614882811', '__ci_last_regenerate|i:1614882806;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614871404\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9604053d79866223fd2fe859154132b4a99c53', '190.237.172.109', '1615117927', '__ci_last_regenerate|i:1615117687;local|s:1:\"1\";listaVenta|i:465;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9f63b6d1120d338a1ae4d36bd6c5e21d253814', '205.210.31.235', '1696720499', '__ci_last_regenerate|i:1696720499;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aafafcbb62c87418de0397815f7a23ec506eecc', '190.43.38.134', '1621443855', '__ci_last_regenerate|i:1621443815;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620840076\";last_ip|s:12:\"181.64.57.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";warning|s:64:\"No se encontraron comprobantes para enviar de la fecha indicada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5acd9d22121e84be2139694a050482f61a5506fc', '186.1.135.134', '1612788683', '__ci_last_regenerate|i:1612788674;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad5b3a4b23a10bd1cd2877c887f3a3332e45f4c', '183.136.225.45', '1682162693', '__ci_last_regenerate|i:1682162693;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5adb292f85aa3828342b8ffe2dd23bcfe974aa9d', '165.227.115.229', '1657634776', '__ci_last_regenerate|i:1657634776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b0e8f7eed2eca9f2219831b295e58e6669db2a7', '92.118.160.41', '1635156633', '__ci_last_regenerate|i:1635156633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b21a3f03f5e0c931d4a7305c4521541cc59ff2a', '198.235.24.139', '1653062759', '__ci_last_regenerate|i:1653062759;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b2405fa67652a369cb71bc26406fd455afbce11', '190.237.30.221', '1620657068', '__ci_last_regenerate|i:1620657068;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b43613052a7d4d08318d573f54b66d27f90af0f', '186.1.135.129', '1615237902', '__ci_last_regenerate|i:1615237902;local|s:1:\"1\";listaVenta|i:81;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615234680\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b43a6a8b90befd8904cf460d75b37582f6af273', '201.230.205.217', '1671075700', '__ci_last_regenerate|i:1671075675;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671071243\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b5b60a7c1853a2a0da35a05b6bbd39f9e708f06', '106.75.130.59', '1693858933', '__ci_last_regenerate|i:1693858933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b64ee824d6f59209ce9d681a0979d0131944b32', '198.235.24.49', '1687568986', '__ci_last_regenerate|i:1687568985;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b65599c81b0213de6744aae91b1e59eb66f58a4', '205.210.31.10', '1663208292', '__ci_last_regenerate|i:1663208292;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7c3bd6cc9a9e6a901187b4732e8e887c488d07', '186.1.135.130', '1617025144', '__ci_last_regenerate|i:1617024731;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b8628003ff8a51502966f4380fe85f66bd00863', '34.96.130.14', '1618538765', '__ci_last_regenerate|i:1618538765;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b8b8411d835492cbf5a78b2a381365cb1e832b3', '211.176.125.70', '1664812799', '__ci_last_regenerate|i:1664812799;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bc10ed041ddbf05429afda6f3f1f179096b12d0', '92.118.160.57', '1637586470', '__ci_last_regenerate|i:1637586470;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bc3e623c8265eeb0d7b28c27c9362207f43e4c8', '54.74.108.12', '1631083956', '__ci_last_regenerate|i:1631083956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd7cbc3411f99325275750fed55eb3ee23fcd49', '181.176.114.37', '1674924667', '__ci_last_regenerate|i:1674924667;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674852558\";last_ip|s:14:\"181.176.109.80\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5befcfca33875659a56e34fa4823e1a0981ab05d', '95.214.27.191', '1682417384', '__ci_last_regenerate|i:1682417383;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bfd36c66459ab39de6a57953b0ec2742e8010c2', '186.1.135.143', '1615922112', '__ci_last_regenerate|i:1615921881;local|s:1:\"1\";listaVenta|i:570;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0440aa95906e90458649a48e1474d80c55ea3f', '167.248.133.124', '1687222341', '__ci_last_regenerate|i:1687222341;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0783c21d80c9589593675f85e692cf70199200', '47.128.50.153', '1698015952', '__ci_last_regenerate|i:1698015951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c079689ffe1d8c11c14b7476c489d41e954f364', '190.237.172.53', '1616092362', '__ci_last_regenerate|i:1616092361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0dd382cb8bf02092b165615cd703fdd8cfa76c', '148.102.26.11', '1619791830', '__ci_last_regenerate|i:1619791551;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0e33c318e9d7544f6993a5039e13500eb1d1a1', '186.1.135.141', '1612446411', '__ci_last_regenerate|i:1612446411;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612442480\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c23a14e1637142f50996bb59b4f2f9cc8486fb1', '::1', '1598618702', '__ci_last_regenerate|i:1598618702;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c39cd4491f17ee5c35936d0a9320989b4b0dda1', '106.75.148.47', '1693858939', '__ci_last_regenerate|i:1693858936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c3e0e23646339c5f8ea36abd1bfa36be088bdd7', '186.1.135.129', '1617830083', '__ci_last_regenerate|i:1617830083;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c3f844840d1f783d8e1266cbc9bfbe3e7285627', '148.102.26.11', '1621613163', '__ci_last_regenerate|i:1621613161;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000455\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c49d0786fbadd274d062acc79d40388ee0564d9', '45.55.38.5', '1657568051', '__ci_last_regenerate|i:1657568051;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c534c40e1a290b2d0393ce4da28afdc3aea536d', '92.118.160.17', '1624300542', '__ci_last_regenerate|i:1624300542;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c70ab69208d19ddf853b3c6cbe5c56201b5aa2d', '144.86.173.135', '1628195519', '__ci_last_regenerate|i:1628195519;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c73a824e5ed3b15870d3422574aca08fedfba42', '181.176.107.88', '1676507691', '__ci_last_regenerate|i:1676507691;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c7f7ea9b1a5f027f812a89262a40250d16f3e6a', '148.102.22.241', '1616689345', '__ci_last_regenerate|i:1616689050;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb4df07cbfae79d7d57deb8bfd85f862f99ec1e', '190.43.38.134', '1621695307', '__ci_last_regenerate|i:1621695307;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621693485\";last_ip|s:13:\"190.43.38.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cba15cc2102c4b2b1b351ce83302b5d', '45.177.196.194', '1670943295', '__ci_last_regenerate|i:1670943295;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670943293\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd39e40cccd8c71662c0fa4b975947a3e03aba4', '198.235.24.26', '1687064653', '__ci_last_regenerate|i:1687064653;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cde0494650b64ada96c4c0e1aa7d720bd9b9e14', '205.210.31.131', '1654999326', '__ci_last_regenerate|i:1654999326;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce8961c4760e3f9c6f8d3588ac53e7d41e9bb3c', '34.250.7.182', '1692853939', '__ci_last_regenerate|i:1692853939;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce89d863fbf183b593be96ba49449456f4bb030', '162.142.125.10', '1656958467', '__ci_last_regenerate|i:1656958467;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cff08f6cd5e828c26d8a4388c2e5c62b2341edd', '161.132.234.14', '1618853654', '__ci_last_regenerate|i:1618853606;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1618853154\";last_ip|s:13:\"190.235.15.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0a40a916b979b857d53b2d2e0cc823348566e7', '186.1.135.141', '1613424522', '__ci_last_regenerate|i:1613423544;local|s:1:\"1\";listaVenta|i:146;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613416718\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d1093c49e0e8bdd756324ed4f52d25d78b6e5b7', '18.190.152.34', '1677554155', '__ci_last_regenerate|i:1677554155;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d125751e301fff960f23849939dcbcbcc0ccfd0', '132.191.2.181', '1621451645', '__ci_last_regenerate|i:1621451310;local|s:1:\"1\";listaVenta|i:158;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621438505\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d1763c7e11abc5ddf81f1cd44108d6fcf5c35e5', '38.25.7.251', '1652378856', '__ci_last_regenerate|i:1652378591;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d268ad66b3156a75bc2b838aa74a07be2c29556', '205.210.31.158', '1668176767', '__ci_last_regenerate|i:1668176767;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d2dbedb7505385383d3faaa9267585a8f7dba1f', '190.239.78.92', '1620675281', '__ci_last_regenerate|i:1620675281;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d421dfd9a1dcf0db94a0487dfe81357ca9e4640', '205.210.31.144', '1655208097', '__ci_last_regenerate|i:1655208097;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d4d20cf0068338a48b80e9073fb043a3c01e24c', '186.1.135.142', '1614626508', '__ci_last_regenerate|i:1614626272;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d585c6856b196ebdb2f453542c84b269793a2f8', '34.72.42.174', '1655833582', '__ci_last_regenerate|i:1655833581;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d59c322bf43494051d2e9eb9a2bb40757cd1162', '::1', '1598605043', '__ci_last_regenerate|i:1598605043;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d6e584c8b90af9cbff1e941660dc62588c53651', '167.94.146.59', '1694801151', '__ci_last_regenerate|i:1694801151;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d7da7a9f41fb3f0a36124356ca5ba51f1df463e', '34.244.83.225', '1691710352', '__ci_last_regenerate|i:1691710352;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d80d8102f47794ecdd172d61ed9fa232fd800ac', '186.1.135.137', '1613653681', '__ci_last_regenerate|i:1613653603;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613592148\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d975bd1af5e5fa23de0afa5f45636b4adbe0507', '179.6.212.129', '1615564594', '__ci_last_regenerate|i:1615564594;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615563891\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d998ee8de55e6456455b4008bfb51beb44460a0', '143.198.149.15', '1696477391', '__ci_last_regenerate|i:1696477391;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d9c9c67c636b89310fbc9ddcee154e4f7862635', '198.235.24.139', '1669791268', '__ci_last_regenerate|i:1669791267;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da841799b30ebe27cb35314e529b32a28059253', '186.1.135.134', '1615826665', '__ci_last_regenerate|i:1615826376;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5daba2db4e531bd03d7e2675d4243a7c476b635f', '18.231.94.162', '1623646493', '__ci_last_regenerate|i:1623646493;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dcb30857783ecf89e95c8c52f560b5b51f9f76a', '18.231.94.162', '1617792704', '__ci_last_regenerate|i:1617792704;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dcd4fd933129df1b4248823268e13db0d341b70', '190.232.180.131', '1612893788', '__ci_last_regenerate|i:1612893542;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612883544\";last_ip|s:13:\"190.238.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd51e95a087ee7f383c8f4d3826bf3a43828c90', '198.235.24.135', '1669524501', '__ci_last_regenerate|i:1669524501;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd60cc35a5fa59429c90ccd9494bbc1fc16aa3b', '207.148.127.89', '1694384028', '__ci_last_regenerate|i:1694384028;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ddd8afb4fe59e3a14c60f396df2f3f536a4085c', '161.132.234.14', '1625629063', '__ci_last_regenerate|i:1625629063;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625619479\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5deaf4cbdc1ccc6bf0eb4535eb8440f4fce6f550', '38.25.16.38', '1697477003', '__ci_last_regenerate|i:1697476808;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1697473515\";last_ip|s:14:\"201.230.205.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dee5b17f2b0463e8f65dc9eca22319fcb8f34be', '34.247.39.116', '1693863228', '__ci_last_regenerate|i:1693863228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df123369b4967e558c941e2e94558c872764913', '92.118.160.5', '1613214780', '__ci_last_regenerate|i:1613214780;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df346cbe8c925e03ce23eab55e4fcac5b207403', '190.232.180.131', '1612561406', '__ci_last_regenerate|i:1612561272;local|s:1:\"1\";listaVenta|i:78;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612541361\";last_ip|s:15:\"132.184.130.166\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e00a8976d30003e92937722123fddf6cbc008ea', '190.237.30.221', '1620679624', '__ci_last_regenerate|i:1620679535;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620657074\";last_ip|s:14:\"190.237.30.221\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e012b0f7896422a8e6e2e1421beb6307dc6d24a', '205.210.31.178', '1687076646', '__ci_last_regenerate|i:1687076646;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e09176182d3aad056a92f47d7808be14021ddd1', '72.55.136.199', '1690860626', '__ci_last_regenerate|i:1690860626;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e0d05296ff3b421a452a2a672cbf7e9a5baa35e', '101.68.211.2', '1691999523', '__ci_last_regenerate|i:1691999523;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e153d2db05aa032994ae82e11f0a80eaafc60d5', '198.20.101.98', '1685394813', '__ci_last_regenerate|i:1685394813;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e15bf7633402649482da7c9ded24b4ab8ebb2d0', '144.91.106.14', '1680462558', '__ci_last_regenerate|i:1680462558;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e2264d0efd2c011f55037ed1ad6f90febbaabb1', '161.132.234.14', '1625190016', '__ci_last_regenerate|i:1625189904;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625188954\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e28ee6d0ee045ed1ca8190592b274cd800943fb', '186.1.135.79', '1611871835', '__ci_last_regenerate|i:1611871590;local|s:1:\"1\";listaVenta|i:1948;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e2c773144b273b921ce847d15c50f4cece2e79a', '162.142.125.226', '1688134651', '__ci_last_regenerate|i:1688134651;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e378f8b20535a8b7afd83de81a99f1177944d70', '167.94.138.60', '1674339057', '__ci_last_regenerate|i:1674339057;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3e46bad033529ca6df74cb1c7245a0b7f791af', '190.237.172.53', '1616091226', '__ci_last_regenerate|i:1616090949;local|s:1:\"1\";listaVenta|i:271;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4d55f396f6d042e786d921bec166b961cb1ba9', '186.1.135.134', '1618593899', '__ci_last_regenerate|i:1618593083;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618589046\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4efd5fef8d76ab4d36c887c85406c0f57174f3', '201.230.205.28', '1697480940', '__ci_last_regenerate|i:1697480714;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1696989884\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e53e901c28db9a878dbe4703bb9a868e5ef153f', '123.6.49.36', '1683455429', '__ci_last_regenerate|i:1683455429;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5743d779abe8204b9811c2ceec92a1099404d2', '148.102.26.11', '1619790337', '__ci_last_regenerate|i:1619790186;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5dc9498215dca4f57d0c46c5f69b0ee3dd49a2', '161.132.234.14', '1623439247', '__ci_last_regenerate|i:1623439236;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623416241\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e80f8b0191fd348b71266e3bacc8dbe8ddda776', '161.132.234.14', '1626039084', '__ci_last_regenerate|i:1626039021;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625848842\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e8550e9430b3d4f987dc54198dd77f876bd8af2', '167.94.138.119', '1676968156', '__ci_last_regenerate|i:1676968156;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e9a3c146ea72d5d44a9a79334289450b13cda09', '186.1.135.133', '1612202744', '__ci_last_regenerate|i:1612202729;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612191270\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ebcbc8f4ff7731d6ef9fb26cae2892957b34bea', '38.25.7.99', '1654292172', '__ci_last_regenerate|i:1654292164;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1654292112\";last_ip|s:10:\"38.25.7.99\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed62072f89a82781799d3612191dad8ea6aeb41', '45.225.216.152', '1624923957', '__ci_last_regenerate|i:1624923957;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915364\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed8e4fef407652ac8a4875ececa27a0516471fa', '161.132.234.14', '1625199557', '__ci_last_regenerate|i:1625199282;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625189910\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5edb6d41565df46f841896347505d5faa084f791', '190.237.30.46', '1622159444', '__ci_last_regenerate|i:1622159290;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622158503\";last_ip|s:13:\"190.237.30.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5edb98820e73233ec8005c405c9fc5006b4615e1', '198.235.24.23', '1695598838', '__ci_last_regenerate|i:1695598838;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eddcbe77fb399279673e54834ae39f57116c370', '34.86.35.103', '1613433909', '__ci_last_regenerate|i:1613433909;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f07059c27b9faa6952a61b85e3e3b6d5946258a', '15.228.48.226', '1611709676', '__ci_last_regenerate|i:1611709676;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f1f109b7cc848b9a67b6e79bd815c1ca91d14ac', '162.142.125.9', '1661700819', '__ci_last_regenerate|i:1661700819;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f21821f0124e157cc4724b75b1e52946b49412c', '52.49.104.125', '1670369705', '__ci_last_regenerate|i:1670369705;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2fb903f89b37125558f788140cc67e307391d7', '179.6.212.129', '1614701212', '__ci_last_regenerate|i:1614701212;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f34277894474adfe707b1de34e395226b1b7084', '186.1.135.129', '1617824799', '__ci_last_regenerate|i:1617824506;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3ba2f1d4e53116008e6255e7f4092115be813b', '::1', '1598601374', '__ci_last_regenerate|i:1598601203;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f58b91bc11b704e73a695649f3383cc2cf1499e', '84.17.59.88', '1687430128', '__ci_last_regenerate|i:1687430128;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f5eedbc6422e9d02e5876558d8cdb37bc8f661d', '205.210.31.12', '1652517131', '__ci_last_regenerate|i:1652517131;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f79c7dac1e75f5c926692694d4ff6a6be9959e9', '34.66.54.97', '1656016791', '__ci_last_regenerate|i:1656016787;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f97274f9cf005334420dfa7b676473f58ab478a', '72.55.136.199', '1690860633', '__ci_last_regenerate|i:1690860633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fba2da55336184963de5b806749223efa4cc5b2', '128.90.141.19', '1688387718', '__ci_last_regenerate|i:1688387718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fbb2e6d7fdd9ad62520d0a559eb5eb984b06123', '205.210.31.33', '1693596879', '__ci_last_regenerate|i:1693596879;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd0758e1eb19cf32478e8a24cb28bdc8678d99a', '190.237.172.147', '1613214953', '__ci_last_regenerate|i:1613214953;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd15f50d4a997d5bc5401eedd1b685fec117ddd', '148.102.23.16', '1620918758', '__ci_last_regenerate|i:1620918599;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620857481\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd2dbd43d61f8e6fd58feed802c7428f76c8760', '186.1.135.142', '1614618186', '__ci_last_regenerate|i:1614618058;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fdb9f5892bd99c098ede864349025ff7e5c280d', '141.98.252.160', '1696391388', '__ci_last_regenerate|i:1696391387;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe44910eb0319b07423299cc700dee7d2faf8ac', '186.1.135.129', '1618238552', '__ci_last_regenerate|i:1618238363;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fee0e36b2b42c62460280cadbc31a5a0cd602f9', '186.1.135.149', '1616792469', '__ci_last_regenerate|i:1616792224;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616768418\";last_ip|s:13:\"186.1.135.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff579dc5d0ff30abdf413148368fc67961ec862', '181.67.2.242', '1688140985', '__ci_last_regenerate|i:1688140584;local|s:1:\"1\";listaVenta|i:96;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688095277\";last_ip|s:14:\"190.234.141.82\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ffdc94cea27003d72b0eae2fd1617061c75b973', '186.1.135.147', '1613594141', '__ci_last_regenerate|i:1613593794;local|s:1:\"1\";listaVenta|i:94;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613579275\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fff562e6204f8ab42a5f454f34427d7e47a0ec9', '186.1.135.141', '1613425273', '__ci_last_regenerate|i:1613424863;local|s:1:\"1\";listaVenta|i:437;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613416718\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ooilmqtk7fqq789juhpij3c7b', '::1', '1598834004', '__ci_last_regenerate|i:1598834004;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60024aa0890e68ed9e504d43433c1caad6fae5ff', '201.230.205.235', '1695400373', '__ci_last_regenerate|i:1695400372;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694654246\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6003d7a551b486b246e18628b826cc0dce9d3dc7', '18.118.9.1', '1627024518', '__ci_last_regenerate|i:1627024518;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600f4498a2fcf38275768d2046b2b10593ea059a', '38.25.7.251', '1652481441', '__ci_last_regenerate|i:1652481438;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652451092\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60133350a0c3b7f34960a6ef5ca43050d2bb6ba9', '35.184.44.110', '1656981766', '__ci_last_regenerate|i:1656981766;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6018da22d4a1546041d68153eb51ccf31de7db9e', '138.197.175.164', '1691850936', '__ci_last_regenerate|i:1691850936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601e2f579234d96a85d8b00f63da9ef5e444d489', '201.230.205.217', '1671250146', '__ci_last_regenerate|i:1671250145;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6020727b2642914387932c12c276261db6465acf', '186.1.135.78', '1611861002', '__ci_last_regenerate|i:1611860688;local|s:1:\"1\";listaVenta|i:696;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602bd17a37ad4be0106ffbe32671bef48e98333e', '186.1.135.71', '1613665128', '__ci_last_regenerate|i:1613664912;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613655953\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60316006f18560365c12840de3c02beb1aff6773', '47.128.28.195', '1694657314', '__ci_last_regenerate|i:1694657314;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6038b38cc1563857c330509b2a1f28eeebc20ad0', '183.136.225.44', '1688251017', '__ci_last_regenerate|i:1688251017;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('605b5ac3f7497a30c25572059cf425876da9c2bb', '13.124.222.242', '1624025179', '__ci_last_regenerate|i:1624025179;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('608590ad9d429a3e15b4a2ca2474c57d5b6a475c', '190.43.38.234', '1620331109', '__ci_last_regenerate|i:1620330938;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620229251\";last_ip|s:13:\"201.230.81.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('609d8d7e712cd1b105d371b1de1e7b6c3454d820', '186.1.135.129', '1617829500', '__ci_last_regenerate|i:1617829202;local|s:1:\"1\";listaVenta|i:48;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617809172\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60a6549b94f6cf1896cd6c66f0cabf49d2531ba7', '195.211.77.142', '1696391417', '__ci_last_regenerate|i:1696391417;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c9af47aa432b5231afc8e57367f6bc192c6a92', '87.208.123.168', '1681375022', '__ci_last_regenerate|i:1681375022;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60cb7a48260415f3faa76e97f1da529d6c9acf26', '198.235.24.165', '1665781271', '__ci_last_regenerate|i:1665781271;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ea9ce6d0a34766d68b5ca59e4c71aee8a87b98', '72.55.136.199', '1690860633', '__ci_last_regenerate|i:1690860633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ed748c8be5e24a8483df3ba15115276446816e', '144.91.106.14', '1680462559', '__ci_last_regenerate|i:1680462559;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f270c419e8958b19c56f10625f00f8e62d25e0', '46.101.73.109', '1677127143', '__ci_last_regenerate|i:1677127143;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60mua148b216e00vliq470skj9', '::1', '1598834013', '__ci_last_regenerate|i:1598834012;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598816601\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61002f834cf67cd6a231622d1d2b55723210999a', '190.236.0.145', '1616711756', '__ci_last_regenerate|i:1616711559;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616703126\";last_ip|s:14:\"148.102.22.241\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6105c54239004a13a26e674c15bcd6178d6f9f10', '188.165.87.102', '1654339918', '__ci_last_regenerate|i:1654339918;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('611073a90f4ff8a15a02f4fe7ebe42c41d1c5166', '23.97.205.210', '1654911616', '__ci_last_regenerate|i:1654911616;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6112931df21a5880199169aacd13b4cf', '190.43.38.134', '1621695317', '__ci_last_regenerate|i:1621695317;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621693926\";last_ip|s:13:\"190.43.38.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61225ae09f9488fb07b1efb489b6af93d61bec51', '38.25.16.38', '1688438409', '__ci_last_regenerate|i:1688438066;local|s:1:\"1\";listaVenta|i:404;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688140301\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6123a263295dc345b793db314a590d262db74213', '15.228.119.186', '1621923655', '__ci_last_regenerate|i:1621923655;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('612e4567c7095e7806007f9282c48bbd2e7afa89', '92.118.160.17', '1629489749', '__ci_last_regenerate|i:1629489749;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('614ab0eee6508ac9c598237018962cc0a5114147', '87.236.176.75', '1672289734', '__ci_last_regenerate|i:1672289733;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61500e03ad3c5e8c286f4cf2172f086e2882cde3', '190.239.78.92', '1620667922', '__ci_last_regenerate|i:1620667633;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('615494a65d2e4e208635ba759261d98b74b27040', '205.210.31.5', '1670405751', '__ci_last_regenerate|i:1670405751;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6170329b7236fb58f3977108526ef11af93b571b', '46.101.157.99', '1661647290', '__ci_last_regenerate|i:1661647290;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61782c9160ca8d7c958381c9ea36796790fc720e', '173.255.252.198', '1661790685', '__ci_last_regenerate|i:1661790685;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6189c711d560e3e6d6acbe6a7bc0b923ca8c8e81', '186.1.135.129', '1615236582', '__ci_last_regenerate|i:1615236582;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('618b184dfdb351cfa48eee720982f4f15cbe064d', '18.231.135.101', '1621703966', '__ci_last_regenerate|i:1621703966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('619c3140546ef6ce6ef5e541f67b3b08ca1e622f', '188.165.87.109', '1669071649', '__ci_last_regenerate|i:1669071649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('619e0707a5bdf57daba8615381ac6f038a1be853', '134.122.7.10', '1665186062', '__ci_last_regenerate|i:1665186062;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61cde223d5daaeef780fe782cffabf3fc3512d16', '186.1.135.138', '1613056139', '__ci_last_regenerate|i:1613056125;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61dc0501551435f517e1dc5cf70d9de72fc7c3da', '190.43.38.134', '1621443739', '__ci_last_regenerate|i:1621443493;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620840076\";last_ip|s:12:\"181.64.57.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";warning|s:64:\"No se encontraron comprobantes para enviar de la fecha indicada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e05c06751565e141dfc68b7f617c86e88a8695', '71.6.134.230', '1697473859', '__ci_last_regenerate|i:1697473859;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61ee8340839ee9ea79d596e454f79bcd4351d9b8', '34.67.182.248', '1657496476', '__ci_last_regenerate|i:1657496476;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f677222e620ce4bd0631d372e2fe97367767a5', '199.195.250.129', '1675189732', '__ci_last_regenerate|i:1675189732;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620495b72625510430df8a5be9ab1752c30c0be0', '52.64.20.252', '1618630279', '__ci_last_regenerate|i:1618630279;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6214413218ba5dc047034fd7a97f64cc8399a0d7', '51.158.37.209', '1672826299', '__ci_last_regenerate|i:1672826299;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6214cedf5920e832b653073c8df62ac6bb3b993d', '134.122.7.10', '1687477829', '__ci_last_regenerate|i:1687477829;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622bc0da17d869b4c08a9711c25967ae66a110c5', '2.57.122.60', '1664443003', '__ci_last_regenerate|i:1664443003;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6238b7cf0f0e5b1a3aec23189262e41be31742f2', '89.248.165.204', '1685722532', '__ci_last_regenerate|i:1685722532;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('623f0fee92fc73e6440d630f8d0b8399a41650c9', '198.235.24.2', '1658370300', '__ci_last_regenerate|i:1658370300;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6244f68c274dae6c3ff63db2db5f41c16419f10a', '77.222.60.234', '1690655965', '__ci_last_regenerate|i:1690655965;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('626238e4ab62325406533a5d4dfe4cb7da2e64de', '34.77.162.20', '1618930482', '__ci_last_regenerate|i:1618930482;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('626f798ddb727f874b10fe0148d74ea030f79ad1', '119.23.105.36', '1677857769', '__ci_last_regenerate|i:1677857769;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('627291041a285303d041ffdd9b2da57ca99f9c61', '205.210.31.10', '1697881577', '__ci_last_regenerate|i:1697881576;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('628faf7e31172df9e505b60bd955770f8f87059f', '101.68.211.2', '1685590700', '__ci_last_regenerate|i:1685590700;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('629aa3a4e4508418b835d61109698dff29887442', '148.102.23.16', '1621613433', '__ci_last_regenerate|i:1621613424;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c5d0811540858df03524db5bbf31d634e81caf', '179.6.222.7', '1616168246', '__ci_last_regenerate|i:1616166365;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616094960\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62fa61bbd18ac91a3cb598c438538b3af8e6e07b', '69.166.234.141', '1681357297', '__ci_last_regenerate|i:1681357297;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6309611a9dbdaccf9387e6f6be64c98e4e7ee2dd', '167.248.133.63', '1663514497', '__ci_last_regenerate|i:1663514497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631b8fffbf5cf1f69ad868fea327e0c98a587b22', '205.210.31.88', '1686680886', '__ci_last_regenerate|i:1686680885;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631e85a1b9c69b3d5c0871e393bcc18811574e32', '36.99.136.141', '1690776343', '__ci_last_regenerate|i:1690776342;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('632579b78fd9cb266ceea78b26d8fea25e8def10', '139.162.39.160', '1661790693', '__ci_last_regenerate|i:1661790693;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6330dbd9a9d964d90bcc7f222075740b0dd530ce', '132.191.2.181', '1621455180', '__ci_last_regenerate|i:1621455180;local|s:1:\"1\";listaVenta|i:158;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621438505\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('634d39dc1b05ba462b468dcc8ecb868a767e4bef', '34.250.138.66', '1696516788', '__ci_last_regenerate|i:1696516788;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637bf0ff8dedbdb36d8ff3b07cbcfe624c2f67f9', '181.176.125.91', '1673274248', '__ci_last_regenerate|i:1673274218;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672970140\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638dd3f510dfb92bc5ab32b0891ecc5fbe01043e', '161.132.234.14', '1625595569', '__ci_last_regenerate|i:1625595532;local|s:1:\"1\";listaVenta|i:1;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625199290\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6391331e0b0e44fc47baf1c13e61a0d6fde37972', '186.1.135.141', '1611850501', '__ci_last_regenerate|i:1611850398;local|s:1:\"1\";listaVenta|i:192;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b4fb9c280e4f01f08b4eedbed9aa883c0b87ad', '205.169.39.241', '1683172294', '__ci_last_regenerate|i:1683172294;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c1a34a47a063618ece06be2e3d4beb32d7a102', '181.176.109.95', '1672756972', '__ci_last_regenerate|i:1672756972;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c60c8fbe576f0531b9a5ab80568fb34ffdfdf3', '186.1.135.141', '1612458759', '__ci_last_regenerate|i:1612458545;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612454362\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63cac10b285bb18629e37d4fc38bd89df30c3cdc', '54.207.151.131', '1612253394', '__ci_last_regenerate|i:1612253394;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d5bdd85bca86a0d7b8f29556350b54421be2df', '198.235.24.49', '1687568984', '__ci_last_regenerate|i:1687568984;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63dbc0401c924db375b6e4636fe8bd7abb3fffea', '186.1.135.137', '1613655099', '__ci_last_regenerate|i:1613654757;local|s:1:\"1\";listaVenta|i:336;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613592148\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e97d17410680facc5030331f27c1ac8211ef5d', '186.1.135.134', '1612813703', '__ci_last_regenerate|i:1612813703;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612812992\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640f5b43745773138f595ebc9058586f72c69833', '186.1.135.143', '1615414107', '__ci_last_regenerate|i:1615414107;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('641583587530a00a7061d1907b9c388ac8b1c450', '198.235.24.21', '1683970487', '__ci_last_regenerate|i:1683970487;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6436b5c85a69646840a02876d504d7a6718626ad', '186.1.135.137', '1614184677', '__ci_last_regenerate|i:1614184601;local|s:1:\"1\";listaVenta|i:122;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614113393\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643d644cb9d5049201a6785baa0203dbea87545d', '38.25.16.184', '1698951834', '__ci_last_regenerate|i:1698951647;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:28:\"Usuario eliminado con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('645ee9ed4f5359cbbc90d910f391f9d652e11006', '167.248.133.51', '1691099360', '__ci_last_regenerate|i:1691099360;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('645fdbb0f9c7a546f87f508a52224560dba570b4', '109.30.248.88', '1654331913', '__ci_last_regenerate|i:1654331913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6464d9a786cdbb2b756fa1701407c7f6952bfae3', '179.6.222.7', '1617986222', '__ci_last_regenerate|i:1617985726;local|s:1:\"1\";listaVenta|i:1831;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('649cf830105755a87590cc6df9e67090355a08ac', '148.102.23.16', '1619632396', '__ci_last_regenerate|i:1619631936;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619630873\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b7f53eae36176202aef8221a25960eec9d062f', '92.118.160.1', '1613141848', '__ci_last_regenerate|i:1613141848;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64c253b6bd855573321819763c32eb86d4257373', '161.132.234.14', '1622650715', '__ci_last_regenerate|i:1622650415;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622579033\";last_ip|s:15:\"146.112.244.227\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64feaf883bc9b500326b7680dcf2e76504e5e4a1', '148.102.26.11', '1619189728', '__ci_last_regenerate|i:1619189243;local|s:1:\"1\";listaVenta|i:760;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650b8edcb3f8cf617dc57692c09ad5f37157e7dd', '205.210.31.39', '1696440337', '__ci_last_regenerate|i:1696440337;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650e4fef8f1aff4e384f5acc408c6972316a915a', '185.225.74.198', '1682006048', '__ci_last_regenerate|i:1682006048;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65193bf1ede04ff7c690caf85b4b623423c59325', '167.94.138.60', '1674339057', '__ci_last_regenerate|i:1674339057;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651c886fdff19baac9d371ef702ecb2ebdbfd4fc', '186.1.135.150', '1613161890', '__ci_last_regenerate|i:1613161869;local|s:1:\"1\";listaVenta|i:5;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651f3e7042c02bbd86b3909dcb782b8b3739c6a2', '51.158.108.77', '1672219513', '__ci_last_regenerate|i:1672219513;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6521d6a77369982a23eb1e6442092656eee88fe2', '161.132.238.121', '1630377543', '__ci_last_regenerate|i:1630377535;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1629248072\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6536a6e0f8849a4b670eef3d6f98ea7fa87a8aa6', '34.71.227.84', '1656041412', '__ci_last_regenerate|i:1656041411;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('653f3e3bf037de406973050b1bb5667ce4cfe8fe', '198.235.24.183', '1693216789', '__ci_last_regenerate|i:1693216788;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654b8c0f34fc14ed69915b46fe2753af78f77249', '198.235.24.2', '1670408108', '__ci_last_regenerate|i:1670408108;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('656dd50e8a4c92e5ebb4ff354a9b8abe82732abb', '179.6.222.7', '1616978689', '__ci_last_regenerate|i:1616978565;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616883469\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657ad86a76b067bec8d51f17253f108895282e5b', '198.235.24.165', '1665781272', '__ci_last_regenerate|i:1665781272;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('659351150d30162902f2c2a8a97b6ff540a757c8', '208.110.85.68', '1618486073', '__ci_last_regenerate|i:1618486073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('659e529e678522021de6493decc72fea1153d11a', '54.80.59.143', '1654293306', '__ci_last_regenerate|i:1654293303;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a320fc32b1f3350a18f727c4f7a859dd9444b3', '198.235.24.38', '1698672766', '__ci_last_regenerate|i:1698672766;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a44dabd09f2665dd8ba57449711ee42b1d15fa', '201.230.205.217', '1671205689', '__ci_last_regenerate|i:1671205519;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b026bf743478f0bd1ae04669d5ea9782b9a346', '51.158.66.83', '1661380012', '__ci_last_regenerate|i:1661380012;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c9553decb065c4c50c1688ac9d5353f5e75563', '144.86.173.135', '1628195519', '__ci_last_regenerate|i:1628195519;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65cb1b707d9cdcb2494ed7f75d9a8afed5f2ab1a', '198.235.24.53', '1696140034', '__ci_last_regenerate|i:1696140034;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65d93925671c1442b2c8b2bddb65483413c27bff', '139.144.150.26', '1683172264', '__ci_last_regenerate|i:1683172264;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661745f0f24e00cbffd7c62f24ec75717b1851fd', '165.22.32.48', '1662800305', '__ci_last_regenerate|i:1662800305;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6628462a0252e574dcbe7b4da20b32a40042542c', '179.6.212.129', '1615168536', '__ci_last_regenerate|i:1615168251;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615165073\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('663948ad260d64b5d5839c14384a3633ca2beb5c', '35.227.62.178', '1698948906', '__ci_last_regenerate|i:1698948906;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('663b974e85c0dccaeded514b60462b37b9309132', '201.230.205.196', '1698719097', '__ci_last_regenerate|i:1698718957;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698468897\";last_ip|s:15:\"201.230.205.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('663eec40d7093ab7302bfd8dae98417d77667ae5', '81.69.254.180', '1624112105', '__ci_last_regenerate|i:1624112105;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66595fa1d89e0f203f892d13b67713bbb1f7b391', '186.1.135.158', '1612905282', '__ci_last_regenerate|i:1612905279;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612878650\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000272\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('667414e369b9ddb31fdf5c0bbb65a068a4864aeb', '179.6.222.7', '1617119841', '__ci_last_regenerate|i:1617119558;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('667493be2451d3b2bfd69da239f0a3934c8f475c', '51.15.195.246', '1635190625', '__ci_last_regenerate|i:1635190625;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668af2fe8e0601c89fff18cebef1b9b4de8a891e', '34.77.162.9', '1624332745', '__ci_last_regenerate|i:1624332745;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66917b532a1772ad9fb12f30e286e6f78defc386', '148.102.26.11', '1620838948', '__ci_last_regenerate|i:1620838948;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a1f6724733848b2907f5efe1d75bdd9930254d', '18.184.155.204', '1620365504', '__ci_last_regenerate|i:1620365504;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ac629bb5aa507867b6609b02ebeaadeaf09038', '38.25.7.251', '1652894076', '__ci_last_regenerate|i:1652894075;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652726050\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66acd317ad3238a1bd503100c29df63d746afa34', '167.248.133.187', '1692403256', '__ci_last_regenerate|i:1692403256;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b2795b51e368b89daf6dd314504b2eb4fcd365', '3.0.115.255', '1619157453', '__ci_last_regenerate|i:1619157453;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b30900c47001ce6c5fe61b8479a775', '201.230.81.164', '1622146291', '__ci_last_regenerate|i:1622146291;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b6bb051b7e0f9f9468cfa6fd2a3612f7166f63', '190.236.3.2', '1672153954', '__ci_last_regenerate|i:1672153954;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c32265dbe2dada8f4b5b2ed3d07a72ce21d1db', '132.184.128.149', '1619637212', '__ci_last_regenerate|i:1619637005;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619537510\";last_ip|s:13:\"190.236.28.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d0bb78a06325d7cc27d51155c6ae4267377b81', '161.132.234.14', '1625628980', '__ci_last_regenerate|i:1625628688;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625619479\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d26f85e16d3f4dc524fab2757e3cafc3f0864e', '38.25.16.38', '1688094497', '__ci_last_regenerate|i:1688094492;local|s:1:\"1\";listaVenta|i:234;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687992645\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d2f36e64bfd9ad573c2060b86927e133fa3096', '205.210.31.31', '1669774356', '__ci_last_regenerate|i:1669774356;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e8581fb3e0e0d75d850c56bd4e05b0a4a8f93f', '34.242.34.90', '1691347863', '__ci_last_regenerate|i:1691347863;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66eefa98e74db7f0059d98d61ed043efa11cfa89', '186.1.135.138', '1613052249', '__ci_last_regenerate|i:1613051824;local|s:1:\"1\";listaVenta|i:911;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66f1c4d48464c1727b304168fdbff0d44be609e0', '205.210.31.12', '1698455085', '__ci_last_regenerate|i:1698455085;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('670a197a5ffa5d0b8a1d31d69c66ca5ff7825acb', '186.1.135.134', '1615824343', '__ci_last_regenerate|i:1615824343;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('670ab943e104c16ff50f50a871b7c42e0700b29d', '18.203.100.44', '1672866932', '__ci_last_regenerate|i:1672866932;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67204ac05066f99332d91251b4d39ee29d845683', '181.64.105.12', '1622212473', '__ci_last_regenerate|i:1622212405;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622210824\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('672ec538c1257740bf82506d72c61d6fcd1b0595', '45.225.216.151', '1623692909', '__ci_last_regenerate|i:1623692811;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623692024\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6736046c5c4bfa2e3bae04b0d20ef429afecaefc', '205.169.39.15', '1611079227', '__ci_last_regenerate|i:1611079227;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6738e882336a6880a6d6da37400a70324a821a83', '167.248.133.117', '1668055826', '__ci_last_regenerate|i:1668055826;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('674382018b010239fa33c7122cb1853f8887186b', '190.239.238.126', '1617398638', '__ci_last_regenerate|i:1617398616;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1615556552\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:28:\"Local actualizado con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('675e77dac0cb73f9b9fcfebda46d9bc59a9ed10b', '161.132.234.14', '1626235361', '__ci_last_regenerate|i:1626235361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('676518130e0fdf5eb3438c05ae00b60d56b20ce0', '35.196.132.85', '1698948906', '__ci_last_regenerate|i:1698948906;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6769f39c8b0041aaa5d94d8ac92ceabcabee0523', '186.1.135.138', '1613047449', '__ci_last_regenerate|i:1613047421;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67773a987de90b9252de610aaabfba9d', '161.132.234.14', '1624914769', '__ci_last_regenerate|i:1624914769;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6780bd6a3821dcc7a30a6669f86da5889108a21e', '34.133.61.90', '1655545943', '__ci_last_regenerate|i:1655545943;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67a1fd2cec067c7cb7d238a2bfb666d19fe4715e', '186.1.135.131', '1614290705', '__ci_last_regenerate|i:1614290705;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67aad337f98c20781df9649e8791f070c7a886f7', '181.67.2.242', '1688141677', '__ci_last_regenerate|i:1688141484;local|s:1:\"1\";listaVenta|i:260;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688095277\";last_ip|s:14:\"190.234.141.82\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67adbe6ae7027343ccf1cfd08479bfb07097f397', '101.68.211.2', '1674110598', '__ci_last_regenerate|i:1674110598;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67adcc1fac3b75f5d5d50eeba129170c29311ce4', '80.65.211.20', '1698906221', '__ci_last_regenerate|i:1698906221;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b4d2d87cb90c4043eb5ae74491515404248432', '186.1.135.144', '1615297971', '__ci_last_regenerate|i:1615297453;local|s:1:\"1\";listaVenta|i:136;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615296508\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67d72c61f25f6423d1eb26d848cc904cef74613d', '167.248.133.189', '1678424720', '__ci_last_regenerate|i:1678424720;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67eb87a7a241d2aa2e4a69e56995b52f214258d2', '148.102.26.11', '1620666673', '__ci_last_regenerate|i:1620666673;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68031abe43a3f02216bf61e8fde7ede5ec624f07', '167.248.133.118', '1672584773', '__ci_last_regenerate|i:1672584773;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68043a280d4d0217fb8defadacdad16fe4d4adcd', '167.248.133.187', '1692403257', '__ci_last_regenerate|i:1692403257;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682cafed38ff41d32a275f060896777b6ea06d0d', '186.1.135.130', '1617026318', '__ci_last_regenerate|i:1617026061;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683a45862931eaf839215cbdd372781c986e8f5f', '148.102.26.11', '1619194140', '__ci_last_regenerate|i:1619193899;local|s:1:\"1\";listaVenta|i:2359;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('684c56c803d8ccfeaf27dd6d610fdfbb3d219e3d', '157.245.129.229', '1680758472', '__ci_last_regenerate|i:1680758472;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('686ea81e0728737ba0da651a79a86adc3e8eda06', '198.235.24.153', '1673229247', '__ci_last_regenerate|i:1673229247;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68783a2d7b67e00dce569f778c1cea76da676d25', '34.77.162.8', '1623190318', '__ci_last_regenerate|i:1623190318;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6883b15d0771b786fdf2d154bb7c2a4b22d61514', '179.6.212.129', '1615322293', '__ci_last_regenerate|i:1615322287;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615318109\";last_ip|s:13:\"186.1.135.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6885d4c59a67d89e6cb98968fb7f3e947c3d1f23', '198.235.24.128', '1696957071', '__ci_last_regenerate|i:1696957071;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ae6cf27d376b155af48f3b7777692ca227670f', '2.57.122.25', '1697156255', '__ci_last_regenerate|i:1697156254;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b302a04667c2e15e9b00b234fd9246c27e40c0', '190.237.172.147', '1614772383', '__ci_last_regenerate|i:1614772203;local|s:1:\"1\";listaVenta|i:728;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ba5d2629c54cfc951442584e198109bea1f975', '190.232.180.131', '1612798673', '__ci_last_regenerate|i:1612798664;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612558855\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ba67114e6e548cbd34702c71a5d3ef7cd94941', '161.35.182.139', '1654051222', '__ci_last_regenerate|i:1654051222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68bb50c93842bd8a73c80f24bb4be7e41389363c', '35.183.45.142', '1618247689', '__ci_last_regenerate|i:1618247689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68caf6d1a5b6bb5eb2b6c5035fab682c6488c1ef', '121.4.238.122', '1658533051', '__ci_last_regenerate|i:1658533051;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ce7d09eebe718716de0ac6da906350746ff41c', '181.64.223.213', '1624915992', '__ci_last_regenerate|i:1624915976;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915163\";last_ip|s:14:\"181.64.223.213\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d0fd711cee49f120a0dca7bac0ab74197bf508', '198.235.24.31', '1655568231', '__ci_last_regenerate|i:1655568231;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d650465741bf83530f075b203621c4f5fe0290', '181.176.108.35', '1673879169', '__ci_last_regenerate|i:1673879165;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1673648083\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e9889a8d61e5755a77c9a74e4e184b48ce16a7', '186.1.135.76', '1612364152', '__ci_last_regenerate|i:1612364074;local|s:1:\"1\";listaVenta|i:104;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612299033\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000263\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68fe685dd919105c5cc02b8ffa2c69e57518e95b', '18.136.72.135', '1617883474', '__ci_last_regenerate|i:1617883474;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6925290aab68f00690dd7371c42d597000d3282b', '186.1.135.129', '1617807158', '__ci_last_regenerate|i:1617806870;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6936b39550392fb124321a23dc6296f094017e32', '34.96.130.18', '1634941721', '__ci_last_regenerate|i:1634941721;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69401231d244bf7b18d8b3ea114801459adb4748', '46.101.150.34', '1670546467', '__ci_last_regenerate|i:1670546467;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('697169c42931031bcf7c3e6a6524978f63b48f4b', '162.142.125.211', '1677408809', '__ci_last_regenerate|i:1677408809;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('697b4080914271d5ffa2bfe34d4b909ff45b881c', '121.5.226.36', '1618738209', '__ci_last_regenerate|i:1618738209;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('697bc2b4827f72ecc313c3fe3897033a62b6c705', '148.102.23.16', '1618062390', '__ci_last_regenerate|i:1618062385;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618005279\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('697f2e96248e45f99b90fc0b05c17ddb2f8b6fb3', '183.136.225.44', '1677853379', '__ci_last_regenerate|i:1677853379;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6981cc5c4f7be306369b4c28d997f108cbd195fa', '205.210.31.174', '1693404669', '__ci_last_regenerate|i:1693404669;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('698e67189cf4bf7fbdbb0fed5b11eeff61f25124', '18.231.94.162', '1623646492', '__ci_last_regenerate|i:1623646492;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('698ec209b67f27eae0696c8976e7f0893e3d3737', '205.210.31.28', '1655532190', '__ci_last_regenerate|i:1655532190;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ab14960160703f4890db28241b858e2f609053', '201.230.81.79', '1620230174', '__ci_last_regenerate|i:1620230093;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620229244\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b6f2286fff1ca3da5517c55845d41aa69399c4', '65.154.226.166', '1678331582', '__ci_last_regenerate|i:1678331578;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e93f9039b0fccadf6c04ecdd34c23d01ff71cc', '190.239.67.117', '1620237157', '__ci_last_regenerate|i:1620236839;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69eb3f19fce34739089f46b5e8284df441e33fc4', '186.1.135.132', '1612878659', '__ci_last_regenerate|i:1612878484;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612878149\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f92c84ad12752cc6a0cdb7430b801c78ac896b', '47.242.105.176', '1689771139', '__ci_last_regenerate|i:1689771139;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69fd768caaea05b5814000e3722495dfb18035a4', '186.1.135.135', '1612533311', '__ci_last_regenerate|i:1612533293;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612528908\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a08bd2a661f7aaff05585ce9cc7f25bad8ba795', '198.235.24.19', '1696196665', '__ci_last_regenerate|i:1696196665;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0f33279f18121c581fbc082477e28f6e8c2dc6', '186.1.135.66', '1616435634', '__ci_last_regenerate|i:1616435022;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616423078\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a10de6f7bbeb8fff563e4f615c097b281c4c744', '198.235.24.93', '1694885664', '__ci_last_regenerate|i:1694885664;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1b746fb5c2f093a0ed6b4456c3b495ed2030d2', '186.1.135.147', '1613592364', '__ci_last_regenerate|i:1613592141;local|s:1:\"1\";listaVenta|i:52;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613579275\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1b911546ff06e4e974d7f9d77017bd57f3b013', '179.6.222.7', '1617132815', '__ci_last_regenerate|i:1617132815;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a381675e872f0da76a5a5073bdf5a1e7be704b5', '183.136.225.45', '1682162695', '__ci_last_regenerate|i:1682162695;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a581e0cee225d92992465e21aea14a1cdf25f6e', '34.252.16.31', '1692437279', '__ci_last_regenerate|i:1692437279;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a5e137175557a81827fa160bf67e13b13e998d9', '162.142.125.7', '1677471249', '__ci_last_regenerate|i:1677471249;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6ad4e2722f7aa2b1ad2b5c651a0662323e818a', '186.1.135.129', '1614702320', '__ci_last_regenerate|i:1614702253;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614695024\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a787438af2ec7175cb69f019a86fcd445761276', '18.231.137.138', '1622203309', '__ci_last_regenerate|i:1622203308;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a8cc31203184840c3e3a2f7bc6b71365b36a69f', '47.242.105.176', '1676566179', '__ci_last_regenerate|i:1676566178;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9a94717e06886026f06b143fe226c1b752a125', '44.199.235.222', '1668971300', '__ci_last_regenerate|i:1668971280;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab2d6f4345a0864cfbff719d32fa5fdad6e528f', '148.102.26.11', '1621021005', '__ci_last_regenerate|i:1621020676;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621002037\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab703c7360eca306bab87ae8a9431eb2c39fe35', '34.77.162.23', '1618943689', '__ci_last_regenerate|i:1618943689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aee8d9a4fc0ca5f64726c80746f95cef59d26ee', '87.236.176.124', '1682520454', '__ci_last_regenerate|i:1682520453;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af7d308f747e5d409ebe1096766e65bec09eb95', '161.132.234.14', '1622652415', '__ci_last_regenerate|i:1622652413;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622579033\";last_ip|s:15:\"146.112.244.227\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afc81365659b575359e8f77943c3905518cf0ab', '205.210.31.180', '1666435722', '__ci_last_regenerate|i:1666435722;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afcbf16edc61c438c75f7ad052a168fd620c9c0', '186.1.135.136', '1617910794', '__ci_last_regenerate|i:1617910784;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617908137\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b09f920a28cbc21756d2cae216ccf2cc02e1f3b', '179.6.91.118', '1672370872', '__ci_last_regenerate|i:1672370728;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672369749\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b113b5b4b52385e7bdb294767be1b26ffe7d4d1', '186.1.135.78', '1611860387', '__ci_last_regenerate|i:1611860387;local|s:1:\"1\";listaVenta|i:576;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b24868e5c3ce901b173682343578a4a1d26e157', '70.38.27.252', '1690860633', '__ci_last_regenerate|i:1690860633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3b5fd6d016bcf4b89435acd6424f4057caf4d5', '179.6.212.129', '1614778286', '__ci_last_regenerate|i:1614777875;local|s:1:\"1\";listaVenta|i:263;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771237\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b43a69349db7d4ecf5d32372de1ecc1519193c8', '173.255.252.198', '1661790685', '__ci_last_regenerate|i:1661790685;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b5bcc2206756a583f6b6c9f3759763ad810790c', '186.1.135.79', '1616619420', '__ci_last_regenerate|i:1616619176;local|s:1:\"1\";listaVenta|i:149;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616603027\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6bed0bef33cbae008306351214f27922c098f3', '148.102.26.11', '1619799411', '__ci_last_regenerate|i:1619799113;local|s:1:\"1\";listaVenta|i:218;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619789458\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b83d36f92ad3405d44ef303209cdb6e', '45.177.196.194', '1670943293', '__ci_last_regenerate|i:1670943293;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ba6cc6194119a683aafe394bb076075ec55656e', '34.86.35.6', '1635567358', '__ci_last_regenerate|i:1635567358;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6baf5cce6370207bfe561ff7db7aeb07e4842216', '179.6.222.7', '1616848224', '__ci_last_regenerate|i:1616847987;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616847440\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000337\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bbe8eeeb44a597e31a6c6b27b028fdb92cedac3', '106.53.83.56', '1628041999', '__ci_last_regenerate|i:1628041999;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bcbf7270f9da61cd123267ac7f9c70b32c2fc80', '139.155.16.233', '1615018493', '__ci_last_regenerate|i:1615018493;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf02181008ad2235ea95695b273718381b3c0b3', '167.248.133.188', '1679549870', '__ci_last_regenerate|i:1679549870;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c0b992c96f869da6db60ce77ada90fbe898fac2', '101.68.211.2', '1691999616', '__ci_last_regenerate|i:1691999616;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c11e121b2a889623cef9606177f021d5bd26a94', '181.64.18.3', '1619198154', '__ci_last_regenerate|i:1619197870;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619122727\";last_ip|s:11:\"181.64.18.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c12f4ff2f03121335a248e8d2d96564659feb6b', '146.112.244.226', '1622579663', '');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3503b8d4a2f8cb5dcddca3dbe85da75da5c3bf', '183.136.225.46', '1688843952', '__ci_last_regenerate|i:1688843952;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c38ac754da9a99fb14df06565cd91a0fcb2a32e', '186.1.135.129', '1618243975', '__ci_last_regenerate|i:1618243972;local|s:1:\"1\";listaVenta|i:226;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3946c7cebcf599621ad73e4eff73e00314e5ba', '18.231.54.233', '1622110094', '__ci_last_regenerate|i:1622110094;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c40eb9b4608181161bb57edbb55762be6560130', '148.102.26.11', '1620253121', '__ci_last_regenerate|i:1620252705;local|s:1:\"1\";listaVenta|i:260;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620223665\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5430075edc081562785eb276a12ef22a077870', '50.54.130.20', '1663485688', '__ci_last_regenerate|i:1663485688;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6c36aee821c309a6d104ec2e27c52bb1445442', '205.210.31.33', '1697463814', '__ci_last_regenerate|i:1697463814;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6c6d92b49d17ec527ce7df6470c20bdb8fba87', '186.1.135.142', '1614620441', '__ci_last_regenerate|i:1614620291;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7427165f8b8f8ee02d9dc0f3a948240bf890ee', '205.210.31.180', '1673093138', '__ci_last_regenerate|i:1673093138;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c76ec9dac952856a9846c7fdb94a1f1fd8c04f8', '186.1.135.137', '1614201540', '__ci_last_regenerate|i:1614201515;local|s:1:\"1\";listaVenta|i:292;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614177537\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7ea30f3b0b8b222ae26d9abacc44fa0f457113', '205.210.31.12', '1659766469', '__ci_last_regenerate|i:1659766469;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7f1dd7891289b95f97a3b91e444f02145fbafb', '137.184.32.150', '1676522774', '__ci_last_regenerate|i:1676522774;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8bccc6c3b2a11abfb2a450c93de534752d04c9', '51.158.109.3', '1665633555', '__ci_last_regenerate|i:1665633555;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8e9b361307fb33f408686f49dbed5b0c63f8c3', '148.102.26.11', '1621614059', '__ci_last_regenerate|i:1621614059;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8efef78487e456a2ed5eeb880da5465ec175a5', '181.176.121.19', '1675104556', '__ci_last_regenerate|i:1675104556;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8fd7607c62c6ada8474fe34c85e9c5032502ee', '146.70.166.232', '1680847021', '__ci_last_regenerate|i:1680847021;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ca8b551b9c8ed1bf7d59b9fac399baf37c1446d', '::1', '1598609449', '__ci_last_regenerate|i:1598609378;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb160b515cf459e9bd3e24d34f2500e', '45.177.196.194', '1674848328', '__ci_last_regenerate|i:1674848327;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb6ba1f67486d1805471aedac2e7692727a1061', '38.25.16.184', '1698878626', '__ci_last_regenerate|i:1698878626;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cbb06eb39e6301f5070a6a25c1d0bc756188e51', '179.6.222.7', '1617978324', '__ci_last_regenerate|i:1617977831;local|s:1:\"1\";listaVenta|i:684;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cbc600ddfa8782e8a75a50ace629655496c41f6', '38.25.16.184', '1698959752', '__ci_last_regenerate|i:1698959413;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cdded8ee32c7ec931b128f5a28cacd213237bb6', '47.254.85.182', '1683215992', '__ci_last_regenerate|i:1683215992;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce049658129728ac0a7dbe0f15a7231af94c254', '::1', '1598575847', '__ci_last_regenerate|i:1598575669;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce7645808aa7bb89c079418a552dcaae56648a8', '198.235.24.81', '1684189636', '__ci_last_regenerate|i:1684189636;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d27ff171bfffb7b19502c419cea4d2c8ae84f46', '167.248.133.186', '1679594661', '__ci_last_regenerate|i:1679594661;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d37da2da46b9044f708af76c95e8ed86922ce76', '179.6.212.129', '1614871591', '__ci_last_regenerate|i:1614871278;local|s:1:\"1\";listaVenta|i:94;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614870227\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4787088efc6319f956a502686ebf3e3914936c', '148.102.23.16', '1619631282', '__ci_last_regenerate|i:1619630870;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619617584\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d47a09c46996f17eb2893382abc8b0c3a1a97e6', '186.1.135.158', '1612911922', '__ci_last_regenerate|i:1612911919;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612910624\";last_ip|s:13:\"186.1.135.158\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000274\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d55af07f15e7cb1ad37bb3de5848689af770fbe', '186.1.135.150', '1613156309', '__ci_last_regenerate|i:1613156225;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613136259\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d56cbc5fb6f2a7a3c08568f55e4eaefec7709b4', '198.235.24.211', '1697626721', '__ci_last_regenerate|i:1697626721;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d572b706d0f3eb911682cea4f1909a853ba5c5f', '186.1.135.130', '1617052915', '__ci_last_regenerate|i:1617052835;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d669ec6c733b23c5f8e6ea872e9e81e918d89da', '3.123.129.244', '1674127583', '__ci_last_regenerate|i:1674127583;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d7081d23904b8b1e2da10e1ba950b3faa3810e9', '205.210.31.144', '1677849858', '__ci_last_regenerate|i:1677849858;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d8c44ea2685dcbc36069792828c105de7dc93be', '190.237.172.147', '1613903491', '__ci_last_regenerate|i:1613903058;local|s:1:\"1\";listaVenta|i:1012;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613742638\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d93828136de6e1fa40aadf3d7b3db16066d6cb6', '205.210.31.35', '1696648550', '__ci_last_regenerate|i:1696648550;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da26adc5392fd458767c48e6211a90c55b29a99', '82.193.104.168', '1662923114', '__ci_last_regenerate|i:1662923114;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db02106c9e0dfeb42d10848a13984777ca3edf3', '167.248.133.125', '1681138579', '__ci_last_regenerate|i:1681138579;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db987518e0affc29fd977cc9710a025ba94f007', '167.248.133.35', '1695368418', '__ci_last_regenerate|i:1695368418;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dbdb729185f1d868069ed2c66f542f6349c6bd4', '205.210.31.162', '1693808576', '__ci_last_regenerate|i:1693808576;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dbe90e1ab4826d7e1b73ca3d91802762f949a56', '206.81.18.4', '1635351209', '__ci_last_regenerate|i:1635351209;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dd709bca1d119f42350e46f05947f607b4f1404', '205.210.31.82', '1693905531', '__ci_last_regenerate|i:1693905531;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de3158cca216482b49d0bf91a2dfc93166cf84e', '186.1.135.134', '1615830062', '__ci_last_regenerate|i:1615829958;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6df45d00cc72bd4893999e3f767c6eb40b9471ff', '67.205.191.23', '1684066924', '__ci_last_regenerate|i:1684066924;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dfdb3741bf2401f5a79f7c2f5e37ec66fe49468', '92.118.160.13', '1637480155', '__ci_last_regenerate|i:1637480155;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dff86d5ce9a82dcc52f827704170e4a9e1a09e2', '183.136.225.44', '1688250053', '__ci_last_regenerate|i:1688250053;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e01fd1a72e2a3ee79422586b4c84782d4fc4f2e', '118.24.106.70', '1628794352', '__ci_last_regenerate|i:1628794352;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e034f249350a8fd4c30abc6b66b39561b059c23', '183.136.225.46', '1682310734', '__ci_last_regenerate|i:1682310734;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0357f937e8d43866e62216c20923c7dfafa8a3', '144.91.106.14', '1678530003', '__ci_last_regenerate|i:1678530003;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e07f08b1f10281fcf1963afd2d06946e0a7daef', '::1', '1598582914', '__ci_last_regenerate|i:1598582883;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e24fed75f435cbbc7b80e961f6f52430f4c8592', '186.1.135.78', '1611863522', '__ci_last_regenerate|i:1611863086;local|s:1:\"1\";listaVenta|i:1000;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e2e5d7ade10dc8e2d5b6f9254f430873ceccd30', '167.94.138.52', '1695116952', '__ci_last_regenerate|i:1695116952;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3ee2a1958b6768cd72110e00eeefc09160c4c5', '186.1.135.133', '1612194960', '__ci_last_regenerate|i:1612194852;local|s:1:\"1\";listaVenta|i:40;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612189952\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e49e53415f815b4453a3281813b1e72e7dade61', '3.90.232.140', '1617596381', '__ci_last_regenerate|i:1617596381;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e5a1307aea0509b393a201a2f8fc29d9a9657b4', '186.1.135.130', '1614367996', '__ci_last_regenerate|i:1614367802;local|s:1:\"1\";listaVenta|i:177;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614345172\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e6e55a4aed9ab11b4f5e90c7039b8ddc7e4005b', '148.102.23.16', '1619623213', '__ci_last_regenerate|i:1619623209;local|s:1:\"1\";listaVenta|i:91;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619535621\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7649933dd3181453c2d0d844ef9ceb240c2617', '190.237.172.96', '1616882203', '__ci_last_regenerate|i:1616882200;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616854183\";last_ip|s:14:\"190.237.172.96\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000339\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8c29161f2c248decbd65b829dc59fc66c3ef90', '179.6.212.129', '1615481553', '__ci_last_regenerate|i:1615479963;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615470525\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e9f9370c7e5ada882809fcb12148db1a691abdd', '190.235.46.177', '1671666114', '__ci_last_regenerate|i:1671666064;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671640306\";last_ip|s:14:\"190.235.46.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e9ff7dc964bf23afcb33573b09ec8aef3b97dfb', '186.1.135.132', '1615496787', '__ci_last_regenerate|i:1615496636;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615479965\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eb8a9487940fbdf34b0aea61ff4317b16daed35', '13.124.222.242', '1624025179', '__ci_last_regenerate|i:1624025179;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed30e0d7bf793f6cf5f3a6ec11da9e131ce5dc3', '190.237.172.96', '1616882116', '__ci_last_regenerate|i:1616881864;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616854183\";last_ip|s:14:\"190.237.172.96\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6effa38b9d6e73072fc8bc0ce798046c26a8486c', '148.102.26.11', '1618855306', '__ci_last_regenerate|i:1618854932;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618851313\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f0b3a4736f7b01fdc032736f9b1d8d9f12af847', '205.210.31.171', '1677318607', '__ci_last_regenerate|i:1677318607;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1e4831c67baf989069e4a819b0de63fdbc226f', '167.248.133.127', '1688115637', '__ci_last_regenerate|i:1688115637;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1e749fe1cd6212ee5821f8d8db5fb96dd939dd', '148.102.26.11', '1618855586', '__ci_last_regenerate|i:1618855586;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f221c79ccffabead56c8c436e39b6de4157e267', '186.1.135.143', '1615924720', '__ci_last_regenerate|i:1615924720;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f498e35f7dcec960e9fb62568640f1cd194fdfa', '148.102.26.11', '1619533750', '__ci_last_regenerate|i:1619533452;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619469044\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f49c271cb3e478938e9e9a3474e4be40977a64b', '167.248.133.44', '1675313391', '__ci_last_regenerate|i:1675313391;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fbbe6159ecc627b02ce7970384341b1482d30ad', '38.25.16.184', '1698959927', '__ci_last_regenerate|i:1698959801;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc2e76726da917fab376d2b75b223079ed1c9d2', '186.1.135.138', '1613061380', '__ci_last_regenerate|i:1613060919;local|s:1:\"1\";listaVenta|i:2177;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc92c4e2c469dea8ed95349edfd719ff0e116ea', '15.228.22.233', '1622070806', '__ci_last_regenerate|i:1622070806;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd2bce5e80893f1a6c367a7294e7e42c8f54dea', '51.158.103.247', '1621565845', '__ci_last_regenerate|i:1621565845;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd61b1c390119b57fd82770a930356e493eba18', '139.162.39.160', '1661790680', '__ci_last_regenerate|i:1661790680;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd85b62ced624d4140e027f54be694872d130ba', '181.176.100.203', '1676901809', '__ci_last_regenerate|i:1676901809;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd88fc0d5dd142bfc2a065d2b53241a', '201.230.205.217', '1671203058', '__ci_last_regenerate|i:1671203058;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe150fa045a4832b1a090a83520b0dd53f9426f', '181.176.107.81', '1675778064', '__ci_last_regenerate|i:1675777867;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675627408\";last_ip|s:14:\"181.176.122.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fee7cdd27fac2e70a526f8f766e4e990329b48a', '186.1.135.132', '1615497245', '__ci_last_regenerate|i:1615496939;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615479965\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff9aa5634a55afb3cde4e6a74a7cdfccea6479d', '45.177.196.194', '1670876551', '__ci_last_regenerate|i:1670876447;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1654473983\";last_ip|s:10:\"38.25.7.99\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ffecb8bf1327750429c15b9478eaa84f2c55283', '186.1.135.138', '1613053216', '__ci_last_regenerate|i:1613052889;local|s:1:\"1\";listaVenta|i:1448;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70107c34482199c6c880be4c9374ec45584bb08e', '190.237.172.109', '1615119964', '__ci_last_regenerate|i:1615119665;local|s:1:\"1\";listaVenta|i:891;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7021fd3d5d5d86e12245b2d5f700c4e6f728666c', '167.248.133.191', '1682006073', '__ci_last_regenerate|i:1682006073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7024634446f68a158a8b6797e3117b7416293b55', '148.102.26.11', '1619453084', '__ci_last_regenerate|i:1619453084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70433d8b73c6a851b89bcaff1ec3ff463cdad0e4', '143.198.18.164', '1667859967', '__ci_last_regenerate|i:1667859967;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706de54364e5ec0ce29cd1cd37dbc253e5a6abc2', '186.1.135.130', '1614346087', '__ci_last_regenerate|i:1614345959;local|s:1:\"1\";listaVenta|i:232;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614290424\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706e84f092d4344f173b01fad5416016423674ae', '205.210.31.57', '1676150408', '__ci_last_regenerate|i:1676150408;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708adfdc60b3cdee7ba5429470e1e41fc7d7a851', '45.66.230.130', '1685221934', '__ci_last_regenerate|i:1685221931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709dac6b9c0d0c7d8eec17f1cddde342480e4e8c', '44.199.235.222', '1668961941', '__ci_last_regenerate|i:1668961922;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70a0e55eca0ba9b5821075184d8e182a22cedabd', '144.91.106.14', '1680462557', '__ci_last_regenerate|i:1680462557;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70a204538e4ce953ba53d3d0f6c8aa7b6658c139', '179.6.222.7', '1616006384', '__ci_last_regenerate|i:1616006323;local|s:1:\"1\";listaVenta|i:271;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616004221\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70ba5fb389657d209c2c0dc927c15cf935fcf2b6', '37.220.93.104', '1686488144', '__ci_last_regenerate|i:1686488144;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70c2a699b6f2c3f4fe972f6c743860f6eb5ea3ad', '205.210.31.136', '1697828935', '__ci_last_regenerate|i:1697828935;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70d6ab62c072a4204681d8778038225d8960785d', '62.210.5.253', '1627554895', '__ci_last_regenerate|i:1627554895;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e02f0f8d8b8a46fcbe66acdff969daee31893e', '3.72.94.148', '1654720938', '__ci_last_regenerate|i:1654720938;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e1c9d7bc603544ec066de0dae794d9a9d9309a', '71.6.134.235', '1690777699', '__ci_last_regenerate|i:1690777699;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70eb24619c9b9b3fc84344fe61e5aecd8f33cab6', '190.232.180.131', '1612539295', '__ci_last_regenerate|i:1612539294;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612363876\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70ef623d9a072334c4de812d0f9f78403903e524', '186.1.135.76', '1612364667', '__ci_last_regenerate|i:1612364655;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612358282\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f90bf275f978035608000000c1f39e9a50a738', '207.148.127.89', '1694362911', '__ci_last_regenerate|i:1694362911;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7102eb9fa2d1dd9e3e92b86ad8190a64bed8dcd2', '206.189.28.149', '1676522771', '__ci_last_regenerate|i:1676522771;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('711ccaa74fcb6bb142692fb59fb09a260ccb9bf7', '198.235.24.31', '1655825291', '__ci_last_regenerate|i:1655825291;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('712c0b4a220bac11248d8cfa90c858c020808eb3', '161.132.234.14', '1625592063', '__ci_last_regenerate|i:1625591680;local|s:1:\"1\";listaVenta|i:1;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625199290\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71402218923d09bd0113b2e3729fe00f20718141', '198.235.24.16', '1690638273', '__ci_last_regenerate|i:1690638273;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71667e0574cb8e1d3fa76ea6f60559a3de48e6b9', '198.235.24.129', '1656050121', '__ci_last_regenerate|i:1656050121;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716aa816b0ef3aacf85ca3e60dbc141067f44423', '148.102.23.16', '1618326063', '__ci_last_regenerate|i:1618325687;local|s:1:\"1\";listaVenta|i:297;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618254819\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716f3aee2cd410da72160713fb911d5ff89e4146', '34.86.35.32', '1623096009', '__ci_last_regenerate|i:1623096009;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7171052caa1f5b7ddbf72eb6cec8d842133a43fa', '198.235.24.56', '1666008518', '__ci_last_regenerate|i:1666008518;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71816e21d94f52ec3ae23e60ff1c7974406a21e0', '199.195.250.129', '1675189724', '__ci_last_regenerate|i:1675189724;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718e55d01072d47a92ed71586d06a0c05357b90c', '201.230.205.217', '1671072247', '__ci_last_regenerate|i:1671072247;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670989365\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('719bbff41f2d9f71f02b5bfd053e5a6113c618a3', '175.24.232.97', '1623535994', '__ci_last_regenerate|i:1623535994;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71aa18683e71c8f363210ed0db93f4b5eee70fda', '205.210.31.159', '1659521537', '__ci_last_regenerate|i:1659521537;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d54834649ec99cb6741bf01f965ac431f9b771', '186.1.135.78', '1611860666', '__ci_last_regenerate|i:1611860387;local|s:1:\"1\";listaVenta|i:653;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71df2cf59bd587fc335304eed84fd7055774b2c9', '::1', '1598723899', '__ci_last_regenerate|i:1598723710;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598648446\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e150a3ac9c53a99f3e6e991c6ed78d3b34ec71', '186.1.135.143', '1615398462', '__ci_last_regenerate|i:1615398200;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e8c03f143d39d93894f800913c080bb79cc696', '34.77.162.11', '1624072275', '__ci_last_regenerate|i:1624072275;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71f3cc9db3ce1eee42d043b1df098120b88f282f', '188.165.87.105', '1654339918', '__ci_last_regenerate|i:1654339918;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71f91006b1ef55213b965804280215c0f7aa8673', '186.1.135.143', '1615416279', '__ci_last_regenerate|i:1615415857;local|s:1:\"1\";listaVenta|i:812;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615413018\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('720077e396264436c7ef4ea5128959469fb51532', '186.1.135.133', '1612195296', '__ci_last_regenerate|i:1612195295;local|s:1:\"1\";listaVenta|i:40;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612189952\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722d4e0a551ded7ef0bbce3be23004ff0bdd7b13', '36.99.136.134', '1682580273', '__ci_last_regenerate|i:1682580264;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7233867aa16cc7e9385aa8e28ba51f9b094e64ef', '3.249.222.56', '1673486868', '__ci_last_regenerate|i:1673486868;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7233cc625835dfe22ed9f68b4c2c367b97943216', '104.197.91.55', '1655642603', '__ci_last_regenerate|i:1655642603;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7241347c4a7d68351ac521ca31eb9a0b61522869', '167.94.138.119', '1654973510', '__ci_last_regenerate|i:1654973510;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7243883d5cd67f805b1f8a0a47b45e9186c68d01', '161.132.239.98', '1637768351', '__ci_last_regenerate|i:1637768330;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637591428\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72597c3288352cd6459fb09377f7d21c4a9fedfb', '186.1.135.143', '1615921082', '__ci_last_regenerate|i:1615920822;local|s:1:\"1\";listaVenta|i:324;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726c641a83a739dd8de1ae70677a8d86d8de551e', '13.232.96.15', '1618536638', '__ci_last_regenerate|i:1618536638;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7295a9d7e203103bc5d951aaf8ee329cbceaa30f', '186.1.135.141', '1617197145', '__ci_last_regenerate|i:1617197079;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729775bed160d984454c5760863756e764e8870d', '148.102.26.11', '1619444304', '__ci_last_regenerate|i:1619444304;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729c8348cc85b48656d1cc9ee19c7b4b91aa2641', '167.94.138.60', '1664895307', '__ci_last_regenerate|i:1664895307;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729c92d5a8db3b4b6cadf5222d72afa0', '45.177.196.194', '1670873994', '__ci_last_regenerate|i:1670873994;local|s:1:\"1\";listaVenta|i:0;error|s:64:\"<p>Error de inicio de sesión, por favor inténtelo de nuevo</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a65bfd999a643141667f6528a34bd844f22b32', '65.154.226.165', '1634018637', '__ci_last_regenerate|i:1634018629;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a79c99f25afd28aa10462f3f17c2b9c60a3455', '132.157.130.59', '1611851196', '__ci_last_regenerate|i:1611850896;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611779591\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:16:\"logo-empresa.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"6IcuiBi+sLGJmxVVNSGXQ9ncDFDa64me37pEMLywro/1DbHfz2V5+1/6JRSDp4t8xRi4oJyvuM78Tu77ez8W/g==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72aa168faec85199a96f8b4a24071717a2a3ea73', '205.210.31.183', '1664927434', '__ci_last_regenerate|i:1664927434;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c0baf1e1b41f7c785ea24e69d87773a26d46c4', '162.142.125.217', '1681575098', '__ci_last_regenerate|i:1681575098;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e7c035692e1e4482a7cb7badecca3a', '181.64.223.213', '1624915160', '__ci_last_regenerate|i:1624915160;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915119\";last_ip|s:14:\"181.64.223.213\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e8c3593f490187b51150fef08a660cd615ccf9', '186.1.135.134', '1615824321', '__ci_last_regenerate|i:1615823880;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72f1bebd9c9f43e333a4154a1bae13eff0197c09', '179.6.212.129', '1614717590', '__ci_last_regenerate|i:1614717554;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72f6ea1efe8200085ff76b51b153b1922e271e5c', '198.235.24.25', '1665208984', '__ci_last_regenerate|i:1665208983;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7309364272782902fbd534a8b85408054b777891', '195.211.77.140', '1654271352', '__ci_last_regenerate|i:1654271352;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('730d9ae43c6e6b24f5ca7e7186cc0b961ada77fe', '148.102.26.11', '1619199774', '__ci_last_regenerate|i:1619199772;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619197555\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7311d6b00df9927b168ee97a367218e2737603dc', '181.64.105.12', '1622233380', '__ci_last_regenerate|i:1622233206;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622211688\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:59:\"Forma de Pago no fue agregado con éxito, intente de nuevo.\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73245a469c90c0d73c891173d067f3def050fe3e', '18.231.193.218', '1621923650', '__ci_last_regenerate|i:1621923649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7325a8eb9252ec1a21cc522ca87c776f20241b70', '201.212.119.152', '1612902988', '__ci_last_regenerate|i:1612902899;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612902012\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7325d53c566d1fa24224ddd1f1f94dec12ffe729', '148.102.26.11', '1621263796', '__ci_last_regenerate|i:1621261307;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733746777a3d2c523cd512f37aadf042ab05da2e', '186.1.135.130', '1617047930', '__ci_last_regenerate|i:1617047751;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733c621e59ec2edebab1f715aaaa6c53e0c71715', '167.248.133.63', '1662391028', '__ci_last_regenerate|i:1662391028;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734dcc8adbe7aa5393af1826643260b6affda290', '186.1.135.130', '1617050608', '__ci_last_regenerate|i:1617050487;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('736cc1cf467819158ff2c5d40abc99ae2b07ae46', '186.1.135.141', '1612449459', '__ci_last_regenerate|i:1612449231;local|s:1:\"1\";listaVenta|i:221;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612442480\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('736e8de36073ea64df2305e72395a2d2de0d592b', '37.220.93.104', '1686436542', '__ci_last_regenerate|i:1686436541;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7372d1d6c2c37d2d775c0fcf63691a6b092acf87', '186.1.135.142', '1614627072', '__ci_last_regenerate|i:1614626998;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7380671f1f7e360d7aa94ea19bd9aac2ef6649a6', '34.71.198.159', '1656583013', '__ci_last_regenerate|i:1656583013;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738ca5bd6bbaeb1d412e5624593f203580f51989', '198.235.24.162', '1675576957', '__ci_last_regenerate|i:1675576956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7398f93327beeae7cd45f0904c0a63d2869f4dbf', '190.239.64.158', '1671315309', '__ci_last_regenerate|i:1671315294;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671314394\";last_ip|s:14:\"190.239.64.158\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73a12a7b6f343055a1df31d0478115f1e20c05d8', '190.237.172.109', '1615117061', '__ci_last_regenerate|i:1615116701;local|s:1:\"1\";listaVenta|i:198;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73a17fb808a1abb5e93e4d03ce70fc605f0afd48', '47.88.5.56', '1676562933', '__ci_last_regenerate|i:1676562933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73acbb86e416a7e665a85d5136a6d4d4ca5fce7e', '186.1.135.133', '1612210077', '__ci_last_regenerate|i:1612209786;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612202743\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73b107b4be43587345c62979ea60704b7bf5c051', '183.136.225.45', '1682162693', '__ci_last_regenerate|i:1682162693;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c8c3eaa499957e47499213e15eb0917d93543d', '148.102.26.11', '1619535952', '__ci_last_regenerate|i:1619535524;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619534195\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73cb5c350f7afbea53f71115dc995e2af74e389b', '205.185.127.165', '1682233654', '__ci_last_regenerate|i:1682233654;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73cef3db76306c42baf48c5649202a85fd754322', '179.6.222.7', '1617979012', '__ci_last_regenerate|i:1617978324;local|s:1:\"1\";listaVenta|i:779;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73cf53d54dc3e7f6fe9afbd7f7859afd413f09ac', '205.210.31.186', '1693661978', '__ci_last_regenerate|i:1693661978;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ef96ec8ed0b98498ad9021f934ae39263ecb8e', '198.235.24.158', '1673731167', '__ci_last_regenerate|i:1673731166;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f104955ec5a5b6f7e83010d8f4bc6a150f6072', '201.230.81.79', '1619632161', '__ci_last_regenerate|i:1619632117;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619537510\";last_ip|s:13:\"190.236.28.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73fb754dc89e4001d14b9e3f22d212a14d593430', '186.1.135.135', '1612558554', '__ci_last_regenerate|i:1612558553;local|s:1:\"1\";listaVenta|i:24;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";error|s:83:\"La caja no está abierta, por favor introduzca el valor de la caja para la apertura\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7404d09ce504289febe83a07be3cccff5b2606e6', '167.99.50.251', '1620143826', '__ci_last_regenerate|i:1620143826;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7426b78334c3011a112c06a856a37d3edc10a5b1', '167.248.133.190', '1685377347', '__ci_last_regenerate|i:1685377347;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('742c8bc132e6f34381685d527427217b24f28394', '35.209.133.94', '1629822104', '__ci_last_regenerate|i:1629822104;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('744160cda040868b04657b4d5db742ba67959611', '201.230.205.217', '1672894163', '__ci_last_regenerate|i:1672894150;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672888469\";last_ip|s:11:\"38.25.16.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7442de4a64d803da659a1758839fdaf3cd95f1b2', '146.190.157.49', '1689839622', '__ci_last_regenerate|i:1689839622;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7449a590d2fd9e7f05a09895426e0fffbaf7ee0b', '132.184.128.25', '1617493779', '__ci_last_regenerate|i:1617493772;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617483149\";last_ip|s:15:\"132.157.130.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74579f23ab83b1d552d7462534d05e98f12d8236', '34.238.194.206', '1686121844', '__ci_last_regenerate|i:1686121844;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7462bf07622652a7247bef6ab6045625de20f75f', '186.1.135.130', '1617044972', '__ci_last_regenerate|i:1617044698;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7480e9bd602f50709efef8253f39529e635f30d6', '186.1.135.134', '1612798782', '__ci_last_regenerate|i:1612798419;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748de4840e758d21d605e163c67ffc738de9e945', '220.200.162.252', '1623440119', '__ci_last_regenerate|i:1623440119;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748f4dd36e7e6663f82be7d4d10cfac6e95e937f', '161.132.234.14', '1623547003', '__ci_last_regenerate|i:1623546849;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623439246\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('749f1a72b524edbaa251bf3c9945e3de8e7aa99f', '181.176.108.197', '1672529478', '__ci_last_regenerate|i:1672529478;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74af84429c62b7b7f9668f033d15da32b919f77e', '3.123.232.25', '1652950478', '__ci_last_regenerate|i:1652950478;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74cf73f2248bc6d39c7322e88aa79ae504392c93', '190.235.46.177', '1671807524', '__ci_last_regenerate|i:1671807524;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74eb763dcf9488927588b0a19d1a1d8070a779d2', '198.235.24.131', '1697319850', '__ci_last_regenerate|i:1697319849;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f08261cd3372b542d0912a4510ba4b2ba7aca8', '51.254.49.106', '1669075957', '__ci_last_regenerate|i:1669075957;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f75ce78e018d2c594469f171ce0364f9aa3747', '167.94.146.53', '1690528469', '__ci_last_regenerate|i:1690528469;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74fc02783e805e0918fc99dccc7f22297e7eee9b', '142.54.177.2', '1634109268', '__ci_last_regenerate|i:1634109268;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7506212bbcbb060fac2256eb44cc20c86461d3d1', '186.1.135.129', '1618243655', '__ci_last_regenerate|i:1618243393;local|s:1:\"1\";listaVenta|i:226;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750f8c2d205302b7c72335e92444ca36839dd280', '186.1.135.134', '1614092291', '__ci_last_regenerate|i:1614092245;local|s:1:\"1\";listaVenta|i:223;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75136341bfb724874e71ea8e0c8c71a0ad980a63', '190.239.64.158', '1671314684', '__ci_last_regenerate|i:1671314390;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671289430\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751a6a30a0f26d0bb97b32be8382b4fa69417fa4', '161.35.138.32', '1614927634', '__ci_last_regenerate|i:1614927634;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7529fc7118c838c4e8acd93ef1302bf64a04b5f2', '186.1.135.157', '1616765986', '__ci_last_regenerate|i:1616765707;local|s:1:\"1\";listaVenta|i:90;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616711069\";last_ip|s:13:\"190.236.0.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752e2ed2a7302b30285a71eefc7fde7301e31ad6', '35.222.19.61', '1656088072', '__ci_last_regenerate|i:1656088072;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75363e308915be101e884fbc1b0cf7f2681e9540', '190.237.172.53', '1616095331', '__ci_last_regenerate|i:1616094958;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616082515\";last_ip|s:13:\"190.239.70.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75390ac37c9cf2d8cdf383dff36e5efd179f5688', '38.25.16.38', '1698728526', '__ci_last_regenerate|i:1698728521;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698727254\";last_ip|s:15:\"201.230.205.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";form_data|N;register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75499551b93584af164953817a1c1dbd106f8559', '186.1.135.129', '1617810726', '__ci_last_regenerate|i:1617810726;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754fe595ae53cfb02ac73a92ec8b48f3482f2eb7', '167.248.133.35', '1695592107', '__ci_last_regenerate|i:1695592107;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75510c720cff27bcbd4f422f242e69beda00ae02', '186.1.135.79', '1611953452', '__ci_last_regenerate|i:1611953452;local|s:1:\"1\";listaVenta|i:633;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('755516c2dda4df1a4826e9e7898b3255', '45.177.196.194', '1670943295', '__ci_last_regenerate|i:1670943295;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('755afac2c04f17074b023b3e414c062da77658d3', '148.102.26.11', '1618851897', '__ci_last_regenerate|i:1618851658;local|s:1:\"1\";listaVenta|i:299;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618839872\";last_ip|s:13:\"186.1.135.159\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:53:\"Se registro y envío con exito la guia de remision - \";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('755fe6384e53cd351a1459c82ba6e118445bb492', '38.25.16.18', '1672963710', '__ci_last_regenerate|i:1672963617;local|s:1:\"1\";listaVenta|i:80;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672936816\";last_ip|s:11:\"38.25.16.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75602b1532313212497dbd75fa9a63edf2a132a7', '186.1.135.142', '1612359221', '__ci_last_regenerate|i:1612358928;local|s:1:\"1\";listaVenta|i:71;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612299033\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7561c1982a383bbb88cf7900cc01dafc6ace7238', '18.231.9.193', '1622574618', '__ci_last_regenerate|i:1622574617;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756f834841113e60b37e2561605a5ae21750366b', '162.142.125.224', '1684308743', '__ci_last_regenerate|i:1684308743;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759467b91cfd731230febbbc5e62fb453ca0c814', '132.184.129.122', '1617416307', '__ci_last_regenerate|i:1617416014;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617398618\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";warning|s:64:\"No se encontraron comprobantes para enviar de la fecha indicada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b012e0257cbd9e88bf037d69784657bf9b8cc5', '37.220.93.104', '1686436541', '__ci_last_regenerate|i:1686436540;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ba1b759c3029c6355d9bb8545c0ae1871ef274', '198.235.24.168', '1678610202', '__ci_last_regenerate|i:1678610202;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75bd90b712d160d48e56926976250f3fccda0302', '198.235.24.140', '1692923520', '__ci_last_regenerate|i:1692923520;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75cb21bdf2738e9c66d6bae3d65785a036621f75', '198.235.24.149', '1694892550', '__ci_last_regenerate|i:1694892550;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d4d6e010856a0594ecd9ff2f2a75c295b63fff', '179.6.222.7', '1616005899', '__ci_last_regenerate|i:1616005577;local|s:1:\"1\";listaVenta|i:34;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616004221\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e3983ea7c552308ef03becb62dbd4971849c7d', '181.176.109.80', '1674854319', '__ci_last_regenerate|i:1674854295;local|s:1:\"1\";listaVenta|i:104;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674848384\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f167e1917510c64531adcf90092a47fc89bb0c', '170.64.190.167', '1683172216', '__ci_last_regenerate|i:1683172215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('760bcd19628f28ffcfa737dcc0343bc09871b550', '198.235.24.38', '1698672764', '__ci_last_regenerate|i:1698672764;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76109bb8393ead42d397acaac6cdeade1ee6a675', '198.235.24.169', '1698655958', '__ci_last_regenerate|i:1698655958;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7628b9df6fc1ea95118ab90b574d6de40f6ed92d', '186.1.135.132', '1615498590', '__ci_last_regenerate|i:1615498293;local|s:1:\"1\";listaVenta|i:518;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615479965\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7646f52be4e938ce0907d938152f0096cc00010a', '132.157.129.160', '1617729824', '__ci_last_regenerate|i:1617729694;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617719063\";last_ip|s:15:\"132.157.129.160\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76561c84c24c6896071ca26cd4ae6b89c2ce5df6', '205.210.31.177', '1677977818', '__ci_last_regenerate|i:1677977817;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765ce91dbf21c491f59b65600a21874c', '45.177.196.194', '1670943293', '__ci_last_regenerate|i:1670943293;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670905222\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76656efe1996b884dd4fe01fedb9f82f872d8319', '181.176.117.184', '1672410882', '__ci_last_regenerate|i:1672410882;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('766ea079e707ce4ef7c88d34f734e6bca4cb0a65', '186.1.135.136', '1617912374', '__ci_last_regenerate|i:1617912058;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617908137\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7672ea2665213ec4a3ee7a07a21890044ce78c67', '186.1.135.135', '1612560856', '__ci_last_regenerate|i:1612560486;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612556109\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('768add4c6fe83e5d60a479e23d436bdd7ad21c64', '186.1.135.134', '1614093768', '__ci_last_regenerate|i:1614093635;local|s:1:\"1\";listaVenta|i:434;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7692319449d602b91e2ebcdaef865a3c62015dc4', '148.102.23.16', '1618943077', '__ci_last_regenerate|i:1618942780;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618854951\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7692a31bdab00958f7df449544511e55d0dcb26e', '190.232.180.131', '1613059706', '__ci_last_regenerate|i:1613059696;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612903184\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76974955164c7b641d373968fd6b236a92526750', '190.237.172.53', '1616097733', '__ci_last_regenerate|i:1616097704;local|s:1:\"1\";listaVenta|i:271;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76a23ef0c73642ff6a5dc94cadf36d813415c0f8', '207.148.127.89', '1694512014', '__ci_last_regenerate|i:1694512014;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76cd3de98d3cb103d16e822578d7bd62988aa525', '205.210.31.237', '1698717375', '__ci_last_regenerate|i:1698717375;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76d11d73084d24c49830733bcfe39f588ee53b1e', '205.210.31.181', '1694133407', '__ci_last_regenerate|i:1694133407;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ddf2a8c71d848de2f2fdd0dd3c5fae189ee2be', '186.1.135.136', '1617913233', '__ci_last_regenerate|i:1617912986;local|s:1:\"1\";listaVenta|i:198;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617908137\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76f4345ffbe94229243917f5440d33e0aaf2dfa2', '186.1.135.131', '1617642585', '__ci_last_regenerate|i:1617642584;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76fd45941a36cc93e2ce78a921d6185b8b696534', '101.68.211.2', '1671558093', '__ci_last_regenerate|i:1671558092;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7713abe01e621ae8598fb5ff1bb505ba54eb2fde', '181.64.105.12', '1622212292', '__ci_last_regenerate|i:1622212050;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622210824\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77159fff9e92e0ad1d960c329dc2567362ae4243', '148.102.26.11', '1621272819', '__ci_last_regenerate|i:1621272819;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7718aa1a3b912074f42cf91c4dbac254f6941218', '36.99.136.142', '1690776336', '__ci_last_regenerate|i:1690776336;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('771fa4d981b984b5f500f2719a4d78e7ffa957fe', '121.5.226.36', '1618738208', '__ci_last_regenerate|i:1618738208;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773246a89188d1347f5790126e71e93af630a378', '37.220.93.104', '1686488189', '__ci_last_regenerate|i:1686488189;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773c97ab566e7d148cf048c071c39e5fb602efaa', '45.55.128.231', '1671074872', '__ci_last_regenerate|i:1671074872;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774d452ca55cb2987f84789953aaa7f34d58e084', '148.102.26.11', '1620233887', '__ci_last_regenerate|i:1620233887;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7762fd5f5c354c67d4fc95972b7b5dd09cd3bb4b', '161.132.239.98', '1635800235', '__ci_last_regenerate|i:1635800126;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1635263137\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777f2453b94683e954f06c931549961adaf1918c', '34.96.130.7', '1624355211', '__ci_last_regenerate|i:1624355211;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77955d4fe2047b873d313ecf9416158552163a62', '190.216.191.102', '1613582082', '__ci_last_regenerate|i:1613582080;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7796fd7dd07d32163bcc6f77a3950bf18bb9420a', '190.237.172.147', '1614775966', '__ci_last_regenerate|i:1614775966;local|s:1:\"1\";listaVenta|i:886;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a18c2dd896dbf606f4070fc751431e6b6233be', '181.67.2.242', '1687993294', '__ci_last_regenerate|i:1687993291;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a36c8f041e808a33c71871fb2a58705dc7e015', '34.86.35.4', '1623560611', '__ci_last_regenerate|i:1623560611;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77bf2a6debce05ca838ebcbb42b56ea6db196203', '205.210.31.10', '1697881576', '__ci_last_regenerate|i:1697881576;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c4fd8df0b4fab17d6199cc4ac15be801363aa6', '148.102.26.11', '1621457620', '__ci_last_regenerate|i:1621457620;local|s:1:\"1\";listaVenta|i:158;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621438505\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c758c67ef3d7facd32c0855b7b6c8f411ec3df', '195.74.76.198', '1676519414', '__ci_last_regenerate|i:1676519414;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d2f398a06b5da0fd28fbea14579b3f881d5f4b', '186.1.135.66', '1616433426', '__ci_last_regenerate|i:1616433133;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616423078\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d45cb8b4b28db77df8de4d869c12bbff895931', '181.67.2.234', '1688697890', '__ci_last_regenerate|i:1688697615;local|s:1:\"1\";listaVenta|i:32;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688609147\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d8db786401a931b7b188d9ddd53164235c1cb5', '167.94.138.60', '1664895308', '__ci_last_regenerate|i:1664895308;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d9422b77fdc05f2cae69ff73a4a9c8a9385013', '186.1.135.138', '1613055768', '__ci_last_regenerate|i:1613055765;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000280\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77dd05c696b40de9d46ccf7bd80979733cd6b990', '190.237.30.46', '1622159606', '__ci_last_regenerate|i:1622159595;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622158503\";last_ip|s:13:\"190.237.30.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e54bfb0049d0dbac094d8afbf0ca58a859c796', '198.235.24.148', '1659409424', '__ci_last_regenerate|i:1659409424;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ea337bd23609867c1157d54ba99428f3f302a0', '201.230.205.165', '1698468957', '__ci_last_regenerate|i:1698468877;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698444587\";last_ip|s:10:\"179.6.1.37\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ee0db6b5a64ae4156bc862f2d8e768521d5169', '181.67.2.242', '1688001739', '__ci_last_regenerate|i:1688001739;local|s:1:\"1\";listaVenta|i:2210;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968167\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7804273faeececdef3200e0fb460ad6ba62f31f1', '59.11.214.75', '1695125806', '__ci_last_regenerate|i:1695125805;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('780ccb8b7cf196627ab16633606a2c4ab5a76b69', '183.136.225.46', '1684205596', '__ci_last_regenerate|i:1684205596;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7811b697355a9f7361b171c648cab82a7407a770', '92.118.160.13', '1628366759', '__ci_last_regenerate|i:1628366759;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78207c879a6257a87cf6dfc9d1a647d7d2c1e6d0', '18.228.204.175', '1622477724', '__ci_last_regenerate|i:1622477724;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7828b651e2611d1a4f37e043cc0adf22a4087c0c', '167.94.138.52', '1684040131', '__ci_last_regenerate|i:1684040131;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782943ddb3b357e90911f39e5531211f949d7875', '183.136.225.45', '1692250240', '__ci_last_regenerate|i:1692250240;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782e17472702ecdca7c49f5252cc5df8da36fbe7', '167.248.133.186', '1696553298', '__ci_last_regenerate|i:1696553298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783b4f5f73edd081f8f145526334f772162bcab2', '167.248.133.117', '1668055826', '__ci_last_regenerate|i:1668055826;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784ca187d2f56b57c877e6cb256d35a0770298d8', '186.1.135.71', '1613684058', '__ci_last_regenerate|i:1613684058;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('786cd2b4a65d261c8a1cc15d86af13ba', '45.177.196.194', '1670873986', '__ci_last_regenerate|i:1670873986;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7880167cce70cb214e9690ebecd1c6a7f101ea88', '101.68.211.2', '1692181493', '__ci_last_regenerate|i:1692181493;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78838d9de3b627c7cbbda43ae149365627c89e9c', '132.191.2.144', '1616685666', '__ci_last_regenerate|i:1616685090;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616618907\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('788ef42917a63f5abb784fcd3e6735f9fb2ef3ec', '162.142.125.215', '1691398523', '__ci_last_regenerate|i:1691398523;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('788fa65378b602ce26d68c37b36b434394aec991', '190.43.38.234', '1620242112', '__ci_last_regenerate|i:1620242111;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a6d4c91507ebe66da64701d32413e9b407282d', '183.136.225.46', '1682310725', '__ci_last_regenerate|i:1682310725;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a99a014b5969167c64208f5923782b51c273f3', '15.228.120.19', '1621764821', '__ci_last_regenerate|i:1621764821;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b0b573557b66f8106eda55f787ef7fa5077409', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c99ae5fed0525cee958451b5f48ab81997b508', '205.210.31.42', '1684664377', '__ci_last_regenerate|i:1684664377;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d2542259182e122865fbb216922d7e66a2103c', '148.102.26.11', '1619198795', '__ci_last_regenerate|i:1619198505;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619197555\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000409\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d7f401ec37f96ca62ac966973518fa5eac50e1', '190.43.38.149', '1672298697', '__ci_last_regenerate|i:1672298384;local|s:1:\"1\";listaVenta|i:8;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672284624\";last_ip|s:13:\"190.43.38.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d9d1b88ed0283f8e1adf8f3300d1daf2007b59', '190.239.238.200', '1619901009', '__ci_last_regenerate|i:1619900998;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619823457\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ee2e4fff11543a52966bb51b5ec644a3fa1217', '18.184.155.204', '1620365504', '__ci_last_regenerate|i:1620365504;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ee3cb505ee6c9aac8776fbd3ec0df27d3c1336', '186.1.135.138', '1613055635', '__ci_last_regenerate|i:1613055451;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791325ced8d4cea946d55ce1f674a7d51eae4802', '161.35.163.202', '1689840288', '__ci_last_regenerate|i:1689840288;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7918c644c87181c254497064e44596013e2b1b43', '205.210.31.163', '1669354847', '__ci_last_regenerate|i:1669354847;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791f84911a787f50d2e4616caac7103c3d46433e', '198.235.24.152', '1663611251', '__ci_last_regenerate|i:1663611251;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('795a0714b8b868d2d8f6eeb0c122394a0204d1e6', '167.248.133.62', '1666144678', '__ci_last_regenerate|i:1666144678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79602181207ea028d0e765e141d0ff370e753aa7', '139.155.16.233', '1615018487', '__ci_last_regenerate|i:1615018487;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('796f91cf5220b3bd6117038763aedc72dde770f8', '167.94.138.44', '1654047820', '__ci_last_regenerate|i:1654047820;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797f45714f18bc2ceb29ac3cb29b93c292c96d44', '51.15.195.246', '1676650593', '__ci_last_regenerate|i:1676650593;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798bcb3e97656cbce68070eb0f0e33cd45efe4af', '159.223.68.191', '1689801912', '__ci_last_regenerate|i:1689801912;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79904cf25f0165945bb4f76e438c72c48f2fdc16', '205.210.31.52', '1695437972', '__ci_last_regenerate|i:1695437972;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7996782029e4aa71b56f1f4702f39633fbe2def6', '62.171.177.111', '1663983625', '__ci_last_regenerate|i:1663983625;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79994948b1a0081e0819fdee563c4b68965db334', '148.102.23.16', '1618335699', '__ci_last_regenerate|i:1618335604;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618335487\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a5c136ca957292817b56940ef633723efc3e9e', '186.1.135.147', '1613576259', '__ci_last_regenerate|i:1613576257;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613510784\";last_ip|s:12:\"186.1.135.70\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d7b035e6328c9ab66a72cf546c14e71847edcc', '92.118.160.13', '1635590832', '__ci_last_regenerate|i:1635590832;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79df75c16bda11dc3badaeba9726c91a51a6ab5e', '186.1.135.134', '1612816858', '__ci_last_regenerate|i:1612816790;local|s:1:\"1\";listaVenta|i:241;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612812992\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e2a2b4b164a10844b3cca40111286e5e1552cb', '41.207.30.11', '1653840725', '__ci_last_regenerate|i:1653840725;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79f21d351b6cf4b04c95b7e0678099809e177681', '45.225.216.152', '1624918416', '__ci_last_regenerate|i:1624918145;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915364\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79f7f72fd1d38909098c646a1a2690099282a643', '205.210.31.25', '1663550326', '__ci_last_regenerate|i:1663550326;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a01ce118fbf3a609dc33c8996d0d3373e9905df', '148.102.26.11', '1620053213', '__ci_last_regenerate|i:1620053191;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619812780\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a07d40eb3408def1f057f87d060f731474e3e6b', '162.142.125.10', '1656958467', '__ci_last_regenerate|i:1656958467;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a084365e323edd05a1cf5c39087f7121493a0c3', '186.1.135.79', '1611871051', '__ci_last_regenerate|i:1611870735;local|s:1:\"1\";listaVenta|i:1948;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0ecec55053bcea0ae3456c5062f9775215dd70', '186.1.135.130', '1614373976', '__ci_last_regenerate|i:1614373869;local|s:1:\"1\";listaVenta|i:36;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614366225\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a1150e5869378ac4006641afe455449fbdb10f8', '38.25.16.184', '1698958500', '__ci_last_regenerate|i:1698958227;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2d1dba451791e19ff3ceb374a6366d05bdb263', '186.1.135.141', '1617199771', '__ci_last_regenerate|i:1617199124;local|s:1:\"1\";listaVenta|i:238;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3550882e3fdf71aaec2ae98adcb76155c374a8', '148.102.23.16', '1618344811', '__ci_last_regenerate|i:1618344810;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618335606\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3ac6cbb821a5d77a3c529376907e95b0fbe42f', '186.1.135.134', '1614115891', '__ci_last_regenerate|i:1614115584;local|s:1:\"1\";listaVenta|i:248;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614094323\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4ab72ee1494375333402d41be2c3bbc4a72cd0', '186.1.135.142', '1614627958', '__ci_last_regenerate|i:1614627958;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4bc4864a3c1f74b1a83cd777a5f6612927b167', '205.210.31.12', '1698455085', '__ci_last_regenerate|i:1698455085;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5383b38c80481e26b9b86ae143336ba5f7e53d', '92.118.160.37', '1635613398', '__ci_last_regenerate|i:1635613398;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5cfb44ace9d590b699b4866dbb0ec7', '161.132.234.14', '1624915057', '__ci_last_regenerate|i:1624915057;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624914792\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a640f2b0d042080cb3c6e24cf41626cc707a2cb', '198.235.24.155', '1659461614', '__ci_last_regenerate|i:1659461613;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a81d1706d456d6b6870839ce41f2a8846098999', '186.1.135.143', '1615921814', '__ci_last_regenerate|i:1615921541;local|s:1:\"1\";listaVenta|i:558;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8a9d7f5f7b1b08be2767b14014943d9c261368', '51.254.49.102', '1654340807', '__ci_last_regenerate|i:1654340807;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a92c938c89e00ad0f2909532757404d025fec1e', '205.210.31.149', '1691266351', '__ci_last_regenerate|i:1691266351;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa742d52e84d743f25a6e1bcbf4bd4d3858fa66', '183.136.225.44', '1677853380', '__ci_last_regenerate|i:1677853380;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab1eea0b74cb0e2f802e3609d6cc539a385d0a7', '179.6.212.129', '1615166060', '__ci_last_regenerate|i:1615166012;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615115603\";last_ip|s:15:\"190.237.172.109\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abe2ed7d323cb15c8ffa67d621191be9e1813ba', '18.219.38.43', '1698013924', '__ci_last_regenerate|i:1698013924;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abf09a29f9f57cb0c9782a4a33b200f9209f100', '::1', '1598345217', '__ci_last_regenerate|i:1598345217;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598321184\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad2fc99dd5728628840b2688cd852b043ecf137', '179.6.212.129', '1614870786', '__ci_last_regenerate|i:1614870530;local|s:1:\"1\";listaVenta|i:174;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614802434\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad43058ffecd58a6fb59ec7cb51dded295b34f0', '195.74.76.198', '1676519415', '__ci_last_regenerate|i:1676519415;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad899b0e6fa237fbe676a83bbfce2da974bf6b5', '23.97.205.210', '1682616971', '__ci_last_regenerate|i:1682616971;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad8f78131522b8107cc503796a62142766d6eb8', '185.225.74.198', '1682097186', '__ci_last_regenerate|i:1682097186;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae59fc1795b480ab6573fa4ac10df2c9be9184d', '167.248.133.61', '1653073567', '__ci_last_regenerate|i:1653073567;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b009ee7f45171f3970dfc7e29d5705d311460f6', '186.1.135.66', '1616445512', '__ci_last_regenerate|i:1616445183;local|s:1:\"1\";listaVenta|i:399;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1a0372e5103c040be7ef2368f35c91e602dafc', '45.177.196.194', '1681414627', '__ci_last_regenerate|i:1681414626;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1df098f66fb3175136722c15fa0005cd264bf4', '167.248.133.127', '1683148355', '__ci_last_regenerate|i:1683148355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b20c08d57811cad75b18c380f198679f64dbab2', '181.176.98.140', '1672844718', '__ci_last_regenerate|i:1672844718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b24d998550896fb7a715e18fac59bbf5c8dcbf3', '186.1.135.66', '1616419821', '__ci_last_regenerate|i:1616419541;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616175755\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b25a06ea3cf8e4285184495f8d52df46dbe26c6', '132.184.128.122', '1611864776', '__ci_last_regenerate|i:1611864776;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611854258\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b316710a1f4cfe6301e3e0a9e6cf24d90d58f13', '181.176.109.242', '1676555914', '__ci_last_regenerate|i:1676555914;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b39a7dddb6164a645d47323d9f9542a9dc3c686', '190.237.172.53', '1616178197', '__ci_last_regenerate|i:1616177892;local|s:1:\"1\";listaVenta|i:373;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616166389\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b40322c6e1ee8a7eb40cfc5e27419f59e63659f', '186.141.135.236', '1623159614', '__ci_last_regenerate|i:1623159594;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623159208\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b451193106048033ade411e51bb5fdd135856e7', '209.17.97.34', '1611834238', '__ci_last_regenerate|i:1611834238;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b45297f80a586a05659d484ad85996ac7a08ebd', '186.1.135.138', '1613064892', '__ci_last_regenerate|i:1613064603;local|s:1:\"1\";listaVenta|i:2994;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b493c80957947cc20d0a96657ccf4fd89a214ae', '139.155.54.119', '1623406680', '__ci_last_regenerate|i:1623406680;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5e7ff3d8db21959d83537d829c46011fe7ad63', '179.6.222.7', '1617976901', '__ci_last_regenerate|i:1617976653;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b697373d39372afbafe554789bb1faf485c485c', '79.125.63.45', '1685884675', '__ci_last_regenerate|i:1685884675;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b69b42cb51f581a8cf2f6f0c7c6f7846a6a2129', '167.248.133.62', '1656868339', '__ci_last_regenerate|i:1656868339;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7b16ea15e689bdaa700c680388f791f6d4af31', '186.1.135.134', '1612799403', '__ci_last_regenerate|i:1612799125;local|s:1:\"1\";listaVenta|i:338;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b8efa355a0c43589103fd2c84c1ee2dd18f0fe2', '205.210.31.3', '1673107058', '__ci_last_regenerate|i:1673107058;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b9483b8c7dea47204c0060ffb9bc9c099610b8f', '186.1.135.131', '1617657069', '__ci_last_regenerate|i:1617656805;local|s:1:\"1\";listaVenta|i:301;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617644291\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba877160849f403af9c04037f3a125656be048a', '192.175.111.241', '1690860627', '__ci_last_regenerate|i:1690860627;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bbfc9882ea0deede0e8895f87f05066c28a5e03', '132.191.2.181', '1621451680', '__ci_last_regenerate|i:1621451661;local|s:1:\"1\";listaVenta|i:158;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621438505\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd07c8df43cfcb1fb4290575a69145c3b2a09c3', '186.1.135.130', '1617051554', '__ci_last_regenerate|i:1617051554;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd13a6757ffb18bcbf349872ea641db6b52e69f', '186.1.135.70', '1613512246', '__ci_last_regenerate|i:1613512246;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd46d545bbb22f38a092c2152df115ce7c9bb9c', '34.86.35.21', '1634707718', '__ci_last_regenerate|i:1634707718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf02fa346dcc2181f962170cdb0ca3c488eff62', '179.6.212.129', '1612990708', '__ci_last_regenerate|i:1612990449;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612911590\";last_ip|s:13:\"186.1.135.158\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf225db2c00dffabcba94bb38c9a791', '18.231.134.207', '1622146051', '__ci_last_regenerate|i:1622146051;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c096930988181f0696de7ed1140b7f54121a69a', '34.86.35.26', '1621916462', '__ci_last_regenerate|i:1621916462;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0ec6df50857a31106519d44dd03aeb45f894e0', '::1', '1598606892', '__ci_last_regenerate|i:1598606761;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c183fb8db3fa54fa28b3c82993ef3efce0f462b', '3.249.45.185', '1683794791', '__ci_last_regenerate|i:1683794791;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c240feb5bdbbb42cd9bd4cd70514ff0251e7867', '190.236.31.249', '1613582163', '__ci_last_regenerate|i:1613582080;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1613531255\";last_ip|s:14:\"132.184.128.61\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c242b9cc6e43eeccf536c9e6ac342fb26cf90eb', '167.94.138.62', '1657218361', '__ci_last_regenerate|i:1657218361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2b96187bcffdbae56488cb85a40f053e65f913', '186.1.135.153', '1618406642', '__ci_last_regenerate|i:1618406642;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3d3f89abc221739eb34f212ed7e6a8', '201.230.81.164', '1622131759', '__ci_last_regenerate|i:1622131759;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3f2de577626084cd85d1d9a91732ce3f23f49c', '101.68.211.2', '1679505706', '__ci_last_regenerate|i:1679505706;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5a5782ea7a7db150e3680f4944fdf96d1ba25c', '54.176.188.51', '1618949718', '__ci_last_regenerate|i:1618949718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5ec1e17e0bccb349b3558c6c627376135c7aec', '38.25.16.150', '1672371799', '__ci_last_regenerate|i:1672371754;local|s:1:\"1\";listaVenta|i:404;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672350030\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6079bf806054f9375e9733112f481fec678acc', '186.1.135.150', '1613156572', '__ci_last_regenerate|i:1613156560;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613136259\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c63f041ac853c0d87ce65aacc6219e3271b2cc4', '186.1.135.130', '1617052421', '__ci_last_regenerate|i:1617052421;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c702ca6b564f2fe0ce7d17aa8a89d5e1b151e05', '161.132.234.14', '1622651013', '__ci_last_regenerate|i:1622650726;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622579033\";last_ip|s:15:\"146.112.244.227\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c78e4a2813551a753e8a6957535ed9561bd663d', '186.1.135.135', '1612538776', '__ci_last_regenerate|i:1612538775;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7945fdb3080c5bc09483537da671bbd7dce744', '179.6.222.7', '1617747211', '__ci_last_regenerate|i:1617746929;local|s:1:\"1\";listaVenta|i:700;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617738724\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7eda9209999a4f8b52752044563c56d268e423', '45.55.135.165', '1685756065', '__ci_last_regenerate|i:1685756065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8127a6783c1305420d6c943f786380c7580769', '34.243.140.62', '1683124571', '__ci_last_regenerate|i:1683124571;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8276791b05ff1f924bbcc324f97d598c087145', '205.210.31.33', '1697463814', '__ci_last_regenerate|i:1697463814;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8ef226569f35333a472da1397bedf2a38bce52', '186.1.135.79', '1616603077', '__ci_last_regenerate|i:1616603002;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616603027\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c903ef4e1a9d8b392b4db1bd7c76f587d26da83', '179.6.222.7', '1616081732', '__ci_last_regenerate|i:1616081667;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c93895cdfaff4e164f5721fd6b1de72481cf40d', '15.228.12.241', '1622315879', '__ci_last_regenerate|i:1622315879;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c9a2fbf3cd0ac2d6a8d8e54223260ff8b2141e3', '47.128.21.212', '1695125846', '__ci_last_regenerate|i:1695125846;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c9a865d68b3921a053647b3fed917027e16a441', '186.1.135.157', '1616766833', '__ci_last_regenerate|i:1616766388;local|s:1:\"1\";listaVenta|i:865;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616711069\";last_ip|s:13:\"190.236.0.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb8954ead2402fa665c66a7a97f11615a8a7929', '2.57.122.107', '1683851210', '__ci_last_regenerate|i:1683851210;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb90d3dd387ab13d33adb2cce36e422e6a31335', '205.210.31.177', '1683920211', '__ci_last_regenerate|i:1683920211;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb9930216a88ae3121c60197e8abd0f9bafc17e', '167.248.133.62', '1656868339', '__ci_last_regenerate|i:1656868339;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cbe205ec25a713903b0fcdda24a32008d82305e', '::1', '1598584507', '__ci_last_regenerate|i:1598584333;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cd9a3a2c7f776f493c8cc480a6299ba99568a83', '190.239.78.92', '1620667240', '__ci_last_regenerate|i:1620666956;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2509ec429a8c1c19c26633463752fb09d64a70', '92.118.160.1', '1634384185', '__ci_last_regenerate|i:1634384184;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d283c7acacb5f87c2b9f4ae31db24b076857f6c', '35.162.34.24', '1654293704', '__ci_last_regenerate|i:1654293703;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d449124d51167222d2c204a28c4d2db33c033b8', '38.25.7.251', '1652369100', '__ci_last_regenerate|i:1652369089;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d4703e9e2339bcc250a01a3877fed35ad2aa8b7', '186.1.135.143', '1615917924', '__ci_last_regenerate|i:1615915886;local|s:1:\"1\";listaVenta|i:306;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d4b5859b6b7d372169149c33921c632bd3de5a8', '38.25.16.150', '1672112799', '__ci_last_regenerate|i:1672112662;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671740108\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d6e827c56354759a48be62841b8a8f39eca4639', '190.232.180.131', '1611781979', '__ci_last_regenerate|i:1611781952;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611760323\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9d3efa22656ddd098a8c7f82513ef532e76872', '167.94.138.63', '1662562966', '__ci_last_regenerate|i:1662562966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9e0fb4ad5b912d8ad93d4fed1e7adbea47debf', '87.236.176.138', '1685138795', '__ci_last_regenerate|i:1685138795;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9f17cd9e1273ac04fd4d46d3f6bca31d6de1d7', '186.1.135.79', '1611937084', '__ci_last_regenerate|i:1611937038;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da1d2f94a970ef9e900471c41a0aa77133edaaa', '198.235.24.113', '1695485155', '__ci_last_regenerate|i:1695485155;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da42ce4a1a9ff4009ac0d6d943283262fb09edf', '205.210.31.20', '1655894459', '__ci_last_regenerate|i:1655894459;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da8748d3843db14a160cbed6c87f25d67977763', '148.102.26.11', '1619469496', '__ci_last_regenerate|i:1619469456;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619454235\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da95319645f80d2bf402e229d31c48bf6c3cdba', '2.57.122.115', '1653198675', '__ci_last_regenerate|i:1653198675;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dea5aa8b71c8f211591765ea023d642876b0bb7', '18.136.72.135', '1619191323', '__ci_last_regenerate|i:1619191323;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7deaf97c0bac26e94d05ee4c94ebcdb26f5bade2', '179.6.212.129', '1614692942', '__ci_last_regenerate|i:1614692803;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ded1424ce32f47fc08a7d6336112f90e047d1e0', '205.210.31.6', '1677867199', '__ci_last_regenerate|i:1677867199;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dfd4956a916e7f3deca6c843116db0dc48e5a0e', '201.240.25.180', '1654292551', '__ci_last_regenerate|i:1654292477;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1654292171\";last_ip|s:10:\"38.25.7.99\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e0012d03316d582d2118f29abc32d4ec4d4cfe4', '186.1.135.78', '1611865509', '__ci_last_regenerate|i:1611865508;local|s:1:\"1\";listaVenta|i:1590;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2425b69a912520db5036f6134ca226e23b927d', '15.222.24.190', '1623245690', '__ci_last_regenerate|i:1623245690;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e24de29691783b8007ef30d72e1180deff06198', '181.67.2.234', '1688696058', '__ci_last_regenerate|i:1688696054;local|s:1:\"1\";listaVenta|i:32;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688609147\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2b85c6f7db90820f63c4b6ed32c0ef4815f040', '34.247.39.116', '1693863226', '__ci_last_regenerate|i:1693863226;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e30af5cf25d967d6da00b8d7f7437b773439d13', '128.90.43.24', '1691954502', '__ci_last_regenerate|i:1691954502;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e379f3201c448a354a142e63e74bf45690c7350', '179.6.222.7', '1617975307', '__ci_last_regenerate|i:1617975307;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5c3ef38cedc496aeae58d5bcbae41aa3e5c1c8', '205.210.31.129', '1695328607', '__ci_last_regenerate|i:1695328607;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5f745cd5c2c4b32fc6f9b7912e43963e3dbdbd', '54.245.63.9', '1625864920', '__ci_last_regenerate|i:1625864920;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5fb5ae4cc6c6c5be026610fd3fac130f33a9b0', '186.1.135.138', '1613048559', '__ci_last_regenerate|i:1613048267;local|s:1:\"1\";listaVenta|i:355;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e64f717024656c75277aeb520a9bdf567e671a4', '3.123.129.244', '1674127608', '__ci_last_regenerate|i:1674127607;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7be8ce87a50392b3d30105f1953424b74d16ab', '34.172.144.130', '1676606045', '__ci_last_regenerate|i:1676606044;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e8f0aba4a00e9b45b1f40d7f7be649432a3bf19', '45.225.216.151', '1622500739', '__ci_last_regenerate|i:1622500478;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622233218\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:54:\"Almacén no fue agregado con éxito, intente de nuevo.\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e8f90c3649d86f88fbe29dcb76fdcaac6cb3f04', '186.1.135.137', '1614173238', '__ci_last_regenerate|i:1614173212;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614113393\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e99d4171f53dfcb71e937ac2e3096de6385bfc3', '144.86.173.146', '1629566601', '__ci_last_regenerate|i:1629566601;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee4d13fb160b6271fb3ca284b778053a07a1212', '188.165.87.107', '1669071649', '__ci_last_regenerate|i:1669071649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eec0566e1f7029fb33b818340957eaecfb0ad3a', '::1', '1598560818', '__ci_last_regenerate|i:1598560798;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598362856\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0c17f955f5178044bc961821f882397b5253db', '167.248.133.45', '1663426888', '__ci_last_regenerate|i:1663426888;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f11f2652bc4457909a5e64212e74316d0726076', '186.1.135.129', '1617816197', '__ci_last_regenerate|i:1617816197;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1d3e9d6850104e014e6fbf9d5582206e269b61', '45.177.196.194', '1674147943', '__ci_last_regenerate|i:1674147943;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1f4bd72da0fdbcf3c58f9d9d4a152f3c174a8c', '45.225.216.152', '1625196231', '__ci_last_regenerate|i:1625196218;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625150754\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f251bbb1b31b1e91a68ce377c7efb35e3dccb0e', '205.210.31.38', '1665851864', '__ci_last_regenerate|i:1665851864;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f495221e88643fcb6467070ffcc4f825c47e4df', '134.175.228.189', '1636156573', '__ci_last_regenerate|i:1636156573;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f56057b8bdd492337a402a28f32835da89d4331', '38.25.7.99', '1653075029', '__ci_last_regenerate|i:1653075029;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5ab59602cd836c83ca819dd808470a5fdd8e46', '148.102.26.11', '1619445148', '__ci_last_regenerate|i:1619444957;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f67b564af6e66587b2174691ebc31ea7d3f0030', '144.91.106.14', '1655994065', '__ci_last_regenerate|i:1655994065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f6d9aad6e64fe555e62f5ef69d03384f63821cf', '92.118.160.41', '1623445394', '__ci_last_regenerate|i:1623445394;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f9cf64c6b41b484e918115248e241f75e424d91', '15.228.93.76', '1622416304', '__ci_last_regenerate|i:1622416303;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7faebe532af2b14237fef49adde405c7e5252aee', '186.1.135.159', '1618842566', '__ci_last_regenerate|i:1618842273;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb0bd764ab309aa8d63ef0ed86c2ff500144210', '132.157.130.59', '1611855165', '__ci_last_regenerate|i:1611855165;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611851401\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb3c5b64fc2e171ed2476dc83c47c387d98792f', '2.57.122.115', '1653198674', '__ci_last_regenerate|i:1653198674;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb58860c2e889a9f7011a94caa5d3a23ca90063', '148.102.26.11', '1621005808', '__ci_last_regenerate|i:1621005518;local|s:1:\"1\";listaVenta|i:28;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621000549\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc99de7e40f8eee855e88ffc3cf59220d78551b', '188.166.247.165', '1661790684', '__ci_last_regenerate|i:1661790684;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fd6a1ce06b241c7ddcc6bc9332cf7fc61575d12', '205.210.31.30', '1663183181', '__ci_last_regenerate|i:1663183181;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fdee05b32defb18d037a55ac98fa5fb55c08289', '198.235.24.26', '1687064654', '__ci_last_regenerate|i:1687064654;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe9668cbeae63418b298b70a0b243d83a57c475', '190.43.38.234', '1619800043', '__ci_last_regenerate|i:1619799784;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619726865\";last_ip|s:13:\"181.64.93.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff7472adf21350bc9cb2111f08c0c1d5ec74c41', '190.239.68.82', '1671552331', '__ci_last_regenerate|i:1671547053;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671410780\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fff5f15dfdb1843b84550358cd043a4cd37edfe', '143.198.164.4', '1683559512', '__ci_last_regenerate|i:1683559512;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800c0c4f813fc5c0b11a497f5897ccfd26614803', '186.1.135.70', '1613510785', '__ci_last_regenerate|i:1613510756;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613493096\";last_ip|s:12:\"186.1.135.70\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8010b8c3a36d36e4986cba30ce47a88a2c0f228d', '186.1.135.136', '1617890834', '__ci_last_regenerate|i:1617890531;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617888160\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8026aea8704f643bbe2cdfe7926541565444da7b', '167.94.138.125', '1689087665', '__ci_last_regenerate|i:1689087665;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80270ca13ff0c4e2c42ca442e695acf2085ddd46', '148.102.26.11', '1621000793', '__ci_last_regenerate|i:1621000791;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620943276\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('804a7d3b93126953829349a0130e99238f8bf4a3', '201.230.205.196', '1698727856', '__ci_last_regenerate|i:1698727557;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698717606\";last_ip|s:15:\"201.230.205.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8057b119ec4329ca706f808832124b77adafbae1', '205.210.31.142', '1663439155', '__ci_last_regenerate|i:1663439155;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80597fac2a265af790a2aaaca0e5e523a8c197f7', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('808125ec3c76a3aaaa5ad382edcd5bdd8eff3e8a', '167.248.133.34', '1680085430', '__ci_last_regenerate|i:1680085430;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80867f109c7bc0dfb06ed586fc1818185727b325', '123.6.49.38', '1679611694', '__ci_last_regenerate|i:1679611694;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a3330796f4a70047474fbc665ac5c19f18fbd4', '186.1.135.137', '1614186226', '__ci_last_regenerate|i:1614186032;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614173235\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a5e7b91fd545eb4d4fb994394d20abfe6ad833', '190.237.172.147', '1614094500', '__ci_last_regenerate|i:1614094306;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614087014\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80c4d2a25158b3026e00c58a2e71f6ae8a3b2df5', '186.1.135.146', '1614011866', '__ci_last_regenerate|i:1614011453;local|s:1:\"1\";listaVenta|i:226;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614002229\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80eaa3429231a8b431141339b316a4bb6db228cc', '186.1.135.79', '1611945881', '__ci_last_regenerate|i:1611945352;local|s:1:\"1\";listaVenta|i:310;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81005eb6c5b9626e312917435dc1186d5a2943f0', '177.91.255.68', '1612798666', '__ci_last_regenerate|i:1612798666;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81238934fc8b8bca5cc61c2443276bb442b6ffaf', '101.68.211.2', '1677959042', '__ci_last_regenerate|i:1677959042;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81270ece6850fb3e2e344c96ab8d18b20002ab5f', '148.102.26.11', '1620236828', '__ci_last_regenerate|i:1620236826;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000429\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8132f736c8157cfefd9e865deb592a9583446fcb', '38.25.16.150', '1671252883', '__ci_last_regenerate|i:1671252875;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671252828\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8139aa8584c5c5a7093e6585a2c516ca6c092d4c', '161.132.238.121', '1629209715', '__ci_last_regenerate|i:1629209705;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1629209460\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('813c5f9f2e5194b07a97a2c47ab41983e0740508', '179.6.212.129', '1614715829', '__ci_last_regenerate|i:1614715533;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8147ba40d66479c9eeeb8919f4b5204dd2119624', '18.136.72.135', '1617883474', '__ci_last_regenerate|i:1617883474;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81583e8834e40c59e2c3d09b7e6adb8f', '181.67.2.242', '1687968124', '__ci_last_regenerate|i:1687968124;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('815ccfa296673910699f9ba2122787690cd0e6e4', '186.1.135.134', '1618599695', '__ci_last_regenerate|i:1618599318;local|s:1:\"1\";listaVenta|i:73;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618590832\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('815f557460fc4053bed159791e9f0a747bcc7d6c', '181.176.102.27', '1674569776', '__ci_last_regenerate|i:1674569642;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1673979727\";last_ip|s:15:\"181.176.103.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81673290c390d4ca3a2d393a2094c22e778293c1', '38.25.16.18', '1673624534', '__ci_last_regenerate|i:1673624533;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('816c81644305606545bdc234a46bad4c77812afa', '167.94.138.52', '1684040131', '__ci_last_regenerate|i:1684040131;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81935e610ebdd8cd2d857bf6a1e10a8f2713d4c1', '205.210.31.13', '1659568471', '__ci_last_regenerate|i:1659568471;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819d9728e985c12324e3c1ac177f464c4b997608', '183.136.225.44', '1690169639', '__ci_last_regenerate|i:1690169639;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b2a67b91b7e4396c1afcb6431217474874cd76', '161.132.234.14', '1632699551', '__ci_last_regenerate|i:1632699519;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1630424396\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";error|s:35:\"<strong>La acción falló!</strong>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b9019ddbb5c509f7723b93ef88579e1e5ee13f', '18.231.12.162', '1611475957', '__ci_last_regenerate|i:1611475956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d570b74c0d5ffa1234e8ffe695f6bbb2984303', '198.235.24.146', '1691305947', '__ci_last_regenerate|i:1691305947;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81dba99f756ea727fc78ec238375eb13ee4d9f68', '186.1.135.142', '1614619429', '__ci_last_regenerate|i:1614619164;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81dd9022f6f2fb11f328fc4f315f98963c0660ab', '148.102.23.16', '1617909161', '__ci_last_regenerate|i:1617908751;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617891179\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81def4073de5f341063bba767ce0d9da8360f27b', '92.118.160.41', '1635156633', '__ci_last_regenerate|i:1635156633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e5a2f79011150c42ea1932df58104110ef03bb', '190.239.78.92', '1620675904', '__ci_last_regenerate|i:1620675623;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('820e4bd7ac80136131dfa40952e3f63f36bb5711', '177.91.248.76', '1684866164', '__ci_last_regenerate|i:1684866164;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1684208345\";last_ip|s:14:\"190.237.34.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('820eb97ca3df7673f440a7397b1b732a4b1e0b64', '209.17.96.50', '1611571131', '__ci_last_regenerate|i:1611571131;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8229a3b45f0ed5f76ac42fc7c8d807108e2b0d08', '148.102.26.11', '1620060121', '__ci_last_regenerate|i:1620059721;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620052779\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822aece85997ea40c80e683eaf80b75cc21f1dd2', '87.236.176.105', '1675716931', '__ci_last_regenerate|i:1675716930;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82318c7236be10ecc2532492e7590a4ff6304f6a', '179.6.212.129', '1614699441', '__ci_last_regenerate|i:1614699280;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823d03f0d7a086ade8eb6452c3f0acb413895da1', '186.1.135.130', '1617037493', '__ci_last_regenerate|i:1617037226;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000347\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823f09814bc00b99ad5921dd0c0fbb92c755665e', '186.1.135.79', '1611939834', '__ci_last_regenerate|i:1611939834;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('824efcf88a09b23a35630c7529fd7f177b5b7130', '148.102.26.11', '1620223684', '__ci_last_regenerate|i:1620223659;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825463be2968f3168738962b1e51bbd3', '45.177.196.194', '1670873987', '__ci_last_regenerate|i:1670873987;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8256c391e72f53a397a9fb3c97882ca00e69c967', '132.157.130.59', '1611854339', '__ci_last_regenerate|i:1611854240;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611851401\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8258a71705861da7c32f794c5a0610961f27fbf6', '205.210.31.235', '1695991430', '__ci_last_regenerate|i:1695991430;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826e65960d5816429560e8b1ac29b3fae0155976', '205.210.31.142', '1659826965', '__ci_last_regenerate|i:1659826965;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828261b39a966a81f1807eeb392fbaedf902b756', '181.64.93.165', '1619726958', '__ci_last_regenerate|i:1619726844;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619717791\";last_ip|s:13:\"181.64.93.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8283d0c3e874c04d53f2923ce3c80c1f61f5cdf5', '18.203.100.44', '1672866934', '__ci_last_regenerate|i:1672866933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8296d635968c991e0c3011a4457960aa', '161.132.234.14', '1624915051', '__ci_last_regenerate|i:1624915051;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82974d4c4a09d5d279060246b13e69aeddb40ccc', '209.17.97.10', '1612027048', '__ci_last_regenerate|i:1612027048;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a8e72018f45966101d62fc213cd5df7df83ed3', '190.237.172.147', '1613903784', '__ci_last_regenerate|i:1613903492;local|s:1:\"1\";listaVenta|i:1041;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613742638\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ac8c8ce7e52384768bc0aca678619c9229f7ef', '186.1.135.134', '1612791404', '__ci_last_regenerate|i:1612791403;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b25b6c5369c408cfcd49514bb56bdbdbf91d71', '162.142.125.11', '1679097134', '__ci_last_regenerate|i:1679097134;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b7aaaaee5d6ee60dc55631532a5f3d9bb9713a', '186.1.135.129', '1617810262', '__ci_last_regenerate|i:1617810054;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82cc256d297f2de63da3e978bce91f3fa7361d24', '148.102.26.11', '1620235660', '__ci_last_regenerate|i:1620235100;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82cf792cfaa6f67b1cd0eb79a4174ec57c4443e5', '92.118.160.9', '1635166660', '__ci_last_regenerate|i:1635166660;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82e3e87137b4c1ac4be82a11e944a6c66c1311a6', '183.136.225.45', '1694000460', '__ci_last_regenerate|i:1694000460;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f4a252254be87f45a4f2b965cb1f4d9b20981c', '132.157.130.180', '1617483257', '__ci_last_regenerate|i:1617483120;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617415727\";last_ip|s:15:\"132.184.129.122\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f5795e8151bf359780e2b51d2911977572cef8', '148.102.26.11', '1619200153', '__ci_last_regenerate|i:1619199984;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619198960\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830785db3418e86c0c79e22a0edf1d030dd91d54', '138.197.78.80', '1660172463', '__ci_last_regenerate|i:1660172463;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8318dde669fc164ae5b3908cba085c6770646661', '161.132.234.14', '1623161093', '__ci_last_regenerate|i:1623160972;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623100618\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831a71b989f0414358f37a385b0344ff024a3b3f', '148.102.26.11', '1621463375', '__ci_last_regenerate|i:1621462972;local|s:1:\"1\";listaVenta|i:231;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621450974\";last_ip|s:13:\"132.191.2.181\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83243b7a89596f28b3706c72e0a4a95a', '181.64.223.213', '1624915161', '__ci_last_regenerate|i:1624915161;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('832673a0b5c5530f834ec96e290f7f77c92c2144', '2.57.122.60', '1664443002', '__ci_last_regenerate|i:1664443002;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('834ea582755013eb1efb0531d33a2e7738dbe1ce', '198.235.24.131', '1662748979', '__ci_last_regenerate|i:1662748979;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83669db7e589dc3229ff4380536ef9df44501688', '45.33.108.175', '1668919084', '__ci_last_regenerate|i:1668919084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836736d15e37106365c0e82b1333d824fdf6b495', '186.1.135.135', '1612529006', '__ci_last_regenerate|i:1612528828;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612474708\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836a0595cb8c74f67cfe845f07174ae928a8d47f', '162.142.125.7', '1669473263', '__ci_last_regenerate|i:1669473263;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('837b90794b4feca06cc73ee8b4a610300546baeb', '104.197.91.55', '1655642603', '__ci_last_regenerate|i:1655642603;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('838a90dead3df2749caeeaefaee1e8f68c787b9f', '181.64.223.213', '1624915363', '__ci_last_regenerate|i:1624915211;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915163\";last_ip|s:14:\"181.64.223.213\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83942b3be3f45b8f33de908dc56745cdd56e74af', '43.153.35.122', '1687189397', '__ci_last_regenerate|i:1687189397;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839d3adde4eabf931c324bf9bafa37c314ab76ca', '190.232.180.131', '1612903362', '__ci_last_regenerate|i:1612903085;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612895575\";last_ip|s:13:\"190.238.217.9\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839eb44348fdc749e6d84554508937b84ae183c5', '186.1.135.134', '1612812448', '__ci_last_regenerate|i:1612812440;local|s:1:\"1\";listaVenta|i:51;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612799621\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839f173f07689dfbd954d3fce1dc49f6374538e6', '186.1.135.79', '1611870650', '__ci_last_regenerate|i:1611870412;local|s:1:\"1\";listaVenta|i:1748;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83c6c8c73705f317d3f388781a32eda01fb56fdf', '103.108.229.61', '1680804645', '__ci_last_regenerate|i:1680804645;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d59262c5e51b9bd80e52c0992ab6510b8397e3', '161.132.234.14', '1625200492', '__ci_last_regenerate|i:1625200261;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625189910\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83dae098755ab626ee04700fac58e25b1102a602', '45.225.216.151', '1623417299', '__ci_last_regenerate|i:1623417297;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623332925\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e25d3b2af4bbe1827613aaef020ce0a96ced53', '54.207.215.246', '1621855222', '__ci_last_regenerate|i:1621855222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ec5f36b08518aba932ca7b8bcc2e3c2b5a65d2', '198.235.24.145', '1655144531', '__ci_last_regenerate|i:1655144531;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('841723f03a56b8c3f91ca6a578bc2f0876b16ed4', '198.235.24.148', '1655209597', '__ci_last_regenerate|i:1655209597;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('841f91c7a2e17efe0407df171d0797ed7712bc6c', '186.1.135.66', '1616437626', '__ci_last_regenerate|i:1616437373;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616433163\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8429184d4ee5e5e7253e3193583809647aab03a0', '38.25.16.184', '1698959066', '__ci_last_regenerate|i:1698958533;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8430b22f39ec13a541d2f23b981afd3df84070e0', '186.1.135.129', '1614695394', '__ci_last_regenerate|i:1614695024;local|s:1:\"1\";listaVenta|i:22;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614692817\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84314e6bf36488f42cb93150eb99f0836fd8df76', '186.1.135.131', '1617657483', '__ci_last_regenerate|i:1617657109;local|s:1:\"1\";listaVenta|i:341;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617644291\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84329b3c0ca5730d63d4b3978c74396840fe1faa', '190.239.78.92', '1620669017', '__ci_last_regenerate|i:1620668779;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84518e6dc86138b828d4b74f59ad5d0a', '161.132.234.14', '1624915058', '__ci_last_regenerate|i:1624915057;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('845a5f9cb2afe78f89c02807bc44d8846d718cbf', '190.236.0.145', '1617202778', '__ci_last_regenerate|i:1617202753;local|s:1:\"1\";listaVenta|i:791;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8470d0813a8f6d565042c0ecde12c647c74cce07', '205.210.31.26', '1655598416', '__ci_last_regenerate|i:1655598416;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84717380127f1d6350cb35687e9c416d343bd83c', '162.142.125.9', '1661532494', '__ci_last_regenerate|i:1661532494;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8472bd55459a7fa2dc35fb96741892da98e244b4', '201.230.81.164', '1622131914', '__ci_last_regenerate|i:1622131811;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622131773\";last_ip|s:14:\"201.230.81.164\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8473ee723c583d0b7b9606e9bee108eee2fcb1b1', '148.102.26.11', '1620054301', '__ci_last_regenerate|i:1620054281;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619812780\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848416f5888b9b843682c658ded22a3cdbb976a6', '132.157.129.160', '1617719203', '__ci_last_regenerate|i:1617719057;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617493216\";last_ip|s:14:\"132.184.128.25\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848c47ef813acc14ca5795c20fa5893ed62da6e9', '38.25.7.251', '1652383666', '__ci_last_regenerate|i:1652383659;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848da8671618b51d05718834b078a0520acb71ec', '169.150.201.10', '1680703325', '__ci_last_regenerate|i:1680703325;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84905df503ae2cadfe3c1d008b0a10c64f23518e', '186.1.135.78', '1611863085', '__ci_last_regenerate|i:1611861379;local|s:1:\"1\";listaVenta|i:932;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a3cc5e8755331cd41bd224eeabce465bfda507', '186.1.135.76', '1612380873', '__ci_last_regenerate|i:1612380873;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a64e15374a0c1faa87c8c2454361edba0e2dff', '148.102.26.11', '1620943599', '__ci_last_regenerate|i:1620943232;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620935983\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ab15d4e703b5c92dddd90d47a3b4d35d360a93', '148.102.26.11', '1621605627', '__ci_last_regenerate|i:1621605453;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ac63de2ad74d977c1aa6c5a178751f1c727f2e', '190.237.30.221', '1620658028', '__ci_last_regenerate|i:1620657068;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620399159\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ad5858a10b1294187a1b3de65d9f872f755887', '87.236.176.119', '1675340108', '__ci_last_regenerate|i:1675340107;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c04e328bbe4fd7e479b44b8de3251b931304b6', '198.235.24.140', '1679181272', '__ci_last_regenerate|i:1679181272;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c246fe3b69489047f5b2686a6c709056a547a8', '35.212.218.163', '1634030659', '__ci_last_regenerate|i:1634030659;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c2c5a6f2e736dc48b3665512028f7158bbb5f8', '148.102.23.16', '1617908359', '__ci_last_regenerate|i:1617908137;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617891179\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000388\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c3e601c145921860d740703d9fd46f2da5cc58', '167.94.146.53', '1690528468', '__ci_last_regenerate|i:1690528468;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c4f7b113e0593010c0c43b8da20a504ec41efe', '207.241.235.249', '1692543745', '__ci_last_regenerate|i:1692543745;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84dc0cc26be00436e9f6e9316baf81aa25f9a72d', '186.1.135.143', '1615919024', '__ci_last_regenerate|i:1615917925;local|s:1:\"1\";listaVenta|i:306;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84fa70aec9addb01dd79271975bdaeb4', '54.233.133.239', '1622146053', '__ci_last_regenerate|i:1622146053;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85062300bd73c83a2b2cf959807dcbba9161ca5c', '190.232.180.131', '1612301070', '__ci_last_regenerate|i:1612301060;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612297931\";last_ip|s:15:\"132.184.130.216\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8509aee233736d68591feb373e0364e7', '45.177.196.194', '1670943291', '__ci_last_regenerate|i:1670943291;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85256e0b6ed7156bca8d2f242f2a27f3735ddb94', '148.102.23.16', '1618944242', '__ci_last_regenerate|i:1618944116;local|s:1:\"1\";listaVenta|i:499;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618854951\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('852831f2b2190b7c274aa05191ad7dfe5c4273a2', '52.67.236.219', '1611133944', '__ci_last_regenerate|i:1611133944;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85341f7c93074c2b371e06858486c50736f945fd', '205.210.31.140', '1663424375', '__ci_last_regenerate|i:1663424375;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8548140b9171804a08814ae2e44963b565ecfc71', '52.212.60.94', '1688417221', '__ci_last_regenerate|i:1688417221;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854a626521bb194adb689e7772dac975d92776fa', '186.1.135.129', '1617806816', '__ci_last_regenerate|i:1617806567;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8556ed21196c818452608bf68525f54bf1b5f323', '87.236.176.86', '1680415485', '__ci_last_regenerate|i:1680415485;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('855e598a3f3d13bb0db014f5a35c703db6c52046', '190.232.180.131', '1611873808', '__ci_last_regenerate|i:1611873781;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611863237\";last_ip|s:15:\"132.184.128.122\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8564b4a0697388682f654197e3e2c64c92245b27', '198.235.24.48', '1662725182', '__ci_last_regenerate|i:1662725182;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8567bfb228f370f44c55c8fe3b7b9876d76bb674', '92.118.160.5', '1635095955', '__ci_last_regenerate|i:1635095955;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858441642c668c829ae989df17fef07895c73888', '143.198.149.15', '1696477390', '__ci_last_regenerate|i:1696477390;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8585589b7492fc12acfaef3ee25ea61624fac0de', '205.210.31.177', '1665748994', '__ci_last_regenerate|i:1665748994;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85914f25aa88d53a79d27825358b83654e76276b', '167.248.133.127', '1688115638', '__ci_last_regenerate|i:1688115637;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859190e2dbce14f59ebf1bfc299cc9522649d3b6', '121.5.219.20', '1623440977', '__ci_last_regenerate|i:1623440977;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b90da9ca743c6129810ef46a2a39ed7e2a3873', '167.94.146.55', '1698171433', '__ci_last_regenerate|i:1698171433;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85c3411b0f6bb0ec8df734bf3a0d03394770db06', '101.68.211.2', '1677788875', '__ci_last_regenerate|i:1677788875;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85d0808159f071e76feecd6b3bc846c6aec7b2e4', '186.1.135.159', '1618842908', '__ci_last_regenerate|i:1618842626;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85dafca6ee84fb3d3095a1e9a7cc030f000e2e6f', '205.210.31.13', '1697659742', '__ci_last_regenerate|i:1697659742;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85df9437cd585aff3efadda0b1b469b177b30be2', '186.1.135.129', '1618255552', '__ci_last_regenerate|i:1618255513;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236595\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85fe6e6e0b137f49957fe1b18f164314989adb49', '167.94.146.53', '1693099549', '__ci_last_regenerate|i:1693099549;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('861037029420a68a3c5c0dc36ef586c036c48375', '47.128.41.109', '1697827037', '__ci_last_regenerate|i:1697827036;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862882538d841e673d8f010bcf59d8cec3a6e02c', '44.199.235.222', '1668999294', '__ci_last_regenerate|i:1668999274;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862d59b261c26f32353a31efaa01599df103fb3f', '198.235.24.46', '1676033276', '__ci_last_regenerate|i:1676033276;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8636062791e250285ec8da53174426c1aaaf2dda', '179.6.222.7', '1616007483', '__ci_last_regenerate|i:1616007112;local|s:1:\"1\";listaVenta|i:433;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616004221\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863ba1706732665c03dcc6e968c59133ee03fa84', '198.235.24.81', '1695209735', '__ci_last_regenerate|i:1695209735;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863ed51b657ef73d53d58e6b61daa6727813e07f', '205.210.31.129', '1662738033', '__ci_last_regenerate|i:1662738033;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('864b998de057ccab5d2f8b599f84839c438915d6', '51.158.127.119', '1625102964', '__ci_last_regenerate|i:1625102964;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865441b2d8547dd7aa359ead3e43e8828df0920c', '207.148.127.89', '1694384291', '__ci_last_regenerate|i:1694384291;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86553404c6be5e90af441fb26b9eeb5cf7b3179f', '186.1.135.135', '1612561123', '__ci_last_regenerate|i:1612560864;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612556109\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865ed47b87f0c43c49c8333a4a4d14822363e032', '198.235.24.131', '1658434073', '__ci_last_regenerate|i:1658434073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8662d2f7513bf6faa8a4f1af733ed8f3fc57b1be', '186.1.135.66', '1616437017', '__ci_last_regenerate|i:1616436496;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616423078\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8669e739160a7b16391f9cc2d4c9b4e3fbf48e51', '205.210.31.22', '1684549842', '__ci_last_regenerate|i:1684549842;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8679011eb0c35d33260b222c556db97eda0acb27', '148.102.26.11', '1621634382', '__ci_last_regenerate|i:1621634379;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621604658\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000456\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8683f66babc1d139892fe698431708dd5ff82936', '198.235.24.38', '1684825686', '__ci_last_regenerate|i:1684825686;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86888095e18b1dc13ad0998566cb9a0ae180cc7e', '13.124.222.242', '1618738903', '__ci_last_regenerate|i:1618738903;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868aeb3a47673c6d48f20d1731b3095b2c3b142f', '198.235.24.11', '1655198876', '__ci_last_regenerate|i:1655198876;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a4e6d843aebdd219c6e7b0a124e1c05107c5d3', '179.6.212.129', '1614804552', '__ci_last_regenerate|i:1614804047;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614778488\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a57730402513c5f68b0f5ed600585824913913', '132.184.128.153', '1611886049', '__ci_last_regenerate|i:1611886049;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611873785\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86cecbf6f2f185aed8a021e077dcbb093568e16c', '185.220.102.250', '1617634318', '__ci_last_regenerate|i:1617634318;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e46590c639d382b1dbfad38204ff1b0b60770f', '198.235.24.152', '1660471965', '__ci_last_regenerate|i:1660471965;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86fc1380c8bdd77e4f48dc30e9f26ba98b64e158', '186.1.135.147', '1613584139', '__ci_last_regenerate|i:1613584139;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613572128\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8702ec64ae7c55f9f76eda33dfbdba0bb3de0080', '186.1.135.131', '1617657797', '__ci_last_regenerate|i:1617657484;local|s:1:\"1\";listaVenta|i:389;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617644291\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8712240a339d014b27357105fed14c705f5004f7', '164.92.189.255', '1676522771', '__ci_last_regenerate|i:1676522771;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('871995fa7e686eef47424a765877ee6fd408a5d3', '167.94.146.56', '1695101549', '__ci_last_regenerate|i:1695101549;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87324f0693339e65fe7d2e0ca2417a7edd36628a', '195.154.63.222', '1617702445', '__ci_last_regenerate|i:1617702445;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8739e330938dee559f75293014cba39952fd543a', '34.86.35.32', '1622552357', '__ci_last_regenerate|i:1622552357;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8741b2413dd677fdfaaae8555fb4f94c6a264a1c', '92.118.160.37', '1621784508', '__ci_last_regenerate|i:1621784508;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8748046399fcee358fd02d786c58700902e2bcef', '::1', '1598816387', '__ci_last_regenerate|i:1598816125;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598765610\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87606c56cac61a8ef7a6752083019c84b11699fe', '186.1.135.143', '1615921382', '__ci_last_regenerate|i:1615921217;local|s:1:\"1\";listaVenta|i:431;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87732178bf23ced9270b00f49a4b0369f3682d6c', '::1', '1598607815', '__ci_last_regenerate|i:1598607815;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8780f72daa3510dd614331569d997da3b9f5c826', '205.210.31.26', '1658748969', '__ci_last_regenerate|i:1658748969;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('878d5473876637afd5d8c9970f8625917dac2fa8', '190.238.217.9', '1612801628', '__ci_last_regenerate|i:1612801626;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87976cf048094d0ba7f7de8b648e8c7f6e4d4d57', '38.25.7.251', '1652893041', '__ci_last_regenerate|i:1652892987;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652726050\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87a09929e9723034147e6ee5c04ce4b4e5bed0bd', '68.183.148.142', '1633002853', '__ci_last_regenerate|i:1633002853;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ae51e099f639498ee72a80cb82811b88cd7f1b', '38.25.16.38', '1688617497', '__ci_last_regenerate|i:1688617497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87bdbe2b2e352719a65c33377312f2813e6982fa', '190.232.180.131', '1611937372', '__ci_last_regenerate|i:1611937371;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611928932\";last_ip|s:14:\"132.157.130.10\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87bf94e74f3478cd82d90ae4b9d1808cd7be1871', '13.58.59.50', '1698225050', '__ci_last_regenerate|i:1698225050;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c809d900f9277ddaad47e6cb1f2f6bbb00e864', '198.235.24.137', '1668319340', '__ci_last_regenerate|i:1668319340;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87cf877bd2bef8765e27af73ea1df4d51e5bb3d1', '162.142.125.210', '1654268096', '__ci_last_regenerate|i:1654268096;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87de0310e074b2e8cea0fc4f4c220a3e457d626b', '190.192.49.231', '1623082847', '__ci_last_regenerate|i:1623082573;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622816464\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f181ed8ff31aa4ca867f5356dbdd83a7b02f0d', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('880119aed2b8072f08c94e9e6b51e9c79a1ee465', '198.235.24.29', '1690603542', '__ci_last_regenerate|i:1690603542;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8810d5ea7d5739b475bd70ba716c3bc6dba12f79', '142.54.224.196', '1679349898', '__ci_last_regenerate|i:1679349897;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('882a7ced860e33942e1823a148466dffa5d81d32', '161.132.234.14', '1625199946', '__ci_last_regenerate|i:1625199734;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625189910\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88380504862910311ccf077d618348ecb7927f52', '35.89.193.95', '1654293110', '__ci_last_regenerate|i:1654293108;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885a898e051605b1b8fdf9e699a952a62e1c9b6f', '186.160.223.4', '1618853893', '__ci_last_regenerate|i:1618853891;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885f951e300a238a3d7dfa2b821d31c629f97ab6', '54.203.210.71', '1676856934', '__ci_last_regenerate|i:1676856933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88740f5af3ee70b19f37a24fba59c82182e896c5', '45.225.216.152', '1624919405', '__ci_last_regenerate|i:1624919220;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915364\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88815e818b3134c4d06f9969b9260400879740b7', '148.102.26.11', '1620229355', '__ci_last_regenerate|i:1620229355;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888e2a37ca3bf029b672e3ff83a8fa42ea5c161e', '205.210.31.25', '1659356489', '__ci_last_regenerate|i:1659356489;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88aa820c4a790fc6450051180bb99a63c98a5ca2', '167.248.133.190', '1685699325', '__ci_last_regenerate|i:1685699325;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ab08568dcd7f717ecb7fac2c9e9cba9ee554af', '159.223.206.94', '1695271487', '__ci_last_regenerate|i:1695271487;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b463e3bd03f93fbe2b1ba368c7caf1faf42b30', '::1', '1598576697', '__ci_last_regenerate|i:1598576697;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b92f301e173bf610070ccfefaf08300a80d624', '186.1.135.66', '1616421688', '__ci_last_regenerate|i:1616421527;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616175755\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ba2ee05726e992ca71f12afef0c854536cb80a', '15.228.60.20', '1611533228', '__ci_last_regenerate|i:1611533228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88bd35e574b92837041209a860032e41', '181.67.2.242', '1687968124', '__ci_last_regenerate|i:1687968124;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88be1bfa609d00773450a2d53ca22868b0823dc9', '181.176.104.161', '1676296815', '__ci_last_regenerate|i:1676296815;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c24c9137dd5eb0fe1b9f99f566c4ea78cf68dc', '198.235.24.134', '1659680111', '__ci_last_regenerate|i:1659680111;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88dc0d646251d5b2546efea22f88ebf0b7fd5919', '188.165.87.100', '1654339918', '__ci_last_regenerate|i:1654339918;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e00c441bcbc5ad1be40d50677fb7e5ecdf82f5', '186.1.135.71', '1613680927', '__ci_last_regenerate|i:1613680927;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e48496f82be02305bf59f248586562190667f6', '190.239.66.67', '1620146567', '__ci_last_regenerate|i:1620146262;local|s:1:\"1\";listaVenta|i:86;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620072748\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fef0e1e6d3a3cf7d645218c174517032e27999', '205.210.31.147', '1679650346', '__ci_last_regenerate|i:1679650346;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8929c843b5996b7449011c1ae736bfef54d304c3', '::1', '1598576621', '__ci_last_regenerate|i:1598576370;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8929cf36c7ae2b1459d9a330f8a4b2aae734e241', '201.230.205.196', '1698719400', '__ci_last_regenerate|i:1698719380;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698468897\";last_ip|s:15:\"201.230.205.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8938c1965bbf651367b93d7b5a8303a7e8a88273', '45.225.216.152', '1624918994', '__ci_last_regenerate|i:1624918832;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915364\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8946d571fddcfd5ece57f105e328cedf4621f1db', '179.43.191.18', '1693777238', '__ci_last_regenerate|i:1693777237;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8956544cc8313db094211ea03eedad724de56aee', '183.136.225.44', '1683543471', '__ci_last_regenerate|i:1683543471;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899113234e9f39925091a318eb4973ad6b421b0c', '186.1.135.71', '1613680866', '__ci_last_regenerate|i:1613680096;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899b7a69ecf09cf61d14f716031bb14bdfac92ad', '186.1.135.134', '1612810669', '__ci_last_regenerate|i:1612810669;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89aad37f5266ad8e780bc03608faf298ee259224', '92.118.160.57', '1637586471', '__ci_last_regenerate|i:1637586471;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89bbe7470e83154c8517a2e8361d429ac0d6c663', '38.25.16.18', '1674406720', '__ci_last_regenerate|i:1674406719;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ccadb8310b01cb89d89e9033ff9538334e8ae5', '201.230.205.189', '1681781374', '__ci_last_regenerate|i:1681781374;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ded0663aeae1e58cc992e6c7b62f5662d2df69', '157.245.220.188', '1694081086', '__ci_last_regenerate|i:1694081086;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89df31e4d145cb9999ee921882de0aecc6ab4a72', '52.15.212.3', '1620110194', '__ci_last_regenerate|i:1620110194;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89df6ad9d7dee63142440f9acf8ce7575f51a3f9', '190.237.172.109', '1615119664', '__ci_last_regenerate|i:1615119332;local|s:1:\"1\";listaVenta|i:738;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e4148cf8dfd9330c699769a5f28cb319cdf997', '167.248.133.51', '1682990983', '__ci_last_regenerate|i:1682990983;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89fcc6f90d85f0d1053069b5b9f23d92fb8bcfb2', '148.102.26.11', '1621263798', '__ci_last_regenerate|i:1621263798;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a163c433f41c70617ad43bf20f1c069ff75636e', '38.25.16.184', '1698956594', '__ci_last_regenerate|i:1698956330;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";__ci_vars|a:3:{s:5:\"error\";s:3:\"old\";s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}error|s:75:\"El campo Confirmar contraseña no coincide con el campo Nueva contraseña.\n\";csrfkey|s:8:\"hR7Gq91n\";csrfvalue|s:20:\"BsidpfwCJMxtjNP2Kg9l\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1b0fc834406e0c7e593b48c2cbbbf4407d0d6f', '179.6.222.7', '1617975947', '__ci_last_regenerate|i:1617975667;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a21fe44bea130e2750a0d09ad14007e5fbe221f', '198.235.24.40', '1668770956', '__ci_last_regenerate|i:1668770956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a4070290fbd5757ddb04818631749f246d14cae', '148.102.26.11', '1619791496', '__ci_last_regenerate|i:1619791243;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a50f167ef1247d9f9f32dc6b7272b760180a6ee', '167.248.133.117', '1657218361', '__ci_last_regenerate|i:1657218361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a59cdb2cdb1ef1e32838154edaab299df30f149', '138.197.4.164', '1662296112', '__ci_last_regenerate|i:1662296112;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7379720d5bb6a7393e386fe063c8b0bff38038', '186.1.135.129', '1614700520', '__ci_last_regenerate|i:1614700393;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614695024\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a746639c0cf1fbb7b5973cca40d7ee4d3b198bf', '18.230.106.115', '1621779187', '__ci_last_regenerate|i:1621779187;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7a50d87c9f31b4b0796ef6c637d50ea640b373', '144.86.173.14', '1628935015', '__ci_last_regenerate|i:1628935015;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a810aee7aca0ecec6e8ecb7683ad33382a20b8d', '138.197.154.123', '1696327947', '__ci_last_regenerate|i:1696327947;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a83fecb6ea6d636d22168fee45e99efcb42bcf6', '47.88.87.97', '1683215992', '__ci_last_regenerate|i:1683215992;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a86bb116654616c8c11465ebb3d9253571470fa', '190.192.49.231', '1623086562', '__ci_last_regenerate|i:1623086469;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622816464\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a8e46bf079db9ffbef1cc419461300942a1e6ff', '190.236.5.11', '1617716216', '__ci_last_regenerate|i:1617716005;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617714995\";last_ip|s:12:\"190.236.5.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000374\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a985d3950c050641bd0bc1b0768cba90dc7e735', '128.199.217.136', '1686663433', '__ci_last_regenerate|i:1686663433;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ad24aab70cb949e4c89e7c4a4072d2445ff71df', '186.1.135.129', '1617828989', '__ci_last_regenerate|i:1617828717;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8adcaa23644afd6b72ee7c3cf6c2296efc46d48c', '144.86.173.65', '1630146581', '__ci_last_regenerate|i:1630146581;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8adfa241bddd97dc76fc2c9e565d09e4b96e8bea', '186.1.135.154', '1618519949', '__ci_last_regenerate|i:1618519949;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aec64c07e81f044be54121761c8e1846f65a795', '34.242.160.159', '1676309802', '__ci_last_regenerate|i:1676309802;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af0ec9295acb5163db3bb84f27aec1032dd4281', '54.94.36.115', '1622416333', '__ci_last_regenerate|i:1622416333;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b1d47b0d9b34c06df3e222d0aa16903af388396', '38.25.7.251', '1652369983', '__ci_last_regenerate|i:1652369981;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b272f1117983a4c181150465982420db6d9f785', '201.230.205.217', '1671251804', '__ci_last_regenerate|i:1671251631;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671248810\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b28501b768ec89b0cb5c4212bfd27b0178364da', '186.1.135.134', '1618601507', '__ci_last_regenerate|i:1618601211;local|s:1:\"1\";listaVenta|i:181;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618590832\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b3273e23a745347f4260c04d93598979e884a9f', '186.1.135.66', '1616447477', '__ci_last_regenerate|i:1616447425;local|s:1:\"1\";listaVenta|i:765;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b35037005152ab3003b215f406aa0eff5b115c7', '190.239.66.67', '1620147151', '__ci_last_regenerate|i:1620146873;local|s:1:\"1\";listaVenta|i:86;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620072748\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4e1f90ffbd37822bda5b4cfe8e4eca118e6fb8', '195.211.77.140', '1661790640', '__ci_last_regenerate|i:1661790640;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b537879db207d928b64a90369349e1c5a19b1ab', '2.57.122.25', '1682736322', '__ci_last_regenerate|i:1682736322;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b5e9545d0d6d561963e64a9ff279cba32ffda65', '165.227.208.125', '1617705198', '__ci_last_regenerate|i:1617705198;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b72cb618a4773237cb1dc74acdf4f7a28b9d34d', '186.1.135.129', '1615214732', '__ci_last_regenerate|i:1615214732;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615166392\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9334c35281bc3cc17daa7f83f534d0d25f8693', '198.235.24.39', '1677011561', '__ci_last_regenerate|i:1677011561;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9340ade1b2e405931073538ac7fc0b981699a6', '205.210.31.42', '1690899044', '__ci_last_regenerate|i:1690899044;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b93f2a741f7fe158226aee5730af46d78748527', '190.239.71.47', '1620847645', '__ci_last_regenerate|i:1620846878;local|s:1:\"1\";listaVenta|i:28;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620836349\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b95787daf8db1fdd60d8d19057da33f61d29ccc', '205.210.31.156', '1664649717', '__ci_last_regenerate|i:1664649717;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b97238bb803ca4ba0cf1dc6b09e25f707e69e5e', '52.52.190.187', '1623412355', '__ci_last_regenerate|i:1623412355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9c082757c00e86e890f36d1fea2ba8bb186349', '18.231.54.233', '1622239908', '__ci_last_regenerate|i:1622239908;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ba18cb871469d2a11af2f3d4ee871f8e3899bd7', '3.253.90.161', '1689152843', '__ci_last_regenerate|i:1689152843;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ba76b2feab15e90ad7198b83c66ad4727c00ebb', '186.1.135.141', '1612443778', '__ci_last_regenerate|i:1612443774;local|s:1:\"1\";listaVenta|i:36;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612364658\";last_ip|s:12:\"186.1.135.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000264\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb022bb491bfb77b338df4ed03df0fea71721bf', '54.217.14.30', '1675792970', '__ci_last_regenerate|i:1675792970;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc403f1b7dadaacc39ad6bd1f55b6f67916dadc', '186.1.135.66', '1616435019', '__ci_last_regenerate|i:1616434705;local|s:1:\"1\";listaVenta|i:466;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616423078\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd9a5886194485c7df5fe8827bbb5b3f1db5f6f', '183.136.225.45', '1693999926', '__ci_last_regenerate|i:1693999926;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd9f4f2e37db70fe19ff7d2e2f34eb3a542f0fa', '186.1.135.138', '1613075582', '__ci_last_regenerate|i:1613075568;local|s:1:\"1\";listaVenta|i:2994;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be5bf9af2593b17e1f7840fa727b961e5b307b7', '181.176.117.184', '1672485959', '__ci_last_regenerate|i:1672485959;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c0e66793aa48efdb40c776cd3594b288b3db666', '205.210.31.50', '1677884100', '__ci_last_regenerate|i:1677884100;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1bb6474dc78aa2e4223f5bbdc7687550f76b13', '144.91.106.14', '1690768650', '__ci_last_regenerate|i:1690768650;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1c1b803db93eb7434288d2bc7af6d59b8a0833', '186.1.135.66', '1616446190', '__ci_last_regenerate|i:1616445891;local|s:1:\"1\";listaVenta|i:471;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1f72b352cf35cba033e790f7d5ab299d18a483', '190.43.38.234', '1620229277', '__ci_last_regenerate|i:1620229216;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620229244\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c45a7068a01e1409e9f56399a53d15df62f7fcc', '186.1.135.129', '1617830573', '__ci_last_regenerate|i:1617830531;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c59cb326d7467a439f912234d138b8c814d5581', '52.67.62.179', '1612095308', '__ci_last_regenerate|i:1612095308;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c62602cbe95de59cb285cfd79dca291efbe0741', '181.64.105.12', '1622317240', '__ci_last_regenerate|i:1622317239;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c6fdf44cc1280f1f221bf0205d0aece89995816', '144.91.106.14', '1666570230', '__ci_last_regenerate|i:1666570230;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c7098efb1868d2b844bdcde6f2f193ca95ffdec', '190.237.172.147', '1613902584', '__ci_last_regenerate|i:1613902172;local|s:1:\"1\";listaVenta|i:475;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613742638\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c7bc58d64f3455489bfd0401fee83465ead0b54', '161.35.224.235', '1696575268', '__ci_last_regenerate|i:1696575268;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8d2a61116e680d2c6bde1e5e9389e4c64e31c0', '201.230.205.189', '1681784484', '__ci_last_regenerate|i:1681784161;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8dcc0c778f7241570d2e71cfaf72a2935b2ee7', '148.102.26.11', '1618852071', '__ci_last_regenerate|i:1618851973;local|s:1:\"1\";listaVenta|i:299;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618839872\";last_ip|s:13:\"186.1.135.159\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c934442d8b09e43428fddf0975ccffd05259742', '209.17.97.122', '1611585074', '__ci_last_regenerate|i:1611585074;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca0a7704ca7071c449217067715e59f92e66e0f', '45.225.216.152', '1624918107', '__ci_last_regenerate|i:1624917834;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624915364\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:54:\"Producto no fue agregado con éxito, intente de nuevo.\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca44a96634b938eef7aaddd19771a731bad6fa9', '38.25.7.251', '1652377829', '__ci_last_regenerate|i:1652377818;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca8a0245a1bbb2a3df34fb0b498c5007c30fdd3', '161.132.234.14', '1621696310', '__ci_last_regenerate|i:1621696310;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621695332\";last_ip|s:13:\"190.43.38.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb8b4b653aa786b8bc25d13b1beb20b2eae68e7', '198.235.24.38', '1686664489', '__ci_last_regenerate|i:1686664489;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cc7d6d3f82eb415870d77991c3502448a3a6ebb', '183.136.225.44', '1688231189', '__ci_last_regenerate|i:1688231189;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ccd68567f93f71a5751dc63b630c0d8', '201.230.205.217', '1672884742', '__ci_last_regenerate|i:1672884742;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672793060\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd01732131b70848b49086a2e3d0876c1c60d2f', '82.193.104.168', '1662923112', '__ci_last_regenerate|i:1662923112;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cde69c60612175b0ea7838eedaa3f2291ec7624', '148.102.26.11', '1619194832', '__ci_last_regenerate|i:1619194288;local|s:1:\"1\";listaVenta|i:2991;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce5b12ae2dccfce46ddadfd4e1473eeed3caa26', '139.144.150.23', '1683172267', '__ci_last_regenerate|i:1683172267;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf4eba5508a75ed784cc5edcaf954d390ff01ea', '186.1.135.141', '1612465990', '__ci_last_regenerate|i:1612465971;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612456908\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d03a0dfc50b2f9f1a2a92fa19ac51e463a953c0', '205.210.31.147', '1693166310', '__ci_last_regenerate|i:1693166310;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d052de26f5af4837dadb245eb4e6c018a689df0', '205.210.31.180', '1673093137', '__ci_last_regenerate|i:1673093137;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d2fca49ecc750a370379403d8fae68abaa18762', '142.54.224.196', '1675119509', '__ci_last_regenerate|i:1675119509;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3b722d83e3c945a4b77bdbe66ab3135880c648', '205.210.31.11', '1684575155', '__ci_last_regenerate|i:1684575155;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4d19a27477d1765008a05fe6bcaea2657cdb12', '18.202.26.165', '1677803412', '__ci_last_regenerate|i:1677803411;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4e21aacc0e321da052693089860f7e6a6159ca', '205.210.31.33', '1682061463', '__ci_last_regenerate|i:1682061463;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6eb4a36f9d4201706a9d17dd4cf07986144ad7', '186.1.135.158', '1612905250', '__ci_last_regenerate|i:1612904704;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612878650\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d78b671ef0c3f9b3c7843ef27b00240e7253aab', '3.253.132.190', '1678220372', '__ci_last_regenerate|i:1678220372;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7950107aeb1485c7baa5ff07d829a92ca0bca3', '198.235.24.33', '1675484709', '__ci_last_regenerate|i:1675484709;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d79cfef785d9a6a026fb9540cf76a6a8ce56a54', '205.210.31.172', '1673672539', '__ci_last_regenerate|i:1673672539;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9597c0208c8962278e8bf0e3a351e05a88c692', '15.228.46.4', '1621887474', '__ci_last_regenerate|i:1621887474;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da6a7123cca3f290c1454ff67660e09bcfd7682', '190.234.20.170', '1671633190', '__ci_last_regenerate|i:1671633190;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dad766dedadde64c689fc36f809bbf041c80c9a', '167.94.146.59', '1694801157', '__ci_last_regenerate|i:1694801157;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db2a214e826408b61291dd0cebf0042de01fc72', '198.235.24.186', '1693833253', '__ci_last_regenerate|i:1693833253;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc24be876b39255b43841a206d7f219a933f082', '186.1.135.147', '1613593793', '__ci_last_regenerate|i:1613592817;local|s:1:\"1\";listaVenta|i:52;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613579275\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc434d98f278a011fc21c5fef42681b716cb05a', '18.231.127.206', '1622048932', '__ci_last_regenerate|i:1622048931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dceaa324459bb2771bce43dd5d6c0a8aaadc544', '165.227.185.189', '1614458279', '__ci_last_regenerate|i:1614458279;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd3933dbc8f7a5c8e77b909bdd9edd87787d65b', '38.25.16.18', '1672963617', '__ci_last_regenerate|i:1672963617;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dde50b47f33a165a4813377f35b5ab29f30f693', '186.1.135.150', '1613164313', '__ci_last_regenerate|i:1613163837;local|s:1:\"1\";listaVenta|i:396;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de03562b53386935c8eacf9d49f39f64ce54d93', '201.230.205.235', '1695401085', '__ci_last_regenerate|i:1695401080;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694654246\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de32058d25f0578c76e35d490d4fe8edc57e51f', '186.1.135.138', '1613052443', '__ci_last_regenerate|i:1613052250;local|s:1:\"1\";listaVenta|i:943;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dfe728ed9fdb8dd9af74a8164a16e64dbe1801e', '186.1.135.129', '1617823454', '__ci_last_regenerate|i:1617823454;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e009aa61d307e0a3e1e0ea7a9648069d7d56085', '18.231.138.126', '1621793799', '__ci_last_regenerate|i:1621793799;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0ea6ef5f8ff99ced9c3ca7edc04888ea6e8d47', '167.248.133.188', '1694804214', '__ci_last_regenerate|i:1694804214;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1da7f427fd46a8cbf4a986a3d89dcff0c65763', '::1', '1598557570', '__ci_last_regenerate|i:1598557569;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598362856\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1fb4534f73a1a8f42e452e8b332a58609664aa', '198.235.24.166', '1666166525', '__ci_last_regenerate|i:1666166525;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1fe0976bce475f08f67111c8f3babab886aca8', '190.236.0.145', '1617200986', '__ci_last_regenerate|i:1617200657;local|s:1:\"1\";listaVenta|i:791;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e448e2e50fc5ccc7538c323f3611c72afb12303', '190.232.180.131', '1612282517', '__ci_last_regenerate|i:1612282395;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612231909\";last_ip|s:15:\"132.184.128.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e46cc679cf834b3e1ae60c632a006c625e3cd98', '35.212.26.22', '1692444724', '__ci_last_regenerate|i:1692444724;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e4c1e09c899fa13b7261f16482d42bea3a17204', '159.89.38.19', '1614924690', '__ci_last_regenerate|i:1614924690;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5ccd39020cdd33e8b7416b497171a450a9c1ae', '162.142.125.41', '1636693496', '__ci_last_regenerate|i:1636693496;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5dd18e3905b92912a5cd40eea0c04590af2061', '186.1.135.141', '1612448485', '__ci_last_regenerate|i:1612448021;local|s:1:\"1\";listaVenta|i:127;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612442480\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5e057b972a2bd3f285ee9d4c0bf578b57b2812', '35.167.128.56', '1654293639', '__ci_last_regenerate|i:1654293637;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e6bac5b2ddac1d3a6de857a16a37899d4fa786f', '186.1.135.134', '1612815328', '__ci_last_regenerate|i:1612815066;local|s:1:\"1\";listaVenta|i:54;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612812992\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e799c2f90bcdbd86cbe150587a6623b6b7f8e17', '161.132.234.14', '1625025882', '__ci_last_regenerate|i:1625025808;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624924260\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e80304dea1bdcdbfe3539d3619bd189ff0b57aa', '205.210.31.164', '1690859820', '__ci_last_regenerate|i:1690859820;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e8300b69b71ec080b5774328f8e79340565779d', '159.223.196.15', '1666387970', '__ci_last_regenerate|i:1666387970;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea5b263e8cd345cb50a94983c9a23f681ddd48d', '36.99.136.133', '1682580169', '__ci_last_regenerate|i:1682580169;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb76540251088f0384a136afbd1020514c3501b', '198.235.24.52', '1692117962', '__ci_last_regenerate|i:1692117962;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb8e41a12f8d05252cad1894247fd2917fdc526', '186.1.135.79', '1611945351', '__ci_last_regenerate|i:1611945351;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebb88dfb8cee7142ddba3d13cbdf0d44b9ff18e', '45.177.196.194', '1673648142', '__ci_last_regenerate|i:1673648083;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1673648060\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec0da9b992e3b4da08125a06f121fbeea4d053c', '179.6.212.129', '1614975022', '__ci_last_regenerate|i:1614974722;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614959612\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec7220152d705cb3026a84dbcbba94b8daf2c26', '205.210.31.240', '1697168353', '__ci_last_regenerate|i:1697168353;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec910671c27d1261a966279bf86b2907aed5ece', '38.25.7.251', '1652479526', '__ci_last_regenerate|i:1652479526;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec9c30add710856ccd8e847dca14a208e9143dd', '183.136.225.44', '1684119047', '__ci_last_regenerate|i:1684119047;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ed781fa4d0bbff40f2ca3b58aa142c049c03791', '179.6.212.129', '1614960996', '__ci_last_regenerate|i:1614960679;local|s:1:\"1\";listaVenta|i:473;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614882416\";last_ip|s:13:\"186.1.135.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8edb88a19b221d1bf4942007abfcf9c76e910c1e', '::1', '1598582608', '__ci_last_regenerate|i:1598582382;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee0596842d0d12e18be7e2d7f02c4c72b3a6d40', '198.235.24.68', '1684226551', '__ci_last_regenerate|i:1684226551;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee1827232f8d59dbb87abb47cb16bfdad8119f7', '190.232.180.131', '1611927642', '__ci_last_regenerate|i:1611927493;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611889339\";last_ip|s:15:\"132.184.128.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eee11ae683ab0cc804716abdaf61210f99db86e', '92.118.160.61', '1628411678', '__ci_last_regenerate|i:1628411678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eee83870a1faec81a5aeb4efa44cc8c759bd2ed', '186.1.135.132', '1612875976', '__ci_last_regenerate|i:1612875886;local|s:1:\"1\";listaVenta|i:57;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612819345\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef7b494dad9add25505612cecbcf56271db8ba6', '148.102.22.241', '1616697532', '__ci_last_regenerate|i:1616697107;local|s:1:\"1\";listaVenta|i:445;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f031cc0ff4cf65ac177532a99ddbf2ee1b9a66a', '89.207.131.169', '1690661491', '__ci_last_regenerate|i:1690661491;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0c2a6bcbadd961c9525759a13bbee7c7c7b43f', '148.102.26.11', '1619469430', '__ci_last_regenerate|i:1619469041;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619454235\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f1899f69fda15eb3e3e95393733969d2a784ca0', '18.231.13.227', '1611763984', '__ci_last_regenerate|i:1611763984;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f25a57b3fb0d42dbada78516c87398b8d44063e', '128.90.5.205', '1694517510', '__ci_last_regenerate|i:1694517510;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f27c6a8cadc76df76074bfc1af03eda532d88e8', '198.235.24.9', '1652526122', '__ci_last_regenerate|i:1652526122;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f3d053ad676ec4c854906bf28e7c83004044341', '87.236.176.245', '1693292042', '__ci_last_regenerate|i:1693292041;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f4249af9c57b1d07c6791d92b378b5452eab6dc', '181.176.103.132', '1673985326', '__ci_last_regenerate|i:1673985268;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1673879168\";last_ip|s:14:\"181.176.108.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f54916b5a5f1b23db3b8813e5d1c0600235e090', '190.43.38.134', '1621439223', '__ci_last_regenerate|i:1621439223;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620840076\";last_ip|s:12:\"181.64.57.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6237716511d3eb974fd1527032abeb7d1340d6', '201.230.205.217', '1671072987', '__ci_last_regenerate|i:1671072986;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670989365\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f62eed0cd76f2f839275c515afd00025749138f', '148.102.26.11', '1618852381', '__ci_last_regenerate|i:1618852320;local|s:1:\"1\";listaVenta|i:299;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618839872\";last_ip|s:13:\"186.1.135.159\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6a71d17010b13501379847a6c4c85ad3130f22', '186.1.135.143', '1615580840', '__ci_last_regenerate|i:1615580507;local|s:1:\"1\";listaVenta|i:154;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615564233\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6fb01be802b3b3b3719316eb82932c3c30d69c', '198.235.24.90', '1697920090', '__ci_last_regenerate|i:1697920090;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f73a8b4ce06c3141045c20b2af9b9d92f9219a8', '175.24.232.97', '1615283485', '__ci_last_regenerate|i:1615283485;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f74b73752696af3a1abb52dc3ac125a209ffd48', '148.102.26.11', '1619539149', '__ci_last_regenerate|i:1619538889;local|s:1:\"1\";listaVenta|i:978;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619534195\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f797a59f0acebeef9a61ec3fe6decbb4e04f6e8', '198.235.24.153', '1656239066', '__ci_last_regenerate|i:1656239066;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f7fa32aca4ec65cf6726d3f624a3fed79fde007', '167.248.133.117', '1657218361', '__ci_last_regenerate|i:1657218361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f7ffe0ec0dc9d20a7789b838cece2c8cf0f5a7a', '144.86.173.155', '1628019640', '__ci_last_regenerate|i:1628019640;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f83b510b0283a605eb5b43670e6656c272d116b', '161.132.234.14', '1626042545', '__ci_last_regenerate|i:1626042504;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625848842\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbb87181addc1eceef608ed93ddae12a898819e', '198.235.24.239', '1682139917', '__ci_last_regenerate|i:1682139917;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fcceb7304da2be451df4a86d28d44425cd216e6', '190.43.38.234', '1620689727', '__ci_last_regenerate|i:1620689684;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620679553\";last_ip|s:14:\"190.237.30.221\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd5866f166a81c2d24510a07f9e2a850ee5e7be', '::1', '1598825017', '__ci_last_regenerate|i:1598825009;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598816134\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd7843132c8410cd509dfae6e2086cc49a32141', '186.1.135.141', '1612458531', '__ci_last_regenerate|i:1612458177;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612454362\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fe953f346d92c4767724e886ea81f0bf714c33f', '144.91.106.14', '1666570228', '__ci_last_regenerate|i:1666570228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ffcb7e5666d4d37a378b954598729eb6a509b66', '162.142.125.10', '1656958467', '__ci_last_regenerate|i:1656958467;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ffe8ef282f84c1c1098afaa43596ad7de6e4ef3', '87.236.176.157', '1672394462', '__ci_last_regenerate|i:1672394462;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9013fa870a34788b2f79a5423837797a4e6c3cd8', '186.1.135.129', '1618244725', '__ci_last_regenerate|i:1618244611;local|s:1:\"1\";listaVenta|i:319;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9017d03c2acad5f0c4d311806efc2d2c0cf87745', '205.210.31.38', '1680051951', '__ci_last_regenerate|i:1680051951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9018414146c030bd1cfa0fcfb2802e036606307f', '179.6.212.129', '1614707547', '__ci_last_regenerate|i:1614707371;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903c1a63652480aeb3812b3fccd159b9c197b3ef', '18.230.155.51', '1622477734', '__ci_last_regenerate|i:1622477734;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903c39f75110ee7f378ea54402c85ddbf57217e7', '167.248.133.123', '1693871659', '__ci_last_regenerate|i:1693871659;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9042c3114e581de1ce30ae63feab89073c444986', '198.235.24.161', '1673822271', '__ci_last_regenerate|i:1673822271;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90521493cd2b94e80e3cff0b795d0da9cfe147ee', '188.165.202.227', '1659856506', '__ci_last_regenerate|i:1659856506;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9060f4615c1834f4e559d2ce726b73ee16022c8c', '190.234.141.82', '1688095406', '__ci_last_regenerate|i:1688095269;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688092844\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908ec93c0ac181f186ef68f5d07acd4eb25fbd7e', '185.225.74.198', '1682006048', '__ci_last_regenerate|i:1682006048;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90939930c07fe1c2509e80ad3187f79eb346e0e0', '164.68.106.210', '1670013905', '__ci_last_regenerate|i:1670013905;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909ef535a5f8ebfc144fe7954951920e63db669a', '186.1.135.137', '1613655754', '__ci_last_regenerate|i:1613655100;local|s:1:\"1\";listaVenta|i:336;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613592148\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909f1cb0957f830208c8694e498a12b61890ac0e', '77.222.60.234', '1690655965', '__ci_last_regenerate|i:1690655965;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a0f219582ac59e3d6dabbb2eaa3fb55ea4b7c8', '169.150.201.10', '1680703324', '__ci_last_regenerate|i:1680703324;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c5e312117f8cd4ebbbd0cf55e0166b2702715a', '132.184.128.103', '1611971388', '__ci_last_regenerate|i:1611971388;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e90690266df9baf495859b72cbb1f70dc8a996', '34.77.162.3', '1621896700', '__ci_last_regenerate|i:1621896700;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f7947c5f44268ab81628bfee8c4f315f402409', '186.1.135.133', '1612269764', '__ci_last_regenerate|i:1612269601;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612209828\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9106b56d8abe1de6ee6bd7cbe577eb3c07809916', '45.12.3.13', '1696979462', '__ci_last_regenerate|i:1696979462;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9108aac85df3c598e23e6ec990e3e671b93055e5', '205.210.31.9', '1662179582', '__ci_last_regenerate|i:1662179582;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910f2e960f93357f10e559fe728bdf8152140fbf', '205.210.31.177', '1677977816', '__ci_last_regenerate|i:1677977816;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91131a9a14604c3d3969c9e454d5b38132ab1c14', '190.237.172.147', '1614568400', '__ci_last_regenerate|i:1614568099;local|s:1:\"1\";listaVenta|i:542;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614437584\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:26:\"Venta efectuada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91152a8d91b147ffcfef386168c192da04baec68', '198.235.24.34', '1669701017', '__ci_last_regenerate|i:1669701017;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912d3677ba615b6dba965a5091be8b45c2dfbeda', '205.210.31.12', '1659766470', '__ci_last_regenerate|i:1659766470;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912da7c28a3fa9fabf87a29a4393c638f8c0d752', '186.1.135.71', '1613683369', '__ci_last_regenerate|i:1613682023;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9132392a22308a1e864ea3445f772cd2bbd2c4ca', '205.210.31.26', '1670106339', '__ci_last_regenerate|i:1670106339;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91549ce613586c3500df141a31864e75ddb45e0e', '186.1.135.131', '1617631190', '__ci_last_regenerate|i:1617631190;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617285684\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917259d22831750875a31e33968cbf656e2b144f', '198.235.24.8', '1659736277', '__ci_last_regenerate|i:1659736277;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9174ce3a0b3cd103510cb1d557435d7cb8ae5c4d', '35.239.10.44', '1656190998', '__ci_last_regenerate|i:1656190998;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9185e1013e10f5c372f94eed5e3ff5a2003b1f74', '213.202.233.34', '1617634323', '__ci_last_regenerate|i:1617634323;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918bdd990607c67b3e5ca69b8fcb7b037f109005', '186.1.135.79', '1611930528', '__ci_last_regenerate|i:1611930328;local|s:1:\"1\";listaVenta|i:388;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611926657\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919a456515db7abb876b083a759e225da8cc0783', '2.57.122.25', '1697156245', '__ci_last_regenerate|i:1697156245;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91b1dac232c41b44eeb9ea216acd0d2fb41162da', '167.248.133.61', '1654080976', '__ci_last_regenerate|i:1654080976;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91b8e577e34c21bad81ecf7c22ffc619bace0124', '179.6.222.7', '1617984797', '__ci_last_regenerate|i:1617984596;local|s:1:\"1\";listaVenta|i:1677;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c8d76f09cafc2bc36091f9d88a5f6469595c87', '186.1.135.130', '1617046511', '__ci_last_regenerate|i:1617046249;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c8ef75787eba49aca574736cdf6b368f73ba27', '172.234.49.237', '1696391397', '__ci_last_regenerate|i:1696391396;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ce110e4ae3928ec0cc99b0470d34e68b484b66', '186.1.135.134', '1614114532', '__ci_last_regenerate|i:1614113949;local|s:1:\"1\";listaVenta|i:248;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614094323\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91de136e0277f6569d1620bf1832c0fa', '45.177.196.194', '1673648060', '__ci_last_regenerate|i:1673648060;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f4fe40aab0ac41db62449ed6105b80a3ef0dd4', '190.237.30.221', '1620517949', '__ci_last_regenerate|i:1620517949;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91fda49061026c61dedb92013affc0e59073919e', '179.6.212.129', '1614981972', '__ci_last_regenerate|i:1614981569;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614974723\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9207a61029534066af4902ba0669bbc2f2d062fc', '128.90.168.52', '1678885390', '__ci_last_regenerate|i:1678885390;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9214f911b2cae3021d5171cbbd6f1cb828776115', '179.6.212.129', '1614700285', '__ci_last_regenerate|i:1614700034;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('921f5aa78e9b1b40f6ec4744bbbdddc31fa8a701', '167.248.133.185', '1680917523', '__ci_last_regenerate|i:1680917523;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9241c69eea47285a96b3b68480f71559b144c67c', '190.237.172.53', '1616092449', '__ci_last_regenerate|i:1616092295;local|s:1:\"1\";listaVenta|i:271;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924a90f9d367b9d30d6002929397ea16d7bb981b', '34.245.78.161', '1683795787', '__ci_last_regenerate|i:1683795787;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925213821c4dc23d74cd193a632c2138ea9c9c5e', '162.142.125.223', '1679590484', '__ci_last_regenerate|i:1679590484;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925bed466de041b65d57c58fa537fd4b7cc6dab0', '159.65.169.77', '1694237726', '__ci_last_regenerate|i:1694237726;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925cd85c793facd01ff0a68e0e9bec85b7142d16', '167.94.138.36', '1679013477', '__ci_last_regenerate|i:1679013477;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9263b035ab8b8715f84e4679ea59b38ff4c6481e', '148.102.23.16', '1618943788', '__ci_last_regenerate|i:1618943401;local|s:1:\"1\";listaVenta|i:493;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618854951\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('926e400bfe1674a29b96c32372a410f766abe3a9', '159.65.169.77', '1694237726', '__ci_last_regenerate|i:1694237726;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9274326334d928869e6a2b3f7b4f3afdc632b5db', '198.235.24.199', '1696363124', '__ci_last_regenerate|i:1696363124;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9279722ca30b6356274e6334f8329a833655d1fd', '190.237.172.53', '1616082572', '__ci_last_regenerate|i:1616082570;local|s:1:\"1\";listaVenta|i:596;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616081718\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000316\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92802caf4b9a236960b2c470c6a0033664314ffa', '175.24.232.97', '1623535993', '__ci_last_regenerate|i:1623535993;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('928c54e1d4bb776c5ae4b9fa24ba7ad2f41e9906', '179.6.212.129', '1614704149', '__ci_last_regenerate|i:1614704149;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a438c604a10ceb0c159718ca0f0a58c8d2a972', '205.210.31.162', '1676175001', '__ci_last_regenerate|i:1676175001;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a684968eed96656378c72657576f982b9d417b', '148.102.26.11', '1621605190', '__ci_last_regenerate|i:1621604648;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92b61511958c54ce6a119cb53b1ca09f5697606c', '198.235.24.180', '1696954349', '__ci_last_regenerate|i:1696954349;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d5c354b3a37b459c8123c82b31a8b3c53fad5d', '65.154.226.165', '1627454641', '__ci_last_regenerate|i:1627454639;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e80e52778ef6fd6e52c83715978b97c5baa92a', '34.241.77.13', '1624208595', '__ci_last_regenerate|i:1624208595;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ee384dc0279c86a76861f387378a76406598c0', '82.156.185.91', '1623526554', '__ci_last_regenerate|i:1623526554;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ef1736e3134574c498e6cf5dc56a96d5581aef', '183.136.225.44', '1683543466', '__ci_last_regenerate|i:1683543466;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fbb1b9be39d9666c1087ae269fc83b9ee94ede', '148.102.26.11', '1619199097', '__ci_last_regenerate|i:1619198940;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619198509\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9300b4cbd91974dd867e6e51f80263eb55515217', '46.101.73.109', '1677127143', '__ci_last_regenerate|i:1677127143;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9338bb86ac51d1f5aa7800a2e65253aef9dfb247', '15.228.76.186', '1622650234', '__ci_last_regenerate|i:1622650234;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('933cc5d7aede61d9406b2dfad542935bca4d94d6', '139.59.18.158', '1695437170', '__ci_last_regenerate|i:1695437170;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('934290aba8d8137cda2e0579981c9dc71fe071bb', '183.136.225.46', '1688843494', '__ci_last_regenerate|i:1688843494;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9347af84888a699c784e8756303e6ec401eb3965', '18.234.176.80', '1631294087', '__ci_last_regenerate|i:1631294087;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('934dfe06e8132251e50096619e41d04754256aa6', '190.237.172.147', '1614567408', '__ci_last_regenerate|i:1614567106;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614437584\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9365d331e044555113fa120c97512592f2e985e5', '148.102.26.11', '1620859087', '__ci_last_regenerate|i:1620858761;local|s:1:\"1\";listaVenta|i:516;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620846580\";last_ip|s:13:\"190.239.71.47\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9368dea876b8e78843cb08ccd2174f70ba55d977', '190.232.180.131', '1613056427', '__ci_last_regenerate|i:1613056425;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612903184\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93708703a17995262f8e4bd1e8e6d722e59328a3', '152.32.154.144', '1678555496', '__ci_last_regenerate|i:1678555496;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937967c174ffb7b2a94c09f9e90003399ac7722d', '205.210.31.53', '1693034129', '__ci_last_regenerate|i:1693034129;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9381d8529df8f3421739dee217415a78ea26736e', '186.1.135.129', '1618237666', '__ci_last_regenerate|i:1618237375;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93851224b8290fcdb0542c9e2cf70267eb362b16', '18.229.162.201', '1622239908', '__ci_last_regenerate|i:1622239908;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93873d420fafa97f0f786122da3f831c1e899577', '198.235.24.206', '1683894372', '__ci_last_regenerate|i:1683894372;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93a3b901ffb2a07fd55a73253754c779b5034a0e', '190.232.180.131', '1612903638', '__ci_last_regenerate|i:1612903388;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612895575\";last_ip|s:13:\"190.238.217.9\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93cd779f9a64f48f4fe777e9b456a0ff8f2f2b2c', '92.118.160.41', '1619493547', '__ci_last_regenerate|i:1619493547;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e33877db3ba5171f5b1eeea6715ca8a5604d35', '54.207.7.48', '1621872545', '__ci_last_regenerate|i:1621872545;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e8984b98d45134e9cd428a0a425e7e097e9c6d', '186.1.135.130', '1617055482', '__ci_last_regenerate|i:1617055459;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e98ba9498bbb87a034fa4ef30d466db6e5808a', '::1', '1598564124', '__ci_last_regenerate|i:1598564094;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598362856\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94047b5fdf354743741d64b1b9c2ff4f617dcaad', '45.33.108.82', '1668919084', '__ci_last_regenerate|i:1668919084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('941b060be52440a886ab430253945668e1088af9', '15.228.42.231', '1622574623', '__ci_last_regenerate|i:1622574623;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9428d864f7ca935b0b6b67fad521d93562e26a24', '38.25.16.150', '1670990684', '__ci_last_regenerate|i:1670990665;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670943321\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9440586d3c294345abc72f8a3a582b206bbb57af', '190.239.78.92', '1620661848', '__ci_last_regenerate|i:1620661692;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('945280ea3b61409ddb7d443d4759b1e610b8b932', '148.102.26.11', '1621634307', '__ci_last_regenerate|i:1621634009;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621604658\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9468f3238596e9dd3361fc5ce8d05c334d0e52f2', '198.235.24.30', '1659322884', '__ci_last_regenerate|i:1659322884;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9472ca30a572b72500273f46c696102dd4ea2094', '42.192.11.192', '1628898813', '__ci_last_regenerate|i:1628898813;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94759789a080ad3155ff32a351c5c1e0cb905ea4', '190.238.217.6', '1611695896', '__ci_last_regenerate|i:1611695806;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611172369\";last_ip|s:13:\"190.238.217.9\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"jD+bRAiIr3l65FUfstPE5acd7zFavY9aH6UD/7D09XYyZ9odLjO3gZ3c6jCFSll4XGBY0PkVfl1Bs2aCuUwYUA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:0:\"\";pass_sol|s:0:\"\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947c6ed180a93525d57aa5f694e7fad3b8a4a215', '186.1.135.150', '1613154999', '__ci_last_regenerate|i:1613154915;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613136259\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948b046d3835134a7d1b809d2c9cad2d3a426b89', '38.25.7.251', '1652380166', '__ci_last_regenerate|i:1652380160;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9495363bde3bdf606bd72deb001ea54845d89c64', '38.25.16.184', '1698957682', '__ci_last_regenerate|i:1698957433;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a8228ae8cdaf76b12cb64511019df0fbd77d32', '205.185.127.165', '1682234361', '__ci_last_regenerate|i:1682234361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b235dc7b31ae26fcafad6f2426dc0bf337d03a', '161.132.234.14', '1623439666', '__ci_last_regenerate|i:1623439664;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623416241\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94be41d484e6b76837dc3e282aba3edfe32edf1a', '186.1.135.129', '1617809121', '__ci_last_regenerate|i:1617809018;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e1ca07f90ffaca93db5aedbb911d80159233fa', '205.210.31.174', '1694587158', '__ci_last_regenerate|i:1694587158;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f039e03c8f6c8826b14590dee60a492739c6d6', '34.71.227.84', '1656041413', '__ci_last_regenerate|i:1656041413;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9504da676aea0bc4c2525a965d7e4c02618ca848', '198.235.24.23', '1695598839', '__ci_last_regenerate|i:1695598839;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9517f21c33c662cb7185fe08e722b58daad053f6', '186.1.135.66', '1616445179', '__ci_last_regenerate|i:1616444879;local|s:1:\"1\";listaVenta|i:399;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('951b94332afb1c1fa67d23049f79579c191c1a32', '35.238.28.10', '1655475879', '__ci_last_regenerate|i:1655475879;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952f9209ec57ab13f7bc62cf7b833766961884e0', '132.184.128.61', '1613531753', '__ci_last_regenerate|i:1613531507;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1613055273\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9533607bd8744aef024ed55c42ea7fbf1d7b4034', '190.239.78.92', '1620674509', '__ci_last_regenerate|i:1620674270;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953a6425ac09be57b55929f839861fd7dd7684d2', '186.1.135.129', '1617825118', '__ci_last_regenerate|i:1617824864;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953f9f1ef3e982c0e1e34f4b170196a1d98f3783', '198.235.24.31', '1696451301', '__ci_last_regenerate|i:1696451301;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95871947c4030ffb4f7295c5c5fe71ba46eb0604', '190.43.38.234', '1619973737', '__ci_last_regenerate|i:1619973736;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958d24c0377d97e83c6bb8f0937b5266ec707fc5', '109.30.248.88', '1654331913', '__ci_last_regenerate|i:1654331913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95a94a652d73f0065b8c80b1ce32a3cb32b96e2c', '148.102.26.11', '1621278982', '__ci_last_regenerate|i:1621278959;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95aacc79f808a28a5e0ac9fd35b1ee99', '54.233.133.239', '1622146053', '__ci_last_regenerate|i:1622146053;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95beb118e48a829565f981c7eb5143f469dc7c35', '132.157.130.59', '1611853713', '__ci_last_regenerate|i:1611853598;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611850937\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.png\";pos_logo|s:1:\"2\";logo_pdf|s:16:\"logo-empresa.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"6IcuiBi+sLGJmxVVNSGXQ9ncDFDa64me37pEMLywro/1DbHfz2V5+1/6JRSDp4t8xRi4oJyvuM78Tu77ez8W/g==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95edac5c62fe4323fd9c66927403318a', '45.177.196.194', '1674848333', '__ci_last_regenerate|i:1674848333;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674848329\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f0cccfe32f8408293ed532991071ee44efe758', '186.1.135.130', '1617038423', '__ci_last_regenerate|i:1617038279;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000348\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('960516ee44688e8fb8a59dbcc52ce85a5067593d', '143.110.180.98', '1659145279', '__ci_last_regenerate|i:1659145279;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962c73437c1f3e2c1ef2f89b4fd9003be06e3e67', '205.210.31.146', '1660558260', '__ci_last_regenerate|i:1660558260;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963b421d0d558f3ba191cfb21f1c564e781be6a7', '18.230.193.178', '1621887479', '__ci_last_regenerate|i:1621887479;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963cd3816e03f65a593092efb48e342fc253c43a', '181.67.2.242', '1687994891', '__ci_last_regenerate|i:1687993852;local|s:1:\"1\";listaVenta|i:1754;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968167\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964054e3bd7f11dfd382d2b6580a6b0c659e9f6a', '34.252.16.31', '1692437279', '__ci_last_regenerate|i:1692437279;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964844c41487815a3e907877d110c37cc1f8f376', '183.136.225.46', '1684205599', '__ci_last_regenerate|i:1684205599;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96641aeac7eb99318ae0779ca99157c15cbb0571', '38.25.16.150', '1671211174', '__ci_last_regenerate|i:1671211174;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967750087cae6b6c310e29a988029c8130ca3b61', '34.236.18.197', '1618665466', '__ci_last_regenerate|i:1618665466;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('969082710af715d62c962870ffcd0da28ad70955', '144.91.106.14', '1690768649', '__ci_last_regenerate|i:1690768649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9697a8ecc2bcfa887d0bf4e3f3edece7822f95b5', '132.191.2.181', '1621455506', '__ci_last_regenerate|i:1621455506;local|s:1:\"1\";listaVenta|i:158;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621438505\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('969c5fb5f18c811bd7358ccae2af20352540ccc9', '35.224.253.179', '1657323450', '__ci_last_regenerate|i:1657323450;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('969f454111259ef9b50854289af9ded29dd194f2', '13.233.73.212', '1621055811', '__ci_last_regenerate|i:1621055811;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96a49732361d36fb26de157061dbc03641efbcdf', '190.239.78.92', '1620668441', '__ci_last_regenerate|i:1620668441;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b1d6ec346243945405c73962da8a440e8d6210', '35.222.220.90', '1655858342', '__ci_last_regenerate|i:1655858342;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b668fd3e364dff8ac7417d183006ab28e01edc', '52.49.104.125', '1670369702', '__ci_last_regenerate|i:1670369702;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c4495b5cfa956c1772462a685ed5e31fa9da5f', '186.1.135.140', '1614882417', '__ci_last_regenerate|i:1614882380;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614871404\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96d8ef001744cbc9c44097ad55ee2e936d50911f', '3.250.145.225', '1637007085', '__ci_last_regenerate|i:1637007085;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96fedad3da245eb98cf880ad53ae0ebebf78259d', '190.239.64.130', '1621437753', '__ci_last_regenerate|i:1621436731;local|s:1:\"1\";listaVenta|i:176;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621272235\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('970a267e99260144fc1efd6a836342ff28b88998', '190.232.180.131', '1611942054', '__ci_last_regenerate|i:1611941789;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611928932\";last_ip|s:14:\"132.157.130.10\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";error|s:83:\"La caja no está abierta, por favor introduzca el valor de la caja para la apertura\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('971a8e95c399e25773a1662a89786e9a330d59bc', '198.235.24.247', '1689359547', '__ci_last_regenerate|i:1689359547;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973bd700c89f6f5855d8f7d9ea31b81e4fee58e8', '190.239.78.92', '1620661263', '__ci_last_regenerate|i:1620661047;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97439d5aa4d12341a9140fccdae53357085e8a50', '47.251.15.21', '1689782421', '__ci_last_regenerate|i:1689782421;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974a49de2323b25eed0d2c93d0580d1423c22d0a', '47.128.62.238', '1695984713', '__ci_last_regenerate|i:1695984712;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('976bab6b66489ae67d344b374678627890da4a52', '144.91.106.14', '1680462557', '__ci_last_regenerate|i:1680462557;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('977d621c85b51d19c62f7935fd4e3fedd0bcfdd9', '190.239.70.53', '1616082527', '__ci_last_regenerate|i:1616082515;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616081843\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('977dbe3bd58aec63f99846d460879dc20c0241ab', '106.75.148.47', '1693858933', '__ci_last_regenerate|i:1693858933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('978486360886a7d22c542b710ea348dac0913dac', '205.210.31.192', '1687269065', '__ci_last_regenerate|i:1687269065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9797b86cc491089eddee374673a793c018650a71', '205.210.31.44', '1695677568', '__ci_last_regenerate|i:1695677568;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97b0edb2bbe090f49f6a76a1f93cb83621cd0e18', '38.25.16.38', '1695658533', '__ci_last_regenerate|i:1695658524;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1695397811\";last_ip|s:15:\"201.230.205.235\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97bc556b94cdc26e39d513e9e786f6b2aab3bf4f', '167.248.133.186', '1681394074', '__ci_last_regenerate|i:1681394074;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97be7b9bd675b855c0726f4152440d1faebc4fb3', '148.102.23.16', '1618341619', '__ci_last_regenerate|i:1618341421;local|s:1:\"1\";listaVenta|i:457;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618335487\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c84b697dd63fa9927957255ec1f54f72bee63d', '18.184.155.204', '1617694830', '__ci_last_regenerate|i:1617694830;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e8217d6a2c0a5e6c5a252d6314b061350f87fa', '38.25.16.18', '1672888468', '__ci_last_regenerate|i:1672888467;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97edb4b013be3c2df8387ffd1b18f2964cdfc947', '183.136.225.45', '1694889299', '__ci_last_regenerate|i:1694889299;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981351ed527f09850b2754a73c722134cd6bd0e4', '206.81.18.4', '1635351209', '__ci_last_regenerate|i:1635351209;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981e1b42f8d2a0c8c5334933cdf693670b0574ca', '181.64.105.12', '1622233692', '__ci_last_regenerate|i:1622233621;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622211688\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9825db78eb3f0049fbe965e2ffbd22755a3c6e7e', '35.224.131.184', '1656861067', '__ci_last_regenerate|i:1656861067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984540628702db903a985dd0834a47c43f21ab5e', '205.210.31.140', '1663424373', '__ci_last_regenerate|i:1663424373;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984663f3bcb2bdc3263a70fe41386e6d6a34adcf', '162.142.125.211', '1658851914', '__ci_last_regenerate|i:1658851914;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9847e8a27c0988b536ae6838bd150073dd7eb789', '205.210.31.6', '1677867200', '__ci_last_regenerate|i:1677867200;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984a53f8715060758eba938aa16dd75b7d8a8421', '148.102.26.11', '1619539367', '__ci_last_regenerate|i:1619539367;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('985d6caf092aa7f6fdc0f66a48f5a3d8c404444c', '18.219.38.43', '1698013924', '__ci_last_regenerate|i:1698013924;error|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9866b43819fc61f8edd44569bd0681d537c98cfa', '34.243.140.62', '1683124569', '__ci_last_regenerate|i:1683124569;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98670dfce8b3d5b5d55af11f3584e7b18a1a00d3', '207.148.127.89', '1694391512', '__ci_last_regenerate|i:1694391512;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('986aa4b8f8ab8f793cc6f7dddac70ca9040ec354', '18.221.206.247', '1623999862', '__ci_last_regenerate|i:1623999862;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('986e78c8d5b15cdda5ff365eed15912125344f02', '198.235.24.174', '1665556057', '__ci_last_regenerate|i:1665556057;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98756b65967d865ff2b38f3158ce5e89458597c2', '190.236.0.145', '1617202741', '__ci_last_regenerate|i:1617201021;local|s:1:\"1\";listaVenta|i:791;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9876a9ae058a5f51b800c059890e4145d6ed250c', '179.6.212.129', '1615481893', '__ci_last_regenerate|i:1615481893;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615470525\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9879d80a54570eccb6288ac39048855562bfb582', '132.184.128.122', '1611866072', '__ci_last_regenerate|i:1611865789;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611854258\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a0a9fa5668f9e8bf686d5ce48b2af2d899b977', '190.232.180.131', '1612208269', '__ci_last_regenerate|i:1612208266;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612023959\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b504305956279536e74b604a9fbe6dc26e9d2a', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98bc8a2874131f5a36f5857fb8d17f590267359e', '64.225.15.246', '1665209257', '__ci_last_regenerate|i:1665209257;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c61687ef18033217a0d4a0ac9e17d58bf33351', '18.156.118.149', '1681938075', '__ci_last_regenerate|i:1681938075;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e01c4fb198f83b820942c904875b255dfae7ea', '198.235.24.170', '1669408815', '__ci_last_regenerate|i:1669408815;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e2ed5bad7775b6d49a6ecbeec1514cecdb9db6', '92.118.160.45', '1630310385', '__ci_last_regenerate|i:1630310385;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e701133de93143b2b34fe768485e99ff2f98eb', '190.237.30.46', '1622158814', '__ci_last_regenerate|i:1622158525;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622158503\";last_ip|s:13:\"190.237.30.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ed7dbe336bf57e3fcc4fe1378012d0f0c57203', '198.235.24.168', '1680688007', '__ci_last_regenerate|i:1680688007;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98edcabc1da723624aaff02a48f5a1dcba92483b', '148.102.26.11', '1620060199', '__ci_last_regenerate|i:1620060164;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620052779\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98fee491a94ffeb806be8bc4a0af4a70d1c2f578', '201.212.119.152', '1614055619', '__ci_last_regenerate|i:1614055594;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1613582098\";last_ip|s:14:\"190.236.31.249\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990127b00a26a54da577d63bd850bc57fb3a77fd', '148.102.22.241', '1616690478', '__ci_last_regenerate|i:1616690218;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616689108\";last_ip|s:14:\"148.102.22.241\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990217fcca4acdc7cc3f582762e1e222e1282cd5', '87.236.176.111', '1693030745', '__ci_last_regenerate|i:1693030745;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9910e2af9e0375db980c0713736012f83d732cce', '138.68.133.118', '1683172262', '__ci_last_regenerate|i:1683172262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9917671dcfb08774b8fdcee4e42bc2dd', '181.64.223.213', '1624915164', '__ci_last_regenerate|i:1624915164;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('992b7c96843b4af13cde15508dbc6cdd41e932b2', '51.255.62.3', '1654335005', '__ci_last_regenerate|i:1654335005;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('992edf5db6da6dec54a51c3aec729e016eb96f4f', '161.132.234.14', '1632763978', '__ci_last_regenerate|i:1632763656;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1632699012\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994c2ac66d8b6594c6134f1415fe88a90a13ad5c', '188.165.87.110', '1669071649', '__ci_last_regenerate|i:1669071649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994e8d9937d2e1e2e10a3fe677b9dc25f1fa3fc3', '65.154.226.170', '1684983829', '__ci_last_regenerate|i:1684983829;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('995dd12577fb60c4089958bdd155186b6f7c5824', '34.250.18.162', '1680335490', '__ci_last_regenerate|i:1680335490;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9977e3fe444555e185c51a299f69be3c2b1f570e', '190.43.38.134', '1621693936', '__ci_last_regenerate|i:1621693924;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621693485\";last_ip|s:13:\"190.43.38.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997d056fc24241324b67dcee8ad5a1e3ae5d9160', '165.227.232.121', '1668919084', '__ci_last_regenerate|i:1668919084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998560faa3d67bcce1b86cf15cf50a65007d6239', '52.64.20.252', '1617552984', '__ci_last_regenerate|i:1617552984;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998e4957ed06764dc7d709c9c8bf7dfdb78d3b28', '216.173.111.207', '1683172222', '__ci_last_regenerate|i:1683172222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9996f33603e5f3c6e620461579a14600bf37b7bc', '69.167.12.34', '1680859109', '__ci_last_regenerate|i:1680859109;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c2d209eac2336d5e05f32822d27107fd4108b5', '179.6.222.7', '1617976208', '__ci_last_regenerate|i:1617976206;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e17c8bd266615fc54dda7512cbd124dc4e0a18', '181.64.105.12', '1622211697', '__ci_last_regenerate|i:1622211685;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622210824\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0f768331286c937cdc1b7cfc3011ad772eca32', '198.235.24.164', '1673649531', '__ci_last_regenerate|i:1673649531;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a11735963c6c200887250bbae224fa6c01b16b6', '34.77.162.16', '1634621975', '__ci_last_regenerate|i:1634621975;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1ef88e2975caa7b7ed744b1a6700ed367acaec', '190.192.49.231', '1615561480', '__ci_last_regenerate|i:1615561480;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1614611178\";last_ip|s:14:\"190.239.238.60\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a357cdce6fe181030a786578712aca92970369b', '209.45.53.14', '1680468389', '__ci_last_regenerate|i:1680468389;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a47dac64cfdc49139cee0fad517294b066e5fe1', '186.1.135.134', '1618587436', '__ci_last_regenerate|i:1618587147;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618515261\";last_ip|s:13:\"186.1.135.154\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5148f35a84730b3cbf48f8bf414bc13d4a0bc5', '::1', '1598579326', '__ci_last_regenerate|i:1598579326;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5c00af2544ddf112420556ccaaa26404a5fe62', '175.24.232.97', '1623273696', '__ci_last_regenerate|i:1623273696;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a79ab319add110ca9f9ad389b842cf1f11049be', '205.210.31.44', '1681283637', '__ci_last_regenerate|i:1681283637;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8592c4b9011b8671e74644f20cb067e925708e', '181.67.2.234', '1689051889', '__ci_last_regenerate|i:1689051796;local|s:1:\"1\";listaVenta|i:32;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688746748\";last_ip|s:12:\"181.67.2.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a9545f43dab015b046325ed60a05b3178ff62e0', '181.176.104.136', '1675097202', '__ci_last_regenerate|i:1675097202;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a9864e6b8f782cb0db5e88d8dca2b863f0ce04b', '161.132.238.121', '1629208588', '__ci_last_regenerate|i:1629208476;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1628870101\";last_ip|s:13:\"190.43.38.246\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa0fa15f074264e9e61886c3657c54b4d69d482', '45.177.196.194', '1681421296', '__ci_last_regenerate|i:1681420968;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1677334203\";last_ip|s:12:\"181.67.49.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa178ce4f50d732b46e3fdbbefa5e9256ecaea6', '159.223.227.125', '1688724357', '__ci_last_regenerate|i:1688724357;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa6266ab3acc72750616548d3d26465fc85656c', '190.237.172.96', '1616854558', '__ci_last_regenerate|i:1616854556;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616847991\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000338\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac49f46d87ef38f226996d401c5cf681e180746', '101.68.211.2', '1691999513', '__ci_last_regenerate|i:1691999513;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9adb49d597e840bd57f30d8756b362eff24b8213', '34.254.60.106', '1692837571', '__ci_last_regenerate|i:1692837570;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae5226380e7242ab1b86815c42af744b722fdd2', '186.1.135.133', '1612268872', '__ci_last_regenerate|i:1612268872;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aea34145770a8ff7a2bc13f5605778665e2cfac', '179.6.222.7', '1617123928', '__ci_last_regenerate|i:1617123746;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000354\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af22fc690c26f6ce039a95a8e84022a3adc283d', '3.80.199.119', '1654292967', '__ci_last_regenerate|i:1654292965;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9afc287ec27d7cd2079f0b6af871c4a4f6b8fff3', '51.15.191.81', '1617699280', '__ci_last_regenerate|i:1617699280;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9afdf3af05b0d76c94f897d3e545e5efca1ee233', '199.195.250.129', '1675087195', '__ci_last_regenerate|i:1675087195;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b08f73b112bae4718a0cdc9e9a4bc89c6e3ee91', '148.102.26.11', '1620235794', '__ci_last_regenerate|i:1620235665;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b0ae3b4094b41d24a77c284115f61730ee4d971', '186.1.135.149', '1616792844', '__ci_last_regenerate|i:1616792539;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616768418\";last_ip|s:13:\"186.1.135.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b38a8a84d2d56acd40435ce2557e93df53aee41', '92.118.160.13', '1622435038', '__ci_last_regenerate|i:1622435038;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3c11f3c62dc7c42f8e181de89bf5161c8a1ac1', '170.64.170.150', '1680656512', '__ci_last_regenerate|i:1680656512;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3d0b3c9cbdfcbe509f06c07d5e1f5fddbc40d1', '40.94.34.24', '1671410784', '__ci_last_regenerate|i:1671410776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b49cad40d9b49dcfd6c3444059cc3c1c9587cbf', '161.132.234.14', '1625632849', '__ci_last_regenerate|i:1625632847;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625619479\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b9c8826c4e95b692681b065678aa3c0d1084d67', '198.235.24.42', '1678251338', '__ci_last_regenerate|i:1678251338;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b9d04def210b41f20f133cd772f83c975b01139', '167.248.133.117', '1668055826', '__ci_last_regenerate|i:1668055826;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ba928dba4a5c8a16ac36c66214a92dc7d56355b', '190.232.180.131', '1613060555', '__ci_last_regenerate|i:1613060412;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612903184\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9babc93ad90965656630694e29b924b5f8347de6', '186.1.135.153', '1618411701', '__ci_last_regenerate|i:1618411375;local|s:1:\"1\";listaVenta|i:50;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618347322\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb2097e479e9d145cfa072b4a9256440b58630e', '44.242.142.63', '1681744639', '__ci_last_regenerate|i:1681744639;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bbe24d779056cd0bcd90fc09f038888660f67a7', '188.166.247.165', '1661790689', '__ci_last_regenerate|i:1661790689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bbe6d6d8e55443eefc8b2d176b6561c15bbcebf', '161.132.234.14', '1625592816', '__ci_last_regenerate|i:1625592815;local|s:1:\"1\";listaVenta|i:1;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625199290\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc3aec62169da3f00e999f739a36832bd16c41b', '198.235.24.83', '1684839215', '__ci_last_regenerate|i:1684839215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd6d68ec30c7475335d9cbf3139119bf0b51977', '87.236.176.216', '1677854742', '__ci_last_regenerate|i:1677854685;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be8b81eb3a1a531575050f05c763ae6064137d5', '190.239.238.60', '1614604767', '__ci_last_regenerate|i:1614604498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bedb0fbc6e7355942303a839242eb981a97cd4c', '205.210.31.132', '1659255589', '__ci_last_regenerate|i:1659255589;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c123c6e68a5e3ce4c1641bae312c86925d04c5c', '190.43.38.134', '1621695636', '__ci_last_regenerate|i:1621695636;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621695317\";last_ip|s:13:\"190.43.38.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1c53e76eb11cba3bd443ab37c860264faf7b49', '205.210.31.27', '1658558898', '__ci_last_regenerate|i:1658558898;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1cff3c6cb41706eac1a64884d390ae50c2a37a', '142.54.224.196', '1679349898', '__ci_last_regenerate|i:1679349898;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c2c058466c8bf2dc4959b98a62752ef6257a43f', '38.25.16.150', '1670901679', '__ci_last_regenerate|i:1670901454;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670874527\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c519d8349f2de750d6a49bc13adfe3c3ca2e97f', '186.1.135.141', '1613424957', '__ci_last_regenerate|i:1613424942;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613423567\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c77154d19f2f3b32afdb790c3f7b4b47b673709', '201.230.205.189', '1681784764', '__ci_last_regenerate|i:1681784510;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c7a1fe70cb4d92edd7a54a71b9eb7c4240692c3', '161.132.234.14', '1625151029', '__ci_last_regenerate|i:1625150744;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625115021\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8cce6f5e88a8499a5a3ccd481499c3ef6b4c0e', '82.193.104.168', '1662923113', '__ci_last_regenerate|i:1662923113;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c9afb013095f8e7693e58a804222d628d1eee11', '106.53.83.56', '1628042007', '__ci_last_regenerate|i:1628042007;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ccf6de2281dee47705eb2e32f4bc099b325d8cf', '205.210.31.38', '1666101957', '__ci_last_regenerate|i:1666101957;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cd12817cb9171f11d21fc6d9bf4ef9be7190616', '205.210.31.153', '1656047558', '__ci_last_regenerate|i:1656047558;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cda04d1c441c92e273231bf9efb730b8d807b33', '198.235.24.234', '1686287215', '__ci_last_regenerate|i:1686287215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cdcb4e1c69050a43f19528d9883ed590826b081', '167.248.133.186', '1679594661', '__ci_last_regenerate|i:1679594661;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce0f16b7886c303bb0ab5c5fd8c98548be88d05', '183.136.225.45', '1694884065', '__ci_last_regenerate|i:1694884065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf16a2043f70c9b63bfdb9d8ad6ea908b338a52', '148.102.26.11', '1620943964', '__ci_last_regenerate|i:1620943599;local|s:1:\"1\";listaVenta|i:578;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620935983\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cfd431644a99edbb74e4b141c4ae1984ded2eb6', '198.235.24.109', '1693944033', '__ci_last_regenerate|i:1693944033;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d33e98f9a01e7ba4499f86e872a9c5dccc1e6ff', '92.118.160.17', '1628889735', '__ci_last_regenerate|i:1628889735;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d3a8ed12a758737f5cb830d18ce7c63515a132c', '186.1.135.71', '1613665639', '__ci_last_regenerate|i:1613665339;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613655953\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d3b398c43c49d889cda9c3b99f42f534c8d1f15', '179.6.222.7', '1616006244', '__ci_last_regenerate|i:1616005968;local|s:1:\"1\";listaVenta|i:271;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616004221\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d3b5ca3dd805a3328032513e33bcbb8c922d656', '167.248.133.63', '1663514498', '__ci_last_regenerate|i:1663514498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d3f54d092ac30405a91647775cb2984a7fa79cf', '15.228.46.110', '1621825557', '__ci_last_regenerate|i:1621825556;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d46aa71ca8dcf2a81b2ec8a333254294e1f3447', '186.1.135.66', '1616421419', '__ci_last_regenerate|i:1616421147;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616175755\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4c0a50a65eff30f8ac30859b739dd67d35f764', '45.177.196.194', '1670874654', '__ci_last_regenerate|i:1670874527;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1654473983\";last_ip|s:10:\"38.25.7.99\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d59d4ed8004846906b8d99ce63aee0d8f4b57f3', '205.210.31.3', '1691329913', '__ci_last_regenerate|i:1691329913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5b88b970221b4ef621c308e2d27693ded2a236', '101.68.211.2', '1690003380', '__ci_last_regenerate|i:1690003380;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8181f38a8d8409b870ee9d6b3eee2785c4c1c6', '190.43.38.246', '1628870817', '__ci_last_regenerate|i:1628870495;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1628362077\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dbc37ab48a50e4329500e520b76e0c5f1851dad', '179.6.222.7', '1617982099', '__ci_last_regenerate|i:1617981881;local|s:1:\"1\";listaVenta|i:1677;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000399\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dc25d0c8bf585a244337d966ba377eb64287735', '167.94.138.35', '1685373975', '__ci_last_regenerate|i:1685373975;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de4b119fca140408afed8ceff2f3aa2d5182a67', '52.64.20.252', '1617852208', '__ci_last_regenerate|i:1617852208;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de5c82ab1948e882764e8b6a84ca58829930713', '35.89.141.221', '1697680421', '__ci_last_regenerate|i:1697680421;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dff151eed0431d0ea70f08493cffa04e556fac5', '132.157.130.10', '1611930286', '__ci_last_regenerate|i:1611930146;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611927498\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e3da6da3ed1bcb601a5c346d2c249eb396f800f', '148.102.22.241', '1616697107', '__ci_last_regenerate|i:1616696598;local|s:1:\"1\";listaVenta|i:415;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e4165d14218977c429f6a3b017f7d7765b69281', '92.118.160.61', '1637377696', '__ci_last_regenerate|i:1637377696;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e4bd64a3e65974cf349e70158cda15a6218f4ff', '148.102.26.11', '1620231491', '__ci_last_regenerate|i:1620230331;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e54146664ed5b3348e06ed36d674a933290e702', '144.91.106.14', '1666570231', '__ci_last_regenerate|i:1666570231;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e57312901df9cf6091862c685a048aa96bb7f8d', '186.1.135.129', '1613742858', '__ci_last_regenerate|i:1613742635;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613680099\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e57b7826ff9429c3f7514dc06a5c6eaf9457af6', '148.102.26.11', '1621611852', '__ci_last_regenerate|i:1621611569;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7c4b9545935214472bcec182cf84c96eb24bcf', '36.99.136.133', '1682580170', '__ci_last_regenerate|i:1682580170;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e82787ba2f3a1607c21a2a52182b061caba96c7', '190.237.172.53', '1616098291', '__ci_last_regenerate|i:1616097940;local|s:1:\"1\";listaVenta|i:758;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616082515\";last_ip|s:13:\"190.239.70.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eacda87c3e857d6a84a6c0fcd3b00f6fd9ea65a', '205.210.31.164', '1680851262', '__ci_last_regenerate|i:1680851262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb2ad275cdb50fe1956cb1c10febcde05dbd589', '132.184.128.153', '1611888498', '__ci_last_regenerate|i:1611888417;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611885228\";last_ip|s:15:\"132.184.128.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"+z7f61s/dLkCLRE0OOqSHE8FssX9gUIWvfAJxohfAz4xfQDeVqK7CQ2hpfcNac17kZt61EkuglUMc37wfFOblQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:12:\"Ur7NTG9hrdzE\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb56aef5a0c2d8991633c21c7a2612db15eae61', '87.236.176.184', '1675281706', '__ci_last_regenerate|i:1675281705;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb5ad344be7e276c74be80c3eb3af5d37440af2', '167.94.138.36', '1680494403', '__ci_last_regenerate|i:1680494403;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ec4fe6fab7b204086db57eee41996cbff9e5f2f', '167.248.133.186', '1696553296', '__ci_last_regenerate|i:1696553296;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ec554656dfe2248921fe569675c1a47168a36ad', '87.236.176.163', '1693322117', '__ci_last_regenerate|i:1693322117;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ec72fd03f608ad57ad73f8d18001b9b88bfb47e', '38.25.16.18', '1672888632', '__ci_last_regenerate|i:1672888467;local|s:1:\"1\";listaVenta|i:80;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672885101\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed42bd50ea24235d8c5c70e9aced239143bcce0', '179.6.212.129', '1614698810', '__ci_last_regenerate|i:1614698598;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee2a2b185585f9f16676f40ad9d8363de76b990', '34.72.42.174', '1655833583', '__ci_last_regenerate|i:1655833583;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee35028afcee1e364b475a7649ae937a6801c69', '148.102.23.16', '1619623113', '__ci_last_regenerate|i:1619622734;local|s:1:\"1\";listaVenta|i:91;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619535621\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9efa8b83c6c52b3b0378eefc72d341d71051d933', '186.1.135.129', '1618241964', '__ci_last_regenerate|i:1618241781;local|s:1:\"1\";listaVenta|i:123;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9efcfec20905dd06d90c4f75f1d8d4667f2f1a68', '186.1.135.79', '1611873977', '__ci_last_regenerate|i:1611873713;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611848582\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0006cb06474f838af2184eae5a5ab2bdde72b4', '186.1.135.129', '1617810601', '__ci_last_regenerate|i:1617810376;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f06982715a52bf96a114d2f7f4a9359b80157a2', '186.1.135.141', '1617207927', '__ci_last_regenerate|i:1617207776;local|s:1:\"1\";listaVenta|i:1104;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000367\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f070c76e57d8613e8f7b64ea0af4a4a8dcbd0fc', '89.46.223.134', '1677350027', '__ci_last_regenerate|i:1677350027;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0b696979d2f51d05a1377aeb6ecba0322be51f', '38.25.7.251', '1652385965', '__ci_last_regenerate|i:1652385964;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f1f9a09fc3057f1cda31eeb9bc7961adeeceed4', '54.94.113.241', '1621721116', '__ci_last_regenerate|i:1621721116;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2e3f09298e4e1d07596334fee992d52d07add5', '201.230.205.189', '1681782014', '__ci_last_regenerate|i:1681781869;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f30b48603c078888d49696b2a718c476bf473e5', '52.67.237.198', '1621963420', '__ci_last_regenerate|i:1621963419;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f3b6449c82a809afae2d11e033c52bcce67c80b', '179.6.222.7', '1617118533', '__ci_last_regenerate|i:1617118409;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f44a103f892ed99d8dae4151fb97b3741c3f1c3', '186.1.135.79', '1611873402', '__ci_last_regenerate|i:1611873088;local|s:1:\"1\";listaVenta|i:2000;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4b7b97b97af7549cf94b695aa315f98f184540', '38.25.16.150', '1672113138', '__ci_last_regenerate|i:1672113043;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671740108\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4da4eefb7077f096bf377014d1d0b7db427c7c', '118.24.106.70', '1628794353', '__ci_last_regenerate|i:1628794353;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f614a7154cd59a40dd3db79789a1645b649cbb3', '178.128.219.183', '1689223306', '__ci_last_regenerate|i:1689223306;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f644c2e5562948aed238412712c6281ec2c5613', '193.202.80.150', '1654531044', '__ci_last_regenerate|i:1654531043;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f768b419f68c65caf1858f4a5cddb670f35e965', '186.1.135.134', '1612798401', '__ci_last_regenerate|i:1612797254;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f81d032f3fda13de8e986991e19f4ae', '34.86.35.26', '1622145804', '__ci_last_regenerate|i:1622145804;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f8a7f75fd76f30d9c1f76adb638ec3a13d1eb64', '34.77.162.6', '1623522837', '__ci_last_regenerate|i:1623522837;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f985803b33669e686794fe06917318c16e48f7b', '35.238.28.10', '1655475881', '__ci_last_regenerate|i:1655475880;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd64ef53693e3d813de0a7ddf902aee2f700034', '186.1.135.137', '1613654245', '__ci_last_regenerate|i:1613653985;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613592148\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9feefc358f86072d54570d00c763ff7f5ac52924', '199.45.154.51', '1698243557', '__ci_last_regenerate|i:1698243557;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff856717130d70d24431e341ed4215fe8d88f67', '186.1.135.143', '1615394596', '__ci_last_regenerate|i:1615394237;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a007b50a9edc410247db318ac34d25d48a7a23d4', '198.235.24.14', '1684667844', '__ci_last_regenerate|i:1684667844;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0088a20efa5c41fdf1eac074001a8f41d2fb029', '167.94.138.36', '1685685621', '__ci_last_regenerate|i:1685685620;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a009dcbdc64d22bae1e114d9152bf45bd55c550c', '186.1.135.71', '1613684684', '__ci_last_regenerate|i:1613684385;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a00fec7ca4e37619cb8033266f6a2decc8d6c283', '146.112.244.226', '1622579662', '');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0162095bdc9a61095a7bd331007c9756b831221', '167.94.138.34', '1680499129', '__ci_last_regenerate|i:1680499129;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a01dd48c9dc921566935ea3a45ede6cfe3590f82', '186.1.135.150', '1613163188', '__ci_last_regenerate|i:1613162226;local|s:1:\"1\";listaVenta|i:142;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a01e8d226e36db8f3e88baa89268284550a7caa4', '198.235.24.129', '1673690573', '__ci_last_regenerate|i:1673690573;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a025c2f90430b9433bae70949da63e1d2983864b', '205.210.31.20', '1655612943', '__ci_last_regenerate|i:1655612943;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a028410120924c869c88686516969790b852cc83', '161.132.234.14', '1622816508', '__ci_last_regenerate|i:1622816457;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622650086\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a03bd866a068a8ca0d464d8b934dae10780660c4', '186.1.135.132', '1612876578', '__ci_last_regenerate|i:1612876548;local|s:1:\"1\";listaVenta|i:57;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612819345\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0506211377ffa4ee1501e772115c426dcaa1aaf', '167.248.133.123', '1693871658', '__ci_last_regenerate|i:1693871658;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a062a489c08b330748bbb8763389f6c8804f7ba3', '92.118.160.1', '1624121185', '__ci_last_regenerate|i:1624121185;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07176e647f2c45b09d75d5e9560fca1dff2b1c2', '198.235.24.242', '1682453357', '__ci_last_regenerate|i:1682453357;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07697f81fb8d105302b2f009744672b1fc976e2', '198.235.24.29', '1673060429', '__ci_last_regenerate|i:1673060429;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a08bf81c6b29c21de60f8082907a34c6bf47e8c3', '179.6.212.129', '1612991457', '__ci_last_regenerate|i:1612991455;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612911590\";last_ip|s:13:\"186.1.135.158\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000275\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a091b7018a1ff7383cd2e7bb5bb234b537c00900', '162.142.125.210', '1677420551', '__ci_last_regenerate|i:1677420551;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0ae8deaa7ce897d3ba6a156ca0f73d1c6979c15', '198.235.24.152', '1663611253', '__ci_last_regenerate|i:1663611253;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b01ca63f46e5868b240797b0f01ae8396a7611', '205.210.31.133', '1665178931', '__ci_last_regenerate|i:1665178931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0cb113d07590f28c7626ebeec310e922240f909', '190.237.172.147', '1614568099', '__ci_last_regenerate|i:1614567762;local|s:1:\"1\";listaVenta|i:357;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614437584\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d2a5cc2bf96f39a3f2f9e450a4431fcc0074fa', '183.136.225.45', '1691418624', '__ci_last_regenerate|i:1691418624;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0de932e2010f1a5f2cd46c41719349a4932542e', '167.248.133.185', '1679568815', '__ci_last_regenerate|i:1679568815;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f35c2e6eb77a009823c1cd1aa0fda76c986f10', '205.210.31.152', '1666387277', '__ci_last_regenerate|i:1666387277;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1063b498675dd7ca380f497921228e410ddff46', '198.235.24.51', '1695546314', '__ci_last_regenerate|i:1695546314;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a10a1410230a3421a0c2909e7b2e14120c18a4d8', '205.210.31.3', '1673107057', '__ci_last_regenerate|i:1673107057;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11094ce7d2058ad827885b80bbac8de3993790c', '190.235.46.177', '1671730989', '__ci_last_regenerate|i:1671730862;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671666066\";last_ip|s:14:\"190.235.46.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a126c43761bc26943668864d0ea2cb6501e458b0', '148.102.26.11', '1619794313', '__ci_last_regenerate|i:1619794313;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12729875ff98811fbba4b28701848a85990b9a0', '183.136.225.46', '1684224776', '__ci_last_regenerate|i:1684224776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12e13582fec952df8991ebb27ba611cec8fdcba', '190.239.66.187', '1672172120', '__ci_last_regenerate|i:1672172079;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672159543\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1591e9516e7ec121def4ab0ab9f7727d106fdb1', '205.210.31.15', '1687320487', '__ci_last_regenerate|i:1687320487;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a164c562106d2ceb2560f27ef23ca9bd71335b90', '186.1.135.129', '1615237476', '__ci_last_regenerate|i:1615237061;local|s:1:\"1\";listaVenta|i:81;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615234680\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a182ef0062c66410f56acbad7a8032e09a69eb3d', '201.230.205.150', '1698858921', '__ci_last_regenerate|i:1698858920;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18e35bb17f47b85e1663cf6e0cb44a07219ed16', '144.91.106.14', '1678530003', '__ci_last_regenerate|i:1678530003;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1915341cdc75cf46fa25cb73b21599bdf627a16', '205.210.31.35', '1670156913', '__ci_last_regenerate|i:1670156913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b1960c6b1600b85aa63ef73427b75437550a78', '162.142.125.226', '1684306920', '__ci_last_regenerate|i:1684306920;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1f421ea2af2fbba69b9b4eaf5d3b4f4f76a5ecd', '190.43.38.234', '1619893050', '__ci_last_regenerate|i:1619893012;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2027e7b90d2d4b65b5e27293039adbdd18951b5', '198.235.24.138', '1658011399', '__ci_last_regenerate|i:1658011399;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2142372c7744636df4628a9a3a00abda9774f4d', '34.77.162.6', '1624081896', '__ci_last_regenerate|i:1624081896;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a224ba639f12d170600713000b45aeaf0d9ec9a9', '201.230.205.189', '1681781599', '__ci_last_regenerate|i:1681781374;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24ef74f99d430f3683b8179767b9162d4c31bcd', '50.54.130.20', '1663485689', '__ci_last_regenerate|i:1663485689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a267a0fb9b524ba5441e2b466464b7eb7adf7e42', '209.17.97.58', '1611392351', '__ci_last_regenerate|i:1611392351;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a26998e0f35b879cfb40b40a9676ddb9aa768468', '107.150.63.174', '1620654309', '__ci_last_regenerate|i:1620654308;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a26b62d8c8f1d4697bac4250b5e1b8efcbc3d15c', '92.118.160.61', '1619318931', '__ci_last_regenerate|i:1619318931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2732aac7b2ad14f8e20e10ffca5db8ac5385fde', '198.235.24.156', '1679729380', '__ci_last_regenerate|i:1679729380;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a286863fa23f764b76e4aa314b349805dd695c5f', '167.94.145.55', '1690531945', '__ci_last_regenerate|i:1690531945;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a28a9aad142ade344a9f674e91494e76fd5c6bc5', '186.1.135.130', '1617025804', '__ci_last_regenerate|i:1617025563;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000343\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2aeb07156d75c572730ac062cb58a35d46c39dd', '192.175.111.254', '1690877298', '__ci_last_regenerate|i:1690877298;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ed086083793f8c707cf206d5bfbb1e45d78d76', '162.142.125.12', '1695600468', '__ci_last_regenerate|i:1695600468;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ee30aca24d157ac4f1364a76101e5d46adb66f', '148.102.26.11', '1619192670', '__ci_last_regenerate|i:1619192228;local|s:1:\"1\";listaVenta|i:2069;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2f5fc7b87531ad818a4cd39b8dd0bc1a6d3cf82', '3.120.172.137', '1674220097', '__ci_last_regenerate|i:1674220097;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3163924213372e28b3a8ca3f8e9b43025b3852b', '167.248.133.191', '1682006073', '__ci_last_regenerate|i:1682006073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a326cda2d659f7f697b5a7a2c4258a7e906e54fc', '186.1.135.149', '1616791640', '__ci_last_regenerate|i:1616791416;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616768418\";last_ip|s:13:\"186.1.135.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000333\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a329a027b8e4e0d3be674a16f5677433e5e6df7e', '186.1.135.141', '1612459152', '__ci_last_regenerate|i:1612459148;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612454362\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000267\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a331d8401722382207dfca4e583741a22243c792', '205.210.31.52', '1693681566', '__ci_last_regenerate|i:1693681566;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33209edd196ff534aa395851cf3f46ea1c215f2', '190.236.0.105', '1634678418', '__ci_last_regenerate|i:1634678417;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a334f2bd4ec42cc23b131511a92a1a9cf6b33a86', '179.43.191.18', '1693777236', '__ci_last_regenerate|i:1693777236;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33705769c2db5b7cf27e4c0ed121c0cce4d6730', '34.240.152.183', '1675376534', '__ci_last_regenerate|i:1675376534;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a338898f5429f5af4cf16cd432a2720a2795e69d', '186.1.135.141', '1617207064', '__ci_last_regenerate|i:1617206703;local|s:1:\"1\";listaVenta|i:1104;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33a8e90051522d4aa1d8c8b9c94c8a0ece14d07', '139.155.54.119', '1623406678', '__ci_last_regenerate|i:1623406678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a38036174ca760a77bfd5d1419867956d298d240', '179.6.222.7', '1616899162', '__ci_last_regenerate|i:1616899162;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c205d78a41c44988f87dd82e1ce509813b44b0', '35.206.247.151', '1663970962', '__ci_last_regenerate|i:1663970962;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c96405d8e391a1abcccbde8f0d90993318deb7', '106.53.83.56', '1622946119', '__ci_last_regenerate|i:1622946119;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c9f1844271ba69013b26b09dfae4b856a4a578', '92.118.160.9', '1613224578', '__ci_last_regenerate|i:1613224578;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f20e305daf97d0fb69289ceb9776efc38101a5', '183.136.225.44', '1690169644', '__ci_last_regenerate|i:1690169644;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a402b3d32e7a3de599038b54514571a4b7e68231', '51.81.167.146', '1654271342', '__ci_last_regenerate|i:1654271342;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a417a5129a7aa0e220aac312a3b0bdfce0c7e1ab', '183.136.225.45', '1694025098', '__ci_last_regenerate|i:1694025098;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41ef96a428b2227110ee164eb770a499cfb2aea', '198.235.24.139', '1670198567', '__ci_last_regenerate|i:1670198567;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42fb3f90e8100071170bff752b60e64b90e4959', '34.67.52.57', '1655540026', '__ci_last_regenerate|i:1655540026;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4348c432b6cd45f8215fa265c482505b93136bb', '18.223.16.210', '1622832860', '__ci_last_regenerate|i:1622832860;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4355efc4737ac2b8e71b27fe4793eb5de187dbc', '183.136.225.44', '1685036531', '__ci_last_regenerate|i:1685036531;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4477bdb3cc9be8bef3214d465d1164975f6848f', '148.102.26.11', '1619212011', '__ci_last_regenerate|i:1619211676;local|s:1:\"1\";listaVenta|i:106;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619199399\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a455cd940ca0e0650f081412e7ad0890a483fc2d', '167.94.138.60', '1674339057', '__ci_last_regenerate|i:1674339057;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4742f40b8f4ec69516eed4df6bcb02bd216bf64', '128.90.21.26', '1685748926', '__ci_last_regenerate|i:1685748926;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4899ee937a4ba308a0dfcf5a5b9df0c148b568d', '167.248.133.186', '1682001541', '__ci_last_regenerate|i:1682001541;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48bb21c7794fffdaad7a0179d76d7f0c47735d1', '190.192.49.231', '1623081056', '__ci_last_regenerate|i:1623081055;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622816464\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48f31584fba6bf46c06a2e5155d5cd9a14d759a', '186.1.135.78', '1611861298', '__ci_last_regenerate|i:1611861003;local|s:1:\"1\";listaVenta|i:716;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a49097103623e1f7964fe0f6eaeb2018b352928d', '186.1.135.134', '1615823606', '__ci_last_regenerate|i:1615823379;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a8bf56917d095736cd4f9e0e5f3b81731ee565', '47.128.55.129', '1695122300', '__ci_last_regenerate|i:1695122300;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ad993f705e0967875e1096c571a231570fc0f0', '148.102.26.11', '1619198878', '__ci_last_regenerate|i:1619198870;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619197555\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4bbdf2e68c03ac342dd96619b36a6def25353fc', '23.237.196.50', '1673755206', '__ci_last_regenerate|i:1673755206;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c4573d26e24bbf4a940b0c0d297d51f1f35de0', '186.1.135.66', '1616420151', '__ci_last_regenerate|i:1616419863;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616175755\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4da939a9fe8ba35617859ec56d68a344af8450d', '190.232.180.131', '1612903230', '__ci_last_regenerate|i:1612903177;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612902951\";last_ip|s:15:\"201.212.119.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f9bf1205dc54bd59d07969f0795aea6aed9842', '183.136.225.44', '1688231189', '__ci_last_regenerate|i:1688231189;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50114e05007444ea76622d69315afe2c479f915', '162.142.125.216', '1684773098', '__ci_last_regenerate|i:1684773098;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a507fffacc0ff2c9113e8f74a7d0301ab251df8e', '167.248.133.127', '1687225110', '__ci_last_regenerate|i:1687225110;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50fb7f7b0404c25a3c0bacb4cc947d09b98e13b', '181.176.209.242', '1698968059', '__ci_last_regenerate|i:1698967925;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698967808\";last_ip|s:15:\"181.176.209.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"fq0QKZdPflpvy/hWAWjnqMFO1dz5upI5Q6sJZLpDD4KBWnq2zSbPSLgd3tYB2KB94Xdr3e3h/nQKFPziLnjD8Q==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a52947e93fde9528d14dbec37ac01f32fe85b8d2', '181.176.107.88', '1676480079', '__ci_last_regenerate|i:1676479948;local|s:1:\"1\";listaVenta|i:135;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675884029\";last_ip|s:14:\"181.176.124.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:43:\"El comprobante ya tiene una nota de credito\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a52ee7c971faaccc2b3f3acd8e43125396faa33e', '162.142.125.221', '1657742633', '__ci_last_regenerate|i:1657742633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a534a5f6310bc398b34d0eb8e50a03e4', '201.230.205.217', '1672884742', '__ci_last_regenerate|i:1672884742;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a53cd01dcfd150abe5b0ddb513edf186409bcb8e', '167.94.138.50', '1688518955', '__ci_last_regenerate|i:1688518955;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54dbef877e24d8cb8f87f259164f066ceba786e', '54.149.235.186', '1654293352', '__ci_last_regenerate|i:1654293350;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5599c45f1c450765205877843e43ad906926cb8', '167.248.133.186', '1692567016', '__ci_last_regenerate|i:1692567016;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55a235ae6a236ca2826c8702d26fdc0ef39a546', '101.199.254.199', '1679266376', '__ci_last_regenerate|i:1679266376;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5674a4651f7c1dac2003c19189c6ead99ffcea0', '190.238.217.6', '1611936701', '__ci_last_regenerate|i:1611936633;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611927498\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56940b58db703a8a52dc73046823031937682e8', '201.230.205.189', '1681786577', '__ci_last_regenerate|i:1681786509;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5983e8e489e1a4e3332672033b8fbc4c2271de1', '34.86.35.14', '1634351622', '__ci_last_regenerate|i:1634351622;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a837467de4ebdbec3d03c144a887f86f8bd9b8', '162.142.125.41', '1636693497', '__ci_last_regenerate|i:1636693497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5abff3fdfc1cc0912f29e5f841da3428c3229c1', '144.91.106.14', '1666570229', '__ci_last_regenerate|i:1666570229;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b0ecbee328d7628ca5aef5180a6d3c2962097f', '186.1.135.129', '1618249063', '__ci_last_regenerate|i:1618249063;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c2ea414dfaf442b180a60388f30a507102051a', '205.210.31.145', '1660119928', '__ci_last_regenerate|i:1660119928;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5d60b03c19d90c6e88ef6a12ec9c10adb25d1b2', '186.1.135.129', '1617829463', '__ci_last_regenerate|i:1617829253;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5dc618886d944d5b691d8e635ed8b9889fa122a', '186.1.135.131', '1618342862', '__ci_last_regenerate|i:1618342648;local|s:1:\"1\";listaVenta|i:98;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e2f0da36f36dd13407545979b93b405c920746', '148.102.23.16', '1618341420', '__ci_last_regenerate|i:1618341098;local|s:1:\"1\";listaVenta|i:445;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618335487\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e7bbe050aedc94b1e41eb6b01c43100516cdfc', '198.235.24.138', '1658011399', '__ci_last_regenerate|i:1658011399;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5f778a9e7e759276708d4837daec58a9e1553ca', '205.210.31.42', '1697489997', '__ci_last_regenerate|i:1697489997;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ffe6f40121c4c77490a3c9fcf8dab2ee5f16f5', '186.1.135.159', '1618840329', '__ci_last_regenerate|i:1618839772;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a606ad15f82053006ee6452b12dd1ce06d4ff829', '51.158.37.195', '1670692824', '__ci_last_regenerate|i:1670692824;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a609fa51e2ab2defeb209999f890db924950fe6e', '::1', '1598364637', '__ci_last_regenerate|i:1598364408;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598339373\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a612cecfd05fb1ee471dd65ab8fb8e65097d05db', '185.145.245.42', '1691210295', '__ci_last_regenerate|i:1691210295;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a620bfca976608b6abd6d0434c546deb1d32d766', '92.118.160.41', '1623602146', '__ci_last_regenerate|i:1623602146;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6212bec5ea25958269a0a38161148376d3b7567', '92.118.160.17', '1635780471', '__ci_last_regenerate|i:1635780471;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a646b568b6bc1599b2b9e0f7200343389a31c0b0', '192.151.156.187', '1618852818', '__ci_last_regenerate|i:1618852818;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a65f572f50b46850b1ffe487dd1fbc7f89fc59e7', '181.64.223.213', '1624930952', '__ci_last_regenerate|i:1624930951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a67d3b4b09fcd728bf08e34780ccd60b60440ed2', '162.142.125.226', '1680915620', '__ci_last_regenerate|i:1680915620;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a687dfcc0f25dfdb9629eaab996294721a50a674', '87.236.176.177', '1690442084', '__ci_last_regenerate|i:1690442083;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a69de2e645ad2de3e43fda0f2b0cfaf5a64c381d', '163.172.180.25', '1674901583', '__ci_last_regenerate|i:1674901583;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b0a20afed90f05a7e7d909452aed552edac348', '45.225.216.151', '1623252316', '__ci_last_regenerate|i:1623252316;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b352028833a025b9098dcb34f1e432baf26e62', '15.228.16.184', '1622455959', '__ci_last_regenerate|i:1622455958;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6c362807a85bf01ae35a3c9437f8e8690514d59', '205.210.31.13', '1658446038', '__ci_last_regenerate|i:1658446038;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6de1e585dcb079039b53eaa5ffe5bfbffa0fe89', '38.25.16.150', '1672264134', '__ci_last_regenerate|i:1672264131;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672172080\";last_ip|s:14:\"190.239.66.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6dff8360394da4488ee6f5b48f4ab1ef16666e3', '190.232.180.131', '1614187389', '__ci_last_regenerate|i:1614187337;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1614055606\";last_ip|s:15:\"201.212.119.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e2a601d821e9f63bd8d826fb8e5e2a37734e94', '181.176.119.66', '1676037593', '__ci_last_regenerate|i:1676037593;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e731b9412a6301a43f77f9168ad2806703cf26', '186.1.135.141', '1611850872', '__ci_last_regenerate|i:1611850708;local|s:1:\"1\";listaVenta|i:192;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6ee7dd30b27f50cfdcd1bcba12f617088340d34', '34.96.130.11', '1635189377', '__ci_last_regenerate|i:1635189377;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f32b98eb65a047a72899411501bfdfc2ec7613', '142.54.224.196', '1675119509', '__ci_last_regenerate|i:1675119509;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a71acc2684c50a16728c6a41dc054c0dc4e4d8a8', '34.86.35.2', '1637915993', '__ci_last_regenerate|i:1637915993;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a724d45275d9ec26580fe5b24d25ea30887922a3', '183.136.225.46', '1684224780', '__ci_last_regenerate|i:1684224780;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7294bfd522f30b0c12d5d7e322cbef7c537d14b', '183.136.225.44', '1683543348', '__ci_last_regenerate|i:1683543348;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a729767c52a4f9a4c79309dd39aad75f377af2f8', '101.68.211.2', '1690003365', '__ci_last_regenerate|i:1690003365;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72a16cc96501008c2f2c60082f66bc8bd7720d8', '162.142.125.214', '1684048497', '__ci_last_regenerate|i:1684048497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72a4345070cc5d2f381091756416a613ec4220f', '181.176.108.35', '1673918215', '__ci_last_regenerate|i:1673918215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7435f3b472ca709f3eaf0e4ff18f0f748e9427f', '38.25.16.184', '1698957219', '__ci_last_regenerate|i:1698957089;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7456672b666bce8fc07d22876f2c25a9a127224', '167.94.146.55', '1692808342', '__ci_last_regenerate|i:1692808342;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a75def916070340bbb9445639747bdd9d77ab245', '34.67.52.57', '1655540028', '__ci_last_regenerate|i:1655540027;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a76bcaac387b6e24fefc351c5447231c83c3f45b', '38.25.16.38', '1694659885', '__ci_last_regenerate|i:1694659865;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694654201\";last_ip|s:15:\"201.230.205.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7777ca5cf372104ce4dfcc723977888ea2ce7d7', '54.221.27.173', '1627484198', '__ci_last_regenerate|i:1627484198;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a784451f499e32ac86fd9d880ca8c14e903cc9c3', '190.237.172.53', '1616178988', '__ci_last_regenerate|i:1616178988;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7880e0b5bf40460635bf4a4e08cf5d1efa31692', '186.1.135.131', '1617632901', '__ci_last_regenerate|i:1617632900;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617285684\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78f54a762e0e0465616a8488f995c7ce8260952', '92.118.160.5', '1623579682', '__ci_last_regenerate|i:1623579682;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a796179171eef791e2777674bb79da13e5ecbfa4', '34.209.105.222', '1620142747', '__ci_last_regenerate|i:1620142747;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a73bf9839919fa6130fdfe669e38f4c49f0d0b', '132.184.129.157', '1618505247', '__ci_last_regenerate|i:1618505050;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617729735\";last_ip|s:15:\"132.157.129.160\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:26:\"Resumen enviado con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a8afe3cbbf57d286519bb424e2cd8aa565ab41', '205.210.31.153', '1698745833', '__ci_last_regenerate|i:1698745833;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a8f11fe1b59830c74a54d3075f2ad5c8390e9b', '190.239.78.92', '1620673871', '__ci_last_regenerate|i:1620673634;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7b296b8e9959c695c59b204915d2aa88e12305f', '186.1.135.150', '1613136549', '__ci_last_regenerate|i:1613136249;local|s:1:\"1\";listaVenta|i:120;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613047424\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7baf4026c909ecf47558f75b567c66f171a4d53', '148.102.26.11', '1621000762', '__ci_last_regenerate|i:1621000484;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620943276\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000443\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c37898dc42c50954742ffe17399d22a67d366a', '190.239.64.130', '1621432355', '__ci_last_regenerate|i:1621432355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7dd9032544e95aebb02681888a6a302211dfe49', '186.1.135.142', '1614619152', '__ci_last_regenerate|i:1614618808;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f5b5be7f4ce542ff399b473a5d823ddcc4ebce', '186.1.135.134', '1612820747', '__ci_last_regenerate|i:1612820747;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612813482\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7fcc80dfb3a07386d0d35a6d71b9467a6fdce35', '190.237.30.221', '1620840378', '__ci_last_regenerate|i:1620840374;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620756485\";last_ip|s:14:\"190.237.30.221\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7fee45d7cf77a38c9b3764c8fa05f7621cbeb7b', '190.237.172.147', '1613291533', '__ci_last_regenerate|i:1613291418;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613291006\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a808d822f0e446eee52d455eb6485af2bf0efcfc', '186.1.135.131', '1617658027', '__ci_last_regenerate|i:1617658027;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a833c223626b80ccd338fa8dbf873b186d3dc919', '179.6.212.129', '1614720070', '__ci_last_regenerate|i:1614720070;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a837d7a8a954607fa1b68376d9f2189058e5e944', '205.210.31.26', '1658748967', '__ci_last_regenerate|i:1658748967;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a838a32b3c5e8f40f315dd2e7cb7211afe70fe12', '87.236.176.124', '1685460174', '__ci_last_regenerate|i:1685460173;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a84aed66dcab93eea3134e69618fd0b27901454a', '186.1.135.141', '1613425486', '__ci_last_regenerate|i:1613425274;local|s:1:\"1\";listaVenta|i:483;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613416718\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a84bd8d50836a03687618dc9645fc1c8293cebaf', '18.228.18.156', '1621825557', '__ci_last_regenerate|i:1621825557;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a84dd7c453f35c4aa62072943131e3f61d8e7ce7', '34.66.78.2', '1655430578', '__ci_last_regenerate|i:1655430578;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a850ff0c62ddfb7e5340d974786551a18918dbf3', '186.1.135.138', '1613050902', '__ci_last_regenerate|i:1613050752;local|s:1:\"1\";listaVenta|i:751;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8592c21683028bad41d9053abd95081fc1766d5', '190.236.0.145', '1617053469', '__ci_last_regenerate|i:1617053360;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a86c738b264ba8a9d0c80420b6a9d5a295125238', '164.92.189.255', '1676522776', '__ci_last_regenerate|i:1676522776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a86d1b94d2eb0bd893798b2ffbb6943bb96aee64', '186.1.135.134', '1615828772', '__ci_last_regenerate|i:1615828611;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a86fe37f166cac82fd32524e2c282b22fde3a994', '198.235.24.40', '1695936652', '__ci_last_regenerate|i:1695936652;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a874bffbd29a716f0b82edb9c8f72cfaea5d583d', '38.25.16.184', '1698955606', '__ci_last_regenerate|i:1698955329;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";__ci_vars|a:3:{s:5:\"error\";s:3:\"old\";s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}error|s:135:\"El campo Contraseña antigua es obligatorio.\nEl campo Nueva contraseña es obligatorio.\nEl campo Confirmar contraseña es obligatorio.\n\";csrfkey|s:8:\"BTU1iDbl\";csrfvalue|s:20:\"on64rpfsBy3lJ9twhOdc\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a87d50c4ad41691a197dbe21ebb656f6423f850d', '34.86.35.2', '1622214152', '__ci_last_regenerate|i:1622214152;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a89a3e30815cb53ac0dc5c2ba49f8a39e14218a4', '148.102.26.11', '1619816508', '__ci_last_regenerate|i:1619816185;local|s:1:\"1\";listaVenta|i:207;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619798812\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8bf47f4c1a622a0452e93dab77956311ad3bf74', '15.228.53.199', '1611763982', '__ci_last_regenerate|i:1611763981;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c484597ad68d9431f2cbb4e6b2c12dffb92d0d', '186.1.135.130', '1617045320', '__ci_last_regenerate|i:1617045035;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ce8478d071ab3d117d93741036eca0522c8f70', '18.219.38.43', '1698013923', '__ci_last_regenerate|i:1698013923;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a903dd3c436409d3094fda55dfea83e97f591dd6', '209.126.77.67', '1676104336', '__ci_last_regenerate|i:1676104336;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9076c7fb7c5a69fe1591561050d98f510fea2f8', '186.1.135.137', '1614201195', '__ci_last_regenerate|i:1614201073;local|s:1:\"1\";listaVenta|i:292;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614177537\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a914b46dbb57cb06f201ea1bf83da162711c21e8', '161.132.234.14', '1632699037', '__ci_last_regenerate|i:1632699007;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1630424396\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";error|s:35:\"<strong>La acción falló!</strong>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a91846fca6d16520ab1bc812bf013ce02c64dfe0', '179.6.212.129', '1615166067', '__ci_last_regenerate|i:1615166067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a93d10483bc0151b43e7de9fdff9d6408753bc0b', '38.25.16.184', '1698949661', '__ci_last_regenerate|i:1698949633;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95d64116a31239f8fa790fff548f200116944e1', '167.248.133.189', '1684774222', '__ci_last_regenerate|i:1684774222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a967998db0b6e88f42ccd76e154df272d9c1bf61', '186.1.135.133', '1612193765', '__ci_last_regenerate|i:1612193625;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612189952\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a967fd893611682b27aeb6488241804b4bb5dfcd', '179.6.222.7', '1617125851', '__ci_last_regenerate|i:1617125844;local|s:1:\"1\";listaVenta|i:314;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9684fb6558585a0ff4f221abc8ec393f8454f61', '186.1.135.133', '1612205584', '__ci_last_regenerate|i:1612205409;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612191270\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000260\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a973419d8f270d64a80dd4c98b404bc5f89a7278', '207.148.127.89', '1694353253', '__ci_last_regenerate|i:1694353253;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9808f57025b047241d2eb407066ad4c2629d735', '186.1.135.130', '1617049198', '__ci_last_regenerate|i:1617049198;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a982b6024c1d4e58fce7428e0458b88a305dabb0', '44.199.235.222', '1668980630', '__ci_last_regenerate|i:1668980610;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b4415b12c55da629144353c562aabb5e437e68', '198.235.24.186', '1662671149', '__ci_last_regenerate|i:1662671149;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b97982ea89083a3dc07fc9915eadf71c696ea4', '190.235.110.46', '1619122716', '__ci_last_regenerate|i:1619122715;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9bb79580de4f7115c350b49bad73a0d07136445', '51.15.205.3', '1628319466', '__ci_last_regenerate|i:1628319466;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9bd0130505394c22df98d2a59e705ce17707bd5', '198.235.24.140', '1660383777', '__ci_last_regenerate|i:1660383777;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9c1bebfb9e2be2e3968d6ab993bb76adc6249e1', '148.102.26.11', '1619817250', '__ci_last_regenerate|i:1619817236;local|s:1:\"1\";listaVenta|i:207;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619798812\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d15901c6262fad90fa8e8df48d56b492a8c58f', '192.175.111.241', '1690860627', '__ci_last_regenerate|i:1690860627;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d3584af75b2668906a944c94ce517306f7b264', '186.1.135.129', '1617816169', '__ci_last_regenerate|i:1617815811;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9dc33db55c8e0b247970e269267a1f98769f386', '205.210.31.130', '1655910400', '__ci_last_regenerate|i:1655910400;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9dc96aa3aec5972026c8d071aad36a577bae946', '186.1.135.134', '1612812429', '__ci_last_regenerate|i:1612810670;local|s:1:\"1\";listaVenta|i:51;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612799621\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f606a842c157afb2b095fe13aa810af40b2299', '18.231.137.148', '1611652317', '__ci_last_regenerate|i:1611652317;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9fa81fa41a195d6141dbb9402bd0466cea3a167', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa01bf69aa15d139b313006ff2dec7d4738b0758', '186.1.135.142', '1614618595', '__ci_last_regenerate|i:1614618422;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa0e96c9cceda3d40b68f7684d0245d1e603b458', '186.1.135.78', '1611863794', '__ci_last_regenerate|i:1611863543;local|s:1:\"1\";listaVenta|i:1000;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";error|s:43:\"El comprobante ya tiene una nota de credito\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa17135eeccc572aa71c491acdffb3dec168f0db', '186.1.135.157', '1616765674', '__ci_last_regenerate|i:1616765272;local|s:1:\"1\";listaVenta|i:90;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616711069\";last_ip|s:13:\"190.236.0.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2040a00d764b56d95a23477fe354dc', '45.177.196.194', '1674848334', '__ci_last_regenerate|i:1674848334;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa24fbff6e9dceeafe9a27a940c9ab53fa349cd5', '::1', '1598582171', '__ci_last_regenerate|i:1598582040;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa298846c2fbf19326bdf93cb2980dc23b6c687e', '190.239.238.126', '1617285696', '__ci_last_regenerate|i:1617285668;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617220020\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2e4d272e8a0d2cf45aa73736f502343ecf969d', '87.236.176.250', '1678641813', '__ci_last_regenerate|i:1678641813;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa40256a30e1bf4e097b627b1b9eab042ad5be7e', '45.225.216.152', '1625188955', '__ci_last_regenerate|i:1625188912;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625150754\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa415389a49f8f48c9a1e6c6868202d3717785c8', '104.197.237.97', '1657150429', '__ci_last_regenerate|i:1657150428;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa61751fa211a3290bb5c26d588a41d3ba7ae8d1', '190.239.78.92', '1620661022', '__ci_last_regenerate|i:1620660735;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa790d3f9b6ab64263d7d04703dc2633d19bd195', '179.6.222.7', '1617987253', '__ci_last_regenerate|i:1617987190;local|s:1:\"1\";listaVenta|i:1831;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa7e6352d3e2e963bde7ca0b2dc8848207254ae7', '134.122.7.10', '1687477828', '__ci_last_regenerate|i:1687477828;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa86f362bba83406209062d21b9df2657a71f0e6', '38.25.16.184', '1698948352', '__ci_last_regenerate|i:1698948050;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";warning|s:57:\"Todo los resumenes se encuentran con el estado consultado\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8ffa6ca3e04336ab5a0717f34edaa031e971d3', '198.235.24.72', '1692046001', '__ci_last_regenerate|i:1692046001;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa904fd1af69bda39de229649c44414721d0d519', '181.176.107.88', '1676476308', '__ci_last_regenerate|i:1676476016;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675884029\";last_ip|s:14:\"181.176.124.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa15a61818ed8c589ab78d4af9fe3ebfeac8c00', '205.210.31.35', '1670156913', '__ci_last_regenerate|i:1670156913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa3b4bf66e85f91dc329e54961944ee29117bee', '167.71.162.175', '1671082358', '__ci_last_regenerate|i:1671082358;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa9964fe748d1576c42400629beba74f22424a1', '37.220.93.104', '1686436497', '__ci_last_regenerate|i:1686436497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaae54521f7873d6e89b38968c27571f0ed78fcb', '198.235.24.15', '1659134627', '__ci_last_regenerate|i:1659134627;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aac3a262cc1febb35e31716b9b9a539127748a82', '3.84.59.207', '1654292908', '__ci_last_regenerate|i:1654292907;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aadbf2c1599acfe5a808123db3c2c4c9d86c0669', '198.235.24.10', '1669433877', '__ci_last_regenerate|i:1669433877;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae5714d743378c9c15c0b6194bf910237851753', '69.166.234.141', '1681357297', '__ci_last_regenerate|i:1681357297;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae581a0129c9e40b216408197167cea3ad4f458', '101.68.211.2', '1679506000', '__ci_last_regenerate|i:1679506000;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae6d2d13b071df5aff0b7b750b13008d46f5af0', '186.1.135.78', '1611865483', '__ci_last_regenerate|i:1611865135;local|s:1:\"1\";listaVenta|i:1590;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf296f67f5c34ebea18c37358f29b8677e66fdc', '167.248.133.61', '1653073567', '__ci_last_regenerate|i:1653073567;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0d78900ee75d1a896c7b59557de65de5e031a5', '45.55.135.165', '1685756065', '__ci_last_regenerate|i:1685756065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab117f089e363bc6e73f40f91b3beed510732c45', '54.93.242.220', '1688857351', '__ci_last_regenerate|i:1688857351;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1ac492e8daa6059f5fa1d1e76f561ab032a0f0', '181.64.57.12', '1621193966', '__ci_last_regenerate|i:1621193966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1bf1296a8caf24ebfbf376aae601916b67daac', '205.210.31.142', '1659826966', '__ci_last_regenerate|i:1659826966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab45a839bffcf01623fa9b1f1892d5682ef8d780', '209.17.97.90', '1611829437', '__ci_last_regenerate|i:1611829437;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6b63b6da939743d6c00c896423ba06aba54862', '201.230.205.217', '1671410781', '__ci_last_regenerate|i:1671410753;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671334321\";last_ip|s:13:\"190.236.9.128\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab7135089224a4ee69235baa6bae2376f1ea638c', '38.25.16.38', '1698799010', '__ci_last_regenerate|i:1698798834;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698785031\";last_ip|s:15:\"201.230.205.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab7d4df97bd6751e89839f5c4779e8848a27e134', '148.102.26.11', '1620677114', '__ci_last_regenerate|i:1620677114;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620666381\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8bcd8fe34f299e3fbf106aa41be12d3691f66f', '54.232.34.58', '1611299564', '__ci_last_regenerate|i:1611299564;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab972d8e09b9958ef7695d91566a29a2dccaff0b', '190.236.0.145', '1616711645', '__ci_last_regenerate|i:1616711645;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb4f2c05041e29bfc0df851e62edc20b449c8e8', '179.6.222.7', '1617115212', '__ci_last_regenerate|i:1617115163;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abbefaa412ad22222f9bd27f477ca546df7c177f', '54.233.119.128', '1622258123', '__ci_last_regenerate|i:1622258123;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc5cff5fd3f7935c08a601aa2e01841f9e1cfd6', '186.1.135.129', '1618244602', '__ci_last_regenerate|i:1618244302;local|s:1:\"1\";listaVenta|i:296;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abcd9d9577d751db04c3225538dd181474a214bd', '205.210.31.135', '1675128281', '__ci_last_regenerate|i:1675128281;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abcfaaafbd70a65e261c44a19456bfeb95e75966', '101.68.211.2', '1677959049', '__ci_last_regenerate|i:1677959049;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abda225c947419cf101bf6a6228e4854be06353c', '198.235.24.56', '1679817234', '__ci_last_regenerate|i:1679817234;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdc02558804a01d6585b6546f78e7b874b8fa2e', '201.230.81.79', '1619717937', '__ci_last_regenerate|i:1619717683;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619635682\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdf95b76b0902ffb51e032fb68817a93f3ff957', '198.235.24.185', '1683852893', '__ci_last_regenerate|i:1683852893;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe4268861396a6d2fdab33dc093e19ac30ddc8a', '167.248.133.190', '1685377347', '__ci_last_regenerate|i:1685377347;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe5ea5f71ee2a888992dbbec280bd954d9f9ee0', '15.228.119.186', '1621905386', '__ci_last_regenerate|i:1621905385;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abedb20e017da17c4526874ada7c4a61ccbb96d0', '167.94.146.55', '1692808343', '__ci_last_regenerate|i:1692808343;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abefdbe9c9055e1eb4ea4fa94e242ea48bc0bfd8', '45.225.216.152', '1625061293', '__ci_last_regenerate|i:1625061021;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625025047\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf1fb10f83f76969bd11b4eaa3ac92ffacc9325', '186.1.135.130', '1617043958', '__ci_last_regenerate|i:1617043958;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abfa16c8de47d7a1aa6039e507e183318923c811', '181.176.109.80', '1674827941', '__ci_last_regenerate|i:1674827940;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac01344ab79b26dbdb65da030e24f15776b6d510', '186.1.135.138', '1613053871', '__ci_last_regenerate|i:1613053580;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac17480c73bdef994c309f29278ce7209cf426cb', '167.94.138.45', '1659858355', '__ci_last_regenerate|i:1659858355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac1ac1e210d2c5bba52c829d798f4de73ae62c40', '190.237.172.109', '1615117188', '__ci_last_regenerate|i:1615117068;local|s:1:\"1\";listaVenta|i:198;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac2930bf12e81342e038a9ef9ae477405767ab12', '179.6.212.129', '1614695525', '__ci_last_regenerate|i:1614695525;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac4caab347cc92474c41fa346dc7f4bcbb69740c', '92.118.160.1', '1624819539', '__ci_last_regenerate|i:1624819539;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac74718d0b4c2db9c0b4a1a6e20095beb15ecb63', '205.210.31.52', '1693681567', '__ci_last_regenerate|i:1693681567;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac7ee3abb507ebdbfba32939d9eb5745fd7b0b6a', '201.212.119.152', '1612903257', '__ci_last_regenerate|i:1612903257;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612902012\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac8938de02455f82c38512e74934e775449023c2', '101.68.211.2', '1690003480', '__ci_last_regenerate|i:1690003480;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aca4d4cf96914cd380f0a65d891baaa312867be0', '34.243.64.86', '1678209171', '__ci_last_regenerate|i:1678209171;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acafbb40fb23e99d35e5bd558d6cb3e5cb16ed0a', '190.232.180.131', '1611941051', '__ci_last_regenerate|i:1611941038;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611928932\";last_ip|s:14:\"132.157.130.10\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd389484892716461a8d47c70db7c43fdf576d0', '35.239.20.0', '1657842693', '__ci_last_regenerate|i:1657842693;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acddeb209f9bf274b6cb03953696811373b2d8ad', '179.6.212.129', '1614871278', '__ci_last_regenerate|i:1614870879;local|s:1:\"1\";listaVenta|i:674;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614802434\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acfc7e6efd6ee996da3b66770fea5f1f65ad454a', '188.165.87.106', '1669071649', '__ci_last_regenerate|i:1669071649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad23d67fff1247b98cb93b1f776c3c9833150fc0', '205.210.31.130', '1663198401', '__ci_last_regenerate|i:1663198401;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad2c7e3603b0398857c0788f1a97d5c637a17939', '198.235.24.25', '1697068012', '__ci_last_regenerate|i:1697068012;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad2d9c6cdd8bfd8153ac9706d1d6ebdbfab60565', '179.6.91.118', '1672370615', '__ci_last_regenerate|i:1672370329;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672369749\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad31e116aacc3707b5b8e476c671958d90bdc44d', '179.6.222.7', '1618005414', '__ci_last_regenerate|i:1618005277;local|s:1:\"1\";listaVenta|i:48;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617973230\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad36c49efb720bc6fd5cd570285635174908d4a2', '186.1.135.130', '1617031028', '__ci_last_regenerate|i:1617030849;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad3d91ee50cfbf6044a6731815106b9e4f06a969', '190.237.172.109', '1615118790', '__ci_last_regenerate|i:1615118328;local|s:1:\"1\";listaVenta|i:486;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad407f5593973888449c123e92de7d660857eb53', '38.25.16.184', '1698955950', '__ci_last_regenerate|i:1698955655;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";__ci_vars|a:3:{s:7:\"message\";s:3:\"old\";s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}message|s:27:\"Usuario cambiado con éxito\";csrfkey|s:8:\"BLZj8J4f\";csrfvalue|s:20:\"KdRXHuf76YnFP9hbsZ5I\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad5a1134aa1bbaadd6d24a2adc42299f325a2631', '87.236.176.61', '1677943620', '__ci_last_regenerate|i:1677943620;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7457919bf713ec3963552baea68a3e96cbd28b', '107.150.52.196', '1618329538', '__ci_last_regenerate|i:1618329538;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7a3676808bdd7c16ae64d0456abbca2a90649c', '186.1.135.71', '1613682309', '__ci_last_regenerate|i:1613682309;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7af3208d3a5fa08aa1de83f5f8fd49f64e2721', '167.94.138.52', '1679243773', '__ci_last_regenerate|i:1679243773;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7d85ac5f6b39fce0f89a9fba7071c845e871cf', '132.191.2.181', '1621456018', '__ci_last_regenerate|i:1621456004;local|s:1:\"1\";listaVenta|i:158;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621438505\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8efb4f5d623cd713e8b15b57f845e4f04232aa', '137.184.32.150', '1676522771', '__ci_last_regenerate|i:1676522771;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc8bb2772569a5ec291fd22a759cbbf08001de5', '128.90.43.24', '1691954502', '__ci_last_regenerate|i:1691954502;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('addc6e18397d38471883732cd38b8aa3b683decf', '190.237.172.147', '1613211985', '__ci_last_regenerate|i:1613211908;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613161553\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf0cdce1521342120a261cac71a79a0774bfc39', '47.128.52.150', '1696003116', '__ci_last_regenerate|i:1696003115;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfb0f31f0c060dbe4c4348500fbacd1093bd740', '186.1.135.131', '1614282778', '__ci_last_regenerate|i:1614282359;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614274615\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae03074df9009bba1beb38d2e977c241c62c2113', '186.1.135.129', '1617814277', '__ci_last_regenerate|i:1617814121;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae143a992495de82ce5570f8b6ddafee484bb1ba', '186.1.135.129', '1617825507', '__ci_last_regenerate|i:1617825405;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae144471dcb031fce9f02f4d829af63c024115c2', '144.91.106.14', '1678530003', '__ci_last_regenerate|i:1678530003;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae23b79942dc4433085ca7ceb3559ad79a4799e5', '92.118.160.9', '1613224579', '__ci_last_regenerate|i:1613224579;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2f0c5de5018d45f01341a1bcdfbe16db466db9', '35.222.220.90', '1655858350', '__ci_last_regenerate|i:1655858350;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3ec3424652cac3bdc8706cc0e62b1f6e4f8e70', '186.1.135.134', '1614094507', '__ci_last_regenerate|i:1614094343;local|s:1:\"1\";listaVenta|i:434;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae48c4f46b3c7267cdcff6f36008cf950150ef22', '64.225.4.155', '1697725042', '__ci_last_regenerate|i:1697725042;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae52cd6cfb72185c2f19a7d82d3dff139e0194f4', '38.25.16.184', '1698946624', '__ci_last_regenerate|i:1698946624;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5598b438fdf1ebe48d78403633eb04c3fbca66', '51.158.98.24', '1628288565', '__ci_last_regenerate|i:1628288565;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5710b0755125c6b137c513eb40a074b6b01c29', '141.98.6.64', '1687969990', '__ci_last_regenerate|i:1687969989;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5b15f6ab8e6265020452639534dfa8ce354e31', '44.199.235.222', '1668971300', '__ci_last_regenerate|i:1668971280;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5d2a07b1565ec6c6d50b91aa8d4e96706a0140', '186.1.135.138', '1613049679', '__ci_last_regenerate|i:1613048639;local|s:1:\"1\";listaVenta|i:518;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5f528905736c32bab139606662c619338851a1', '132.184.128.141', '1619198741', '__ci_last_regenerate|i:1619198737;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619122727\";last_ip|s:11:\"181.64.18.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae64aa87443a202b807e2ee800f26845e4cb1a03', '34.244.84.56', '1680927956', '__ci_last_regenerate|i:1680927956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae7466740f146d8142c8bf0c2e2dbed453cfcb7e', '15.228.119.108', '1622164635', '__ci_last_regenerate|i:1622164635;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae7c49e795cff6788f57c1dbefb9289e09ca359b', '170.64.154.140', '1683172215', '__ci_last_regenerate|i:1683172215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae9b26b4d8c56bc1675b9112b1bbe6fd8af0a5d2', '52.27.195.187', '1654293436', '__ci_last_regenerate|i:1654293434;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aea48a51a2bf899bfc476dbec8a709239b74c39c', '190.239.192.47', '1622561706', '__ci_last_regenerate|i:1622561395;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622500495\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb495fff70ca9351c3a72d05b1bd19ac65b55d2', '186.160.223.4', '1620226756', '__ci_last_regenerate|i:1620226756;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeba3b65abf481d3e5612af0fe282f45518f3af6', '186.1.135.153', '1618407815', '__ci_last_regenerate|i:1618407815;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee1a7effc3da2b0432b269434f17d2675b2095e', '157.245.220.188', '1694081086', '__ci_last_regenerate|i:1694081086;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee6f1be0eb92f2944793a7b9abb05b7d8f88c2e', '148.102.26.11', '1621633596', '__ci_last_regenerate|i:1621633596;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aefcb278a5a416fea0476ba8301c2b5512909b38', '198.235.24.141', '1669437136', '__ci_last_regenerate|i:1669437136;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af00ac4a0e6c27f2e047b0a040a3cdee04d2f521', '198.235.24.43', '1675768748', '__ci_last_regenerate|i:1675768748;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af01c888fbf9129ccc7f39f91d05e76115c9e86c', '209.126.77.66', '1674012587', '__ci_last_regenerate|i:1674012587;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0b9e296d91c2dc3549b7bd586ac38cf3ca3e11', '185.3.94.68', '1668919084', '__ci_last_regenerate|i:1668919084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0e02daab610bd7653c6b699d91271e6076778a', '186.1.135.137', '1614187504', '__ci_last_regenerate|i:1614187426;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614173235\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1c61509311b5ef7c0a8db94295c0a3b7980fa4', '161.132.234.14', '1626058131', '__ci_last_regenerate|i:1626058048;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1626039027\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2925c171cd1dd755d0bfbda49f2e431136f496', '54.80.59.143', '1654292910', '__ci_last_regenerate|i:1654292909;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af298dcc356f86874be59ad0d38baa00875af5d3', '186.1.135.129', '1617824037', '__ci_last_regenerate|i:1617823846;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af44f2e4ebc096122b4e3593fe6cc181fc3a67b0', '198.235.24.159', '1654875351', '__ci_last_regenerate|i:1654875351;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af49149377ac0920d60f9b52577f063b8e18b1f8', '186.1.135.129', '1615210280', '__ci_last_regenerate|i:1615210239;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615166392\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af4a2ea0c5ed791eddc809e2b3e2560b976c8935', '186.1.135.78', '1611864216', '__ci_last_regenerate|i:1611863876;local|s:1:\"1\";listaVenta|i:1105;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af4c090de69ddc959ac351b79deb5ef1b915fc8b', '164.68.106.210', '1670013906', '__ci_last_regenerate|i:1670013905;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af5d169b18ab051a1e0bcaa03ad51cfdad69c41d', '81.0.219.240', '1672073169', '__ci_last_regenerate|i:1672073169;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af7f2f69202ac748b7626274a846676f71bfb784', '38.25.16.150', '1671211212', '__ci_last_regenerate|i:1671211174;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203125\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb449bb4f9999a1a51924496f5b41a6e0ffae30', '161.35.178.156', '1611898368', '__ci_last_regenerate|i:1611898368;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc2769cbbde875a435e1728349bd9305abeea47', '205.210.31.133', '1665178930', '__ci_last_regenerate|i:1665178930;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd7ec6b9de34cb759cd3ed3eb07d0d6847be98b', '190.236.10.220', '1620940523', '__ci_last_regenerate|i:1620940231;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620935058\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000440\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afdcb6a0b02f1c86b7e4c8d39a0ad96f34151f60', '186.1.135.150', '1613154901', '__ci_last_regenerate|i:1613154442;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613136259\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afe65e87e61d7cf6cdca86f97c5348b055c3322d', '38.25.16.150', '1672793249', '__ci_last_regenerate|i:1672793058;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672412888\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afe6f3841fa2ca40ffcbdb3fb26ba71d34cc8022', '::1', '1598581195', '__ci_last_regenerate|i:1598581194;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afecc1cbd5bbd3d1c756bc4203002028fda67186', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b002a360547177347365575e73896a421a868ad0', '47.254.85.182', '1683215994', '__ci_last_regenerate|i:1683215994;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0111bcffdde92674fc3670d91aa3735f705b9a7', '195.154.61.206', '1627549276', '__ci_last_regenerate|i:1627549276;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b01f24d7b09a5cd6ef13395dfb6e676c9a63c6d5', '123.6.49.4', '1679611684', '__ci_last_regenerate|i:1679611684;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02ccbf164a03a5e3ec6af0c579526eec5c7ab67', '205.210.31.47', '1676951035', '__ci_last_regenerate|i:1676951035;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02e0a21c507b74c0ae7951228329fc4fa12f42f', '198.235.24.38', '1678606724', '__ci_last_regenerate|i:1678606724;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b08614d26144d950cf222cc074bdf50bc5dea704', '35.153.72.110', '1619157204', '__ci_last_regenerate|i:1619157204;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b08831c29a1f5f3ab721893de1976175385a71ed', '205.210.31.25', '1659813576', '__ci_last_regenerate|i:1659813576;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b089234d8d5c7fb57f72c0d116841db017f79d8c', '3.249.121.153', '1637362420', '__ci_last_regenerate|i:1637362420;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a548a69134718b056c564d8fecfaf7', '201.230.81.164', '1622131765', '__ci_last_regenerate|i:1622131765;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0b70ae35d706538646c8064077fd95490c99506', '161.132.234.14', '1625189904', '__ci_last_regenerate|i:1625189904;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0bc3fd53cd3d288d588461a4b750600b3ce9be9', '161.132.234.14', '1619635688', '__ci_last_regenerate|i:1619635678;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619632121\";last_ip|s:13:\"201.230.81.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c1dbb5acca9937c80b03ebcf2c951e2ca2493a', '190.239.64.130', '1621439646', '__ci_last_regenerate|i:1621439138;local|s:1:\"1\";listaVenta|i:880;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621436735\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0cd22edec38dc56c1fdee90738a5cda38b42536', '183.136.225.45', '1694840775', '__ci_last_regenerate|i:1694840775;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0db9863ba59fee862761727f9039ddb04547795', '65.0.120.132', '1630952886', '__ci_last_regenerate|i:1630952886;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ebc013d4f355f68e14ad407264e7476bebf5e4', '183.136.225.44', '1677853331', '__ci_last_regenerate|i:1677853331;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0f2ed69496aba4a3f111bc5350ee75284db100c', '87.236.176.163', '1695671065', '__ci_last_regenerate|i:1695671064;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1065f38c520abd852ed2a6d4c960a488604ceac', '186.1.135.130', '1617046789', '__ci_last_regenerate|i:1617046603;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b110c979d444183cbcf63268cc8fda7df3ab85b2', '201.230.205.189', '1681790771', '__ci_last_regenerate|i:1681790680;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11fd38486b1484022ccc5fbd4c1ae39784257c1', '38.25.16.150', '1671075848', '__ci_last_regenerate|i:1671075650;local|s:1:\"1\";listaVenta|i:80;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671074662\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13d6048fa6df1d500373db44c511391aaa05ad2', '201.230.205.189', '1681789555', '__ci_last_regenerate|i:1681789469;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b148166d02c0240abe1fa47feb22f33992860b5d', '198.235.24.172', '1666698505', '__ci_last_regenerate|i:1666698505;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b14b6564d4fc5b02f03f1c216549df60616de4ad', '161.132.238.121', '1628365725', '__ci_last_regenerate|i:1628365698;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1627626713\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b15cf243c7f685a6eb79ae0c66fd53942d5cd8f2', '45.177.196.194', '1674848989', '__ci_last_regenerate|i:1674848717;local|s:1:\"1\";listaVenta|i:705;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674848333\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b167b5a447af74ce5d08d5c3b72b1fb3af15957d', '45.33.108.175', '1668919084', '__ci_last_regenerate|i:1668919084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b16bdc5db339e3c18061de409948052700fd0f4d', '201.230.205.28', '1697473551', '__ci_last_regenerate|i:1697473512;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1696989884\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b16ca50a0eb007aee1ba27ccbf7b497b474f19ba', '162.142.125.221', '1657742633', '__ci_last_regenerate|i:1657742633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1801e20066915a2b4d9ee47083fb0115dc28d75', '167.248.133.124', '1689059540', '__ci_last_regenerate|i:1689059540;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19249494bc288921d08b299783b71fa25f0c3c6', '186.1.135.66', '1616443927', '__ci_last_regenerate|i:1616443596;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19b0aa0acaadf64f4a341d5e321d01883da438b', '148.102.26.11', '1619445496', '__ci_last_regenerate|i:1619445263;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ab44014dfa07f4ade52b11c9e2c20d3f6a2d05', '54.68.113.208', '1634245462', '__ci_last_regenerate|i:1634245462;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c87d19c91a3c0ad1d0d6131d8feb92a3048d36', '148.102.22.241', '1616696284', '__ci_last_regenerate|i:1616695779;local|s:1:\"1\";listaVenta|i:63;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d92e53c31177f02c782f3871f112cb7759e49c', '148.102.26.11', '1621272478', '__ci_last_regenerate|i:1621272140;local|s:1:\"1\";listaVenta|i:116;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621260171\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1e8a2017728a2a6f9cc16d73433556ee7a30b3e', '92.118.160.5', '1635209074', '__ci_last_regenerate|i:1635209074;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1eb8fb02b4891b2b8a39b418bf59f40fd8665b2', '183.136.225.44', '1686228019', '__ci_last_regenerate|i:1686228018;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f5e64e9fb6ce6bf81069ad94d5f04c2bc9a39b', '34.194.68.222', '1669016255', '__ci_last_regenerate|i:1669016255;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f637affe607876702a1f7d59280e7f095f1fd0', '205.210.31.129', '1664633377', '__ci_last_regenerate|i:1664633377;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f769a1254531bd4b72db7fbb304a77098e5e8b', '51.15.251.143', '1656027312', '__ci_last_regenerate|i:1656027312;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20cbeccc60ef9489f5d0bc04dbece75e0c63fe3', '181.64.57.12', '1620840370', '__ci_last_regenerate|i:1620840071;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620756485\";last_ip|s:14:\"190.237.30.221\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";warning|s:64:\"No se encontraron comprobantes para enviar de la fecha indicada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b21fd93cd9f193ac08acbaf6b9b4c322', '190.43.38.134', '1621695317', '__ci_last_regenerate|i:1621695317;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b239ead5bb5481034cd0a2b3f1ad23895b6a2f5b', '101.68.211.2', '1682982926', '__ci_last_regenerate|i:1682982926;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b23e20e332eedc9e49ae4874d4dd005d21a704ba', '201.230.205.217', '1671214122', '__ci_last_regenerate|i:1671214122;local|s:1:\"1\";listaVenta|i:133;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24494ab02206eea41d6778681320f2500a8ad36', '167.248.133.61', '1654080975', '__ci_last_regenerate|i:1654080975;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24648de00160faa1ff0d3d0e3dc4aabb250f828', '45.225.216.151', '1623419831', '__ci_last_regenerate|i:1623419741;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623332925\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24c03323b820c274bc5aa646cfd5cbf50fc94f9', '190.239.71.47', '1620847822', '__ci_last_regenerate|i:1620847645;local|s:1:\"1\";listaVenta|i:28;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620836349\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24cb479a8f4bf69768a4fc7980c333fe6fd966b', '144.86.173.156', '1628333130', '__ci_last_regenerate|i:1628333130;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b251b83e848ad037c8bed83ba13b8a4451afd574', '198.235.24.140', '1660383775', '__ci_last_regenerate|i:1660383775;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b252ed5a74f6be8a5d6f0a76bfab67386b796d3a', '198.235.24.213', '1694566476', '__ci_last_regenerate|i:1694566476;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b27d22a78fd9ee535a232f49d99cbb9ed9d7d7d6', '161.132.238.121', '1628362530', '__ci_last_regenerate|i:1628362529;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1627626713\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2823c2d10306e25972a4cf555f1c7094c7e00c9', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b291a84c2d61afe8e3e18141b4d74e6ce28ae9b7', '148.102.22.241', '1615915849', '__ci_last_regenerate|i:1615915848;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615911078\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2a4611347918ff0858ffb14b7b334cdd5c8597c', '201.212.119.152', '1629213594', '__ci_last_regenerate|i:1629213488;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1629213582\";last_ip|s:15:\"201.212.119.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ad6b072454828ceee42a6b9f603af4152d7943', '181.176.119.40', '1676728472', '__ci_last_regenerate|i:1676728471;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2cec238a1505a4720ddc38a511c3dff5f0452f4', '3.79.113.133', '1695792515', '__ci_last_regenerate|i:1695792515;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2d2d4a73e714f733e47986dffa6c9291587264e', '45.225.216.151', '1623283650', '__ci_last_regenerate|i:1623283522;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623273425\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2d85093a4cbb5affefbdc911c726bb2c6637af0', '190.237.172.147', '1614775965', '__ci_last_regenerate|i:1614773908;local|s:1:\"1\";listaVenta|i:886;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2dcfbb379fce3a989370c8fbda608909eb2530b', '18.231.136.206', '1611417973', '__ci_last_regenerate|i:1611417973;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2df24eed619d689a454511af44e8a7f645b55c6', '179.6.212.129', '1614693682', '__ci_last_regenerate|i:1614693682;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2edd445b5512b29374bd55e230a024865c54c0f', '198.235.24.161', '1673822270', '__ci_last_regenerate|i:1673822270;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f10f943827dc4830970c2aaa0e62ba1bdb26ce', '167.248.133.185', '1678478832', '__ci_last_regenerate|i:1678478832;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f43f93225d707b5aa0d294190202f4b0097ea7', '148.102.26.11', '1619459450', '__ci_last_regenerate|i:1619459152;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b305f0250c2547e02ec76420103a24c778b334bf', '138.197.175.164', '1691850936', '__ci_last_regenerate|i:1691850936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31d4ff30d5fa1d0387a553fdb8ff5caa4d1cf1d', '201.230.205.217', '1671074769', '__ci_last_regenerate|i:1671074659;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671071243\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b323fan0ggtk5og2m80dl78bgg', '::1', '1598575632', '__ci_last_regenerate|i:1598575632;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32acde94a4daa51043c8b822e2c302ff3b52d56', '198.235.24.133', '1668122721', '__ci_last_regenerate|i:1668122721;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32e3ce72d25905e673b93fe3677fae39f6d1756', '38.25.16.150', '1671253582', '__ci_last_regenerate|i:1671253581;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671252828\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b337e6582eda4e738416fd421b6fef3b72e04f71', '186.1.135.157', '1616767415', '__ci_last_regenerate|i:1616767412;local|s:1:\"1\";listaVenta|i:865;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616711069\";last_ip|s:13:\"190.236.0.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000332\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b33d6bdcffb660b9acd8814b21dd4b68030314f3', '198.235.24.137', '1669318113', '__ci_last_regenerate|i:1669318113;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b35762dcab23888e16bcce2d182b6ac8bcf859a3', '167.94.138.62', '1657218361', '__ci_last_regenerate|i:1657218361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b369b66cc3e9f615b2951a8f3265fa74d6fc8a24', '198.235.24.168', '1673630820', '__ci_last_regenerate|i:1673630820;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36d5d259cab16a62a25149e5e2403762853a1b4', '181.176.110.196', '1672274128', '__ci_last_regenerate|i:1672274128;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3734826dcc4e1e78bce2c6d3b387725fbe8d4fc', '186.1.135.131', '1618348144', '__ci_last_regenerate|i:1618347848;local|s:1:\"1\";listaVenta|i:18;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618342366\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000401\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b375316fd7d6b7785b314fd4472a40c864cb2a3d', '190.239.64.130', '1621524557', '__ci_last_regenerate|i:1621524287;local|s:1:\"1\";listaVenta|i:79;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621521540\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38b609a718baeca613b0259b55fc279ee0c3460', '186.1.135.141', '1612467072', '__ci_last_regenerate|i:1612466914;local|s:1:\"1\";listaVenta|i:18;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612456908\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38bbf9431889b1f141149f89a67b7ca02e5cff3', '183.136.225.44', '1688232977', '__ci_last_regenerate|i:1688232977;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39f0f887294f92244dcff6410f96c17a330b82b', '195.138.110.164', '1685408823', '__ci_last_regenerate|i:1685408823;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a9aac410bfb5faa32dcccf54b7f458', '201.230.81.164', '1622131773', '__ci_last_regenerate|i:1622131773;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3acdda8a24ab563199cf59d7b5a3c56ff0a42b2', '198.235.24.44', '1697867780', '__ci_last_regenerate|i:1697867780;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3af46e030f37a5b70313736fbd4971194e50d5b', '190.232.180.131', '1612546174', '__ci_last_regenerate|i:1612546162;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612363876\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3cb02d52f7e2561f8ec91cfb81d73915544d5c5', '198.235.24.207', '1687488069', '__ci_last_regenerate|i:1687488069;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3ea29dd4a5685adc4de06e3ee379e9fa8895c74', '190.232.180.131', '1612207982', '__ci_last_regenerate|i:1612207964;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612023959\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f40012432e3e35d93a1af0d2bedb60fec70b3c', '179.6.222.7', '1616007588', '__ci_last_regenerate|i:1616007508;local|s:1:\"1\";listaVenta|i:433;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616004221\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000314\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f47b7830b0dd6e5d98256c357b10d7de00bc06', '3.250.96.47', '1652520313', '__ci_last_regenerate|i:1652520313;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3fc20ae7f48ba922bd871485f2a0fe6b6796301', '167.71.249.17', '1636027723', '__ci_last_regenerate|i:1636027723;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40945de16a9072b4b67b0f41b5db5ee522d953a', '181.176.106.98', '1675345606', '__ci_last_regenerate|i:1675345605;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b422ade2afa19107bca98a68edea80dd7ff216cc', '92.118.160.41', '1619493546', '__ci_last_regenerate|i:1619493546;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b428488546435ea8a8be0acc7922ef5421e5e99c', '134.209.165.64', '1698926103', '__ci_last_regenerate|i:1698926103;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b42f13c38c81dbc60e582576d0fc5581e7cc558a', '46.101.80.23', '1696657023', '__ci_last_regenerate|i:1696657023;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4306831ef97db7d0c645cb0b49020ee5bc424e2', '167.94.138.60', '1664895307', '__ci_last_regenerate|i:1664895307;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b46d50468386f4de9b01c9ad0a77086f0b37b907', '181.66.195.254', '1619636607', '__ci_last_regenerate|i:1619636607;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619537510\";last_ip|s:13:\"190.236.28.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4a0cd574488f75b87de14602698bdeb5a374b40', '3.88.178.16', '1654292964', '__ci_last_regenerate|i:1654292963;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4bddbf60af57fbc3a88f2daaafcbc2ccb8a1677', '186.1.135.135', '1612556324', '__ci_last_regenerate|i:1612556291;local|s:1:\"1\";listaVenta|i:24;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d68e98bb010ca756866fe5c0387e0e298e7287', '186.1.135.79', '1611871164', '__ci_last_regenerate|i:1611871068;local|s:1:\"1\";listaVenta|i:1948;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d6f2f4b4c4630a1e0a96dce7afcae37537d6dd', '186.1.135.76', '1612372806', '__ci_last_regenerate|i:1612372805;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e2ee238244ed89a0279fe068222bf84f65c454', '205.169.39.254', '1689740197', '__ci_last_regenerate|i:1689740197;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e3c3f4a807be41fe949f061803d79c11860584', '167.248.133.127', '1683148355', '__ci_last_regenerate|i:1683148355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51bedb5c645fe6576a640208e2b76d42490eba5', '198.235.24.162', '1675576956', '__ci_last_regenerate|i:1675576956;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b531669c31c542c6958d61de737e549352998d76', '38.25.16.38', '1688094492', '__ci_last_regenerate|i:1688092834;local|s:1:\"1\";listaVenta|i:234;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687992645\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b535165731b9874302076c7bacfbadda09d07525', '148.102.22.241', '1616704586', '__ci_last_regenerate|i:1616704346;local|s:1:\"1\";listaVenta|i:547;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5465ffddcc8b091517318aab8497d41f54d52dd', '92.118.160.41', '1624173548', '__ci_last_regenerate|i:1624173548;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54783e10358902d95d4791734cbdce7b24bbca5', '::1', '1598330787', '__ci_last_regenerate|i:1598330787;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598317159\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5509a5de3951fbfb44d39f1d650879b60a217dc', '205.210.31.20', '1696027261', '__ci_last_regenerate|i:1696027261;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5592e20f8e1a6f271a2a8d107b691ceabfc105f', '186.1.135.130', '1617048412', '__ci_last_regenerate|i:1617048141;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56051537b11df9c522714a9ddbe033cca149c5a', '45.225.216.151', '1623253540', '__ci_last_regenerate|i:1623253400;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623159603\";last_ip|s:15:\"186.141.135.236\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b58541c4845788f5c8450e69df6fcf209ae0b514', '2.57.122.25', '1697156254', '__ci_last_regenerate|i:1697156254;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ad7b4fc83494bfb1144e6dff4149a3bee364ce', '198.235.24.167', '1672956347', '__ci_last_regenerate|i:1672956347;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5b0d1f7d9fa6428be6ed611c17bcf0481f7d92b', '167.94.138.119', '1654973510', '__ci_last_regenerate|i:1654973510;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c5d9553e4f0bbec77bd57c701d57783dfc7420', '201.230.205.189', '1681789898', '__ci_last_regenerate|i:1681789877;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f35acbe7c93bb8684aaa3186df7ec9ca2cc5bc', '190.236.30.104', '1619632578', '__ci_last_regenerate|i:1619632444;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619537510\";last_ip|s:13:\"190.236.28.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b601e83d72c21f9dccc36793574e16e4bf2b2b28', '148.102.26.11', '1620936859', '__ci_last_regenerate|i:1620936782;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620918603\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61095c1af45d3b9736b8912c9f546bc8220b84d', '186.1.135.146', '1614026511', '__ci_last_regenerate|i:1614026289;local|s:1:\"1\";listaVenta|i:148;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614019549\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61c99db6595311ebd168395206747dfa617ced9', '92.118.160.1', '1624121184', '__ci_last_regenerate|i:1624121184;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b623d8f9cb6e524625e9e29a35c7107925867b3e', '37.220.93.104', '1686436497', '__ci_last_regenerate|i:1686436497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62a439efbf82f7266711933ba9aeb832ad885db', '205.210.31.3', '1677964190', '__ci_last_regenerate|i:1677964190;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62d5f8e9a2358c123880bfecef86c7e5aee8a9d', '186.1.135.66', '1616443595', '__ci_last_regenerate|i:1616442760;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b646792e3c2ef51d3374d7e203c244a503c26c1e', '186.1.135.134', '1612793247', '__ci_last_regenerate|i:1612793236;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64b13f1b4ccd5d6134da209cf332dbd8940b52d', '186.1.135.129', '1618238015', '__ci_last_regenerate|i:1618237715;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64eaa10ba3d11a00d11324c74ac7a3b89d393ca', '42.192.11.192', '1628898825', '__ci_last_regenerate|i:1628898825;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6547c2ae7685dcbd6e90b175505a63fbd48c17d', '162.142.125.7', '1669473265', '__ci_last_regenerate|i:1669473265;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b661858c4d591506927f4541a397898b22acf53f', '205.210.31.77', '1693256972', '__ci_last_regenerate|i:1693256972;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b66791d5d3bff7fd0c97852418b944a7e0e20129', '34.77.162.23', '1624081756', '__ci_last_regenerate|i:1624081756;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67cdcebf30e53f3c8def93972d34177db890baf', '186.1.135.134', '1612813489', '__ci_last_regenerate|i:1612813291;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612812992\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b69ca2ed026d74ad22ccb8bd75475dc89c4f2d61', '186.1.135.132', '1615498861', '__ci_last_regenerate|i:1615498625;local|s:1:\"1\";listaVenta|i:532;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615479965\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ad4c7a3093f3c30c006d4b63d54c8b5b08afee', '52.64.20.252', '1618630278', '__ci_last_regenerate|i:1618630278;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6be11cf1ed1f0a856142ecc0d90c61bb28c94ae', '59.11.214.75', '1692186741', '__ci_last_regenerate|i:1692186741;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6cc80c4087bfa9024cc03532c04df9923af686c', '101.68.211.2', '1679505667', '__ci_last_regenerate|i:1679505667;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6cff8c8023adff48b70fcc780b643d30a0d32f9', '68.183.152.103', '1656692147', '__ci_last_regenerate|i:1656692147;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d3906df614d684005ecaef47eac4d487d14d85', '167.94.138.63', '1662562966', '__ci_last_regenerate|i:1662562966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d98697383d981d4e323a83b655c1d0c8f9a69a', '181.64.105.12', '1622215614', '__ci_last_regenerate|i:1622215475;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622210824\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f2b23b83c760e3c5f18f48abfc4c4fdbd737b7', '167.248.133.125', '1686561828', '__ci_last_regenerate|i:1686561828;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b70b9b6aee3251969a10684734b583552b7d0582', '186.1.135.143', '1615564430', '__ci_last_regenerate|i:1615564235;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615498612\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7293453c0d5ecc847779d94af33c5085a83bc98', '139.59.18.158', '1695437169', '__ci_last_regenerate|i:1695437169;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b744823761ae95fb3d02683d4bfa73c19514ce45', '38.25.16.38', '1698798734', '__ci_last_regenerate|i:1698798521;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698785031\";last_ip|s:15:\"201.230.205.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b745cce8c9b22f57dfe35bee17a56b90e2b2d965', '18.231.2.96', '1611475954', '__ci_last_regenerate|i:1611475954;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7589e663e97e73580effffffaebe390e30fcc07', '205.210.31.183', '1672786089', '__ci_last_regenerate|i:1672786089;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b791370c343b1f637b1d0af662df48e943206c16', '170.64.154.140', '1683172216', '__ci_last_regenerate|i:1683172216;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b791a424b103a6fe5ecd01223d6de722d016177c', '190.232.180.131', '1612281222', '__ci_last_regenerate|i:1612281214;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612231909\";last_ip|s:15:\"132.184.128.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7940c1384867e92f20002b1943f137637359292', '190.239.78.92', '1620657782', '__ci_last_regenerate|i:1620657486;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7964bf622a20660a19b643a9517e02325a81b66', '51.81.167.146', '1676523767', '__ci_last_regenerate|i:1676523766;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a432756386f087cc0a200f947fcb777f543ada', '186.1.135.71', '1613681776', '__ci_last_regenerate|i:1613681387;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c09dd5abcab3edc04e8120c20429ce347d59e3', '186.1.135.134', '1618602320', '__ci_last_regenerate|i:1618602320;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7db0b4ab625bc00003f45e82419354c2eb31649', '170.64.163.10', '1687174808', '__ci_last_regenerate|i:1687174808;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e2467afc14d8a9fd009095c64eb1ed91149603', '47.242.224.70', '1696422457', '__ci_last_regenerate|i:1696422457;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e27e50cc5b67cc9335ff5a2a9c94335a88078b', '201.230.205.217', '1671213816', '__ci_last_regenerate|i:1671210146;local|s:1:\"1\";listaVenta|i:133;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f36c24166b87b1a08b408cdf1d659d625058e2', '148.102.26.11', '1620660400', '__ci_last_regenerate|i:1620660369;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8029f47842969f7f3fbf2abea25754e', '201.230.81.164', '1622146295', '__ci_last_regenerate|i:1622146295;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8051b5413bfeb1f576565240aa391fcab948968', '34.135.88.41', '1657669574', '__ci_last_regenerate|i:1657669574;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8396b4e0ae46e84843801d6afc599eb929e9ba9', '186.1.135.79', '1611873048', '__ci_last_regenerate|i:1611872748;local|s:1:\"1\";listaVenta|i:1976;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8399d8de77e8ec7a5c61e87547b967145e16f0f', '181.176.100.34', '1675951001', '__ci_last_regenerate|i:1675951001;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8406e81445290ab130d4ffc8ca741532852a9c7', '70.38.27.252', '1690860633', '__ci_last_regenerate|i:1690860633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b843a9e0ba7694ae44cc4b5bff868a425efff4f1', '148.102.26.11', '1619459533', '__ci_last_regenerate|i:1619459460;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84452bb2ca6f8e181b29095802481c1f76b1041', '186.1.135.79', '1611946096', '__ci_last_regenerate|i:1611945882;local|s:1:\"1\";listaVenta|i:386;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b850a1d508e9e96118829c9103a5f8086e075b79', '198.235.24.14', '1684667845', '__ci_last_regenerate|i:1684667845;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b854cb931732e1033fe932e0b4f70e5b35e10764', '148.102.26.11', '1619212176', '__ci_last_regenerate|i:1619212176;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85b520a2a40a74b47d97163b6ec52f09a22627c', '132.184.128.153', '1611885331', '__ci_last_regenerate|i:1611885215;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611873785\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b86041186dd7449433437cebc8b31c4e', '201.230.81.164', '1622146291', '__ci_last_regenerate|i:1622146291;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8633cc39527add1384492169b7c264ceab617a8', '148.102.26.11', '1619816729', '__ci_last_regenerate|i:1619816510;local|s:1:\"1\";listaVenta|i:207;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619798812\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b884f12dcc3f0964bf9f3bbbd62244f61fa44840', '198.235.24.148', '1659409423', '__ci_last_regenerate|i:1659409423;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88649f29a8a6ae81b397badd7b9f90fbc6bd89d', '89.175.184.250', '1690095215', '__ci_last_regenerate|i:1690095215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88b57c71bc52bb9a516f5410abcec7d880c2d68', '186.1.135.146', '1614002475', '__ci_last_regenerate|i:1614002220;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613901346\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000291\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b895062dd422c226d23c3974df454318e33c1790', '186.1.135.135', '1612532823', '__ci_last_regenerate|i:1612532820;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612474708\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000268\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b898e287d3bc7bd52bb729b2471bf02cd8e3c0bc', '161.35.137.224', '1636024576', '__ci_last_regenerate|i:1636024576;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8a1561ae4121d355cc928640da80e4fbf849e59', '161.132.234.14', '1625025609', '__ci_last_regenerate|i:1625025345;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624924260\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8bc79c5971ab19a38a6124c597745f343e026a1', '186.1.135.150', '1613165015', '__ci_last_regenerate|i:1613164729;local|s:1:\"1\";listaVenta|i:502;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8be3b8ddd220d98405e118c46bc8fd22f0baa59', '186.1.135.129', '1617823161', '__ci_last_regenerate|i:1617822958;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8be4a1de17b4c8a13872bd27bdb12cadf03df14', '38.25.16.184', '1692975154', '__ci_last_regenerate|i:1692975154;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e22dbec167252e59ff0494eedaa170735933aa', '42.193.23.126', '1628907727', '__ci_last_regenerate|i:1628907727;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ea146054582d64ac178ed61ec486ae280dd412', '186.1.135.150', '1613165792', '__ci_last_regenerate|i:1613165484;local|s:1:\"1\";listaVenta|i:552;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f2437c96aa4bb1ece39fa30ae65655a868353d', '167.94.138.36', '1685685621', '__ci_last_regenerate|i:1685685621;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8fe1b2120890a54f1828f237c49dd917a9f34bf', '146.70.166.232', '1680726077', '__ci_last_regenerate|i:1680726076;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90082c2d98b7371ca15baf8c0b62b30c028875e', '186.1.135.79', '1611941966', '__ci_last_regenerate|i:1611941926;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b905def80c5213ef0c950c45f24969be4e7d7962', '185.195.233.248', '1680586543', '__ci_last_regenerate|i:1680586543;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90d3245899feea865c6ac0baa6e2561f7f4aa56', '190.232.180.131', '1612538563', '__ci_last_regenerate|i:1612538563;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612363876\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9141f2bec4dfc7085ca285bfd1f1207', '45.177.196.194', '1670943296', '__ci_last_regenerate|i:1670943296;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91d7743bfb09bccae25d47790907194051a34da', '144.126.202.105', '1683172262', '__ci_last_regenerate|i:1683172262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b92f731112a4e33f6d256a8b07676c087fbb5be6', '205.210.31.42', '1668800383', '__ci_last_regenerate|i:1668800383;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b935658678fa1d83749ad9c78f4ea5dba28ac436', '181.176.104.123', '1672339651', '__ci_last_regenerate|i:1672339651;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b93a9237f142cd0bb12eb09d6fb526fdb5c08af8', '34.72.77.27', '1657409924', '__ci_last_regenerate|i:1657409924;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b94ccf0f91458af2454fad8ada436dc14db86c0f', '162.142.125.222', '1695550236', '__ci_last_regenerate|i:1695550236;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9601d2a657b98e0b97498158fe0ce1d', '201.230.81.164', '1622131765', '__ci_last_regenerate|i:1622131765;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621695920\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96ec740ec0225b234b904d0f717003088fc1525', '167.99.49.109', '1628187796', '__ci_last_regenerate|i:1628187796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97d188b3a8e7c1b23de1ebc2a68d4687bf912b7', '186.1.135.130', '1617740984', '__ci_last_regenerate|i:1617740857;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617723111\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a2af1b390ac4d73b2c63e58b85f7a73713719a', '190.2.134.27', '1665207043', '__ci_last_regenerate|i:1665207043;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9ad23817fcb7edb8c871faf2ee06dc06666f14e', '34.68.234.101', '1657929183', '__ci_last_regenerate|i:1657929183;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b47c5b5fc28fe271254101fee817cc5186bacb', '198.235.24.137', '1668537346', '__ci_last_regenerate|i:1668537346;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b9c0efeeb51736959085c1bac06ca3832f9f19', '92.118.160.5', '1613808647', '__ci_last_regenerate|i:1613808647;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cf350d7cff463468eec99699bc267d', '45.177.196.194', '1670874000', '__ci_last_regenerate|i:1670874000;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9d3ff81db3daf491b9d34b0470dcc2aae9e0bec', '190.239.71.238', '1671467964', '__ci_last_regenerate|i:1671467963;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9dff9e876d595eabc7d2b1554a8f1aa9dd8e059', '2.57.122.107', '1673671536', '__ci_last_regenerate|i:1673671536;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9eb9745507e5f55659683e9305072829362f9ef', '167.94.138.60', '1636693497', '__ci_last_regenerate|i:1636693497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9ebeb89e7048fae5cfbd9bc3ae0ab6426247448', '205.210.31.53', '1697217241', '__ci_last_regenerate|i:1697217241;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba03c3ec0cba0fd2fc418c02147f38e224c604a1', '64.225.4.155', '1697725042', '__ci_last_regenerate|i:1697725042;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2b75c531cfa8a3d059280c7bfb01ff93e2ccb6', '34.254.53.125', '1668926972', '__ci_last_regenerate|i:1668926972;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2cab0d890e1c83b39308fda46050446a139455', '34.77.162.13', '1635197955', '__ci_last_regenerate|i:1635197955;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2f20cf5ab414f8ceccc44389ddbf3c47b01e6f', '207.148.127.89', '1694384029', '__ci_last_regenerate|i:1694384029;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba376857ac84d4767b9784a2570f127628d11cc4', '167.248.133.117', '1657218361', '__ci_last_regenerate|i:1657218361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba39490007221a7ad0ffe4941a918b3074f11e36', '181.64.57.12', '1621110204', '__ci_last_regenerate|i:1621110204;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba4601846e4ea66bdf2db2a2de15555d6b00c61b', '92.118.160.5', '1613214780', '__ci_last_regenerate|i:1613214780;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba4ec308510a5481dd99ec810f5a7a910f6f8861', '181.64.105.12', '1622214256', '__ci_last_regenerate|i:1622214216;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622210824\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:59:\"Forma de Pago no fue agregado con éxito, intente de nuevo.\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6a7f93b577738cb9088e33dd4a5fb43f0f39b4', '178.128.219.183', '1689223306', '__ci_last_regenerate|i:1689223306;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6dcdad5dbcd72f3df773e3d12177349d705551', '190.232.180.131', '1612546162', '__ci_last_regenerate|i:1612546162;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612363876\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab9d0c9703de5fb11d037d765c3d8515bc78326', '190.237.172.53', '1616178472', '__ci_last_regenerate|i:1616178197;local|s:1:\"1\";listaVenta|i:499;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616166389\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad097dd4d84d37e96ee0e3e936731caf6485f40', '45.225.216.152', '1625195867', '__ci_last_regenerate|i:1625195568;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625150754\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baea3bc0cb19bc003cb68df3ced7101ee51d979a', '148.102.26.11', '1619455813', '__ci_last_regenerate|i:1619455535;local|s:1:\"1\";listaVenta|i:622;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619452033\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baefea16f785bd82caefaf8a6375a0bb828946b8', '186.1.135.71', '1613666143', '__ci_last_regenerate|i:1613665950;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613655953\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf09659062134fad65e0e7d7ce643f98abe93e9', '198.235.24.23', '1676986078', '__ci_last_regenerate|i:1676986078;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf130108d1b5b03e016b8772b431331730b9700', '139.155.54.119', '1623406677', '__ci_last_regenerate|i:1623406677;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb3110396d4d167bcca932df9731266066ee7ec1', '209.17.96.18', '1612937192', '__ci_last_regenerate|i:1612937192;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb4f70f87f23dc1576c7f82f30176aa8ed95ba08', '51.158.66.83', '1637887189', '__ci_last_regenerate|i:1637887189;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb850eb87cc9663690a0498efeb089ee83457ec3', '181.67.2.242', '1687926235', '__ci_last_regenerate|i:1687926151;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1685466671\";last_ip|s:13:\"177.91.248.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb91eec3de67c620351560685f4c04c95673dfb0', '188.166.81.73', '1676522772', '__ci_last_regenerate|i:1676522772;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc12a70fec53c226e4ffe09b3ebffe4c9c89c74', '198.235.24.168', '1662882054', '__ci_last_regenerate|i:1662882054;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbee50f2e9df775b66cbccd1d8ab71ae', '161.132.234.14', '1624914793', '__ci_last_regenerate|i:1624914793;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbf7698158d019d5575956c76ed6923aab6ebd10', '186.1.135.141', '1612454431', '__ci_last_regenerate|i:1612454360;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612444489\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc09a1653ebed81ec3a526f3f3e5fe3e3da88b39', '139.155.30.159', '1624197628', '__ci_last_regenerate|i:1624197628;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc192578fd95e4f2c620c5d1fdef9c23737254e5', '199.195.250.129', '1675189718', '__ci_last_regenerate|i:1675189718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc69e3720d9092a54173790769476da41fddaefc', '148.102.26.11', '1620236797', '__ci_last_regenerate|i:1620236521;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc7c070308eceb80bde7204dbddba39d03895a5e', '186.1.135.138', '1613052883', '__ci_last_regenerate|i:1613052586;local|s:1:\"1\";listaVenta|i:1190;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc892c4bc454ab50b0d76605ef1c3efd24b418fe', '38.25.16.184', '1698954067', '__ci_last_regenerate|i:1698953832;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc9438af0be08e9fc1549d3f480bd5bd97319218', '186.1.135.137', '1614177538', '__ci_last_regenerate|i:1614177512;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614173235\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca744a08a3fcff46415d381d2662166fdaea90c', '144.91.106.14', '1678530004', '__ci_last_regenerate|i:1678530004;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bccbae4acdf51550607c19b6ea26452fb6184a13', '35.183.60.188', '1622788989', '__ci_last_regenerate|i:1622788989;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcdab9007f3ee5d0e84e8527d7971fb19756d6d2', '167.248.133.191', '1692894796', '__ci_last_regenerate|i:1692894796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcecea4af4fdea643a16127323754ef4e6b19710', '177.91.248.76', '1684860934', '__ci_last_regenerate|i:1684860923;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1684208345\";last_ip|s:14:\"190.237.34.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf09255bacdf7006194eab6f4c0cf6362a54ff8', '207.148.127.89', '1694415330', '__ci_last_regenerate|i:1694415330;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf22e49d1a47381c284c1afea92412f91937e53', '205.210.31.130', '1669175299', '__ci_last_regenerate|i:1669175299;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcfc48c9b99aafee00c08302ba485274020caafa', '13.124.222.242', '1618738904', '__ci_last_regenerate|i:1618738904;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd02fe1fdde94b5945837d31ecb5635c8e377539', '38.25.7.251', '1652726301', '__ci_last_regenerate|i:1652726047;local|s:1:\"1\";listaVenta|i:3;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652481027\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd0a4725e350fe6c9fed5d3b7eaec60918ca51d1', '179.6.212.129', '1615481557', '__ci_last_regenerate|i:1615481557;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615470525\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd0b32a835371608388ad320a0d196ab807a76a9', '186.1.135.143', '1615397756', '__ci_last_regenerate|i:1615396707;local|s:1:\"1\";listaVenta|i:15;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd0db0b18730d279f6b8896dafc7cc77', '190.43.38.134', '1621695313', '__ci_last_regenerate|i:1621695313;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd244df724deb4937101e3a422aa81021998a942', '183.136.225.44', '1685501447', '__ci_last_regenerate|i:1685501447;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd45961b11e86d4b268cd8f830f293718c69e7ef', '15.228.75.60', '1611847450', '__ci_last_regenerate|i:1611847449;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd54b61ff35cce60f0ce9ca2f6467d910069862a', '207.241.235.249', '1676519427', '__ci_last_regenerate|i:1676519427;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd628bb728083e92a68ecd95c1f12df4d0b0fac1', '198.235.24.156', '1677342864', '__ci_last_regenerate|i:1677342864;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd9a3b0cecf0beaadad44b729e552cb12e55f671', '205.210.31.248', '1697776091', '__ci_last_regenerate|i:1697776091;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdb454fd5c8e86978fcbff7239f3031eff706406', '205.210.31.3', '1691329913', '__ci_last_regenerate|i:1691329913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc48c434b185ed18f626d448e8283a24b58299b', '104.155.149.137', '1655532300', '__ci_last_regenerate|i:1655532300;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc5d5edb48c424fed60ca8c2c973cc3b9f34617', '186.1.135.134', '1614095070', '__ci_last_regenerate|i:1614094805;local|s:1:\"1\";listaVenta|i:434;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc90e68576ec3a9f5d762c52bf1697783b477d6', '183.136.225.46', '1684224793', '__ci_last_regenerate|i:1684224793;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bddc37d11779742f48b8ddd894095017', '45.177.196.194', '1674848334', '__ci_last_regenerate|i:1674848334;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdf6e70e3b7a0f0b5ddf844921efb6b00a37679c', '148.102.23.16', '1619631876', '__ci_last_regenerate|i:1619631619;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619630873\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdfae96d438dade41ebcf0153242c6f952aef165', '167.94.138.127', '1679124931', '__ci_last_regenerate|i:1679124931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be03beeabfed01abf50b7e48bc5397455983edaa', '92.118.160.13', '1628366759', '__ci_last_regenerate|i:1628366759;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be05274d917fedadd82328607c6f720ac13b3e79', '186.1.135.130', '1617040344', '__ci_last_regenerate|i:1617040341;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000349\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be108fce764fb7c96036ef17767d512f8bb8d299', '179.6.212.129', '1614961457', '__ci_last_regenerate|i:1614961196;local|s:1:\"1\";listaVenta|i:530;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614882416\";last_ip|s:13:\"186.1.135.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1b9753ed78f35432967b97df4e411b8b9ecfe7', '167.248.133.117', '1657218361', '__ci_last_regenerate|i:1657218361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be22fc490c593480879342de1ea30d93880fa6c9', '148.102.26.11', '1620939902', '__ci_last_regenerate|i:1620939902;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be251645fd1fa8e3b1610b4890bfbc431f37d288', '42.192.11.192', '1628898278', '__ci_last_regenerate|i:1628898278;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2d243d6569ea4bfb6f99b712e45dd3097417bd', '34.77.162.32', '1619227710', '__ci_last_regenerate|i:1619227710;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3be4fb7fd338330c1e7cbbeea14af2b4dd0a5a', '205.210.31.162', '1673399294', '__ci_last_regenerate|i:1673399294;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3e6c760fc9499ed54a29f9e8ff0699215781d9', '201.230.205.217', '1670903373', '__ci_last_regenerate|i:1670903349;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670900121\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3f7ed976e0431be0b77a06e127726dcc357b91', '186.1.135.79', '1611935870', '__ci_last_regenerate|i:1611935870;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be8db6453f18bf87e64ad2b7def4596e1c1e45ea', '15.228.82.73', '1622203304', '__ci_last_regenerate|i:1622203304;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be95a5727641c47b05974f260f028af88643989e', '181.64.18.180', '1634484092', '__ci_last_regenerate|i:1634484091;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be9e91461d1accbda2fd2ba22a2a4919bd15c1e7', '132.191.2.181', '1621456810', '__ci_last_regenerate|i:1621456810;local|s:1:\"1\";listaVenta|i:158;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621438505\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea0b9360b637b9d7ad12965b895d3ab39a415d1', '167.248.133.188', '1698158050', '__ci_last_regenerate|i:1698158050;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beb18fd98201076b21b527cfb5e513bc772226df', '195.211.77.140', '1676519379', '__ci_last_regenerate|i:1676519379;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beb77244d8915ed284afff0c29071731691b7f42', '190.239.192.47', '1622562348', '__ci_last_regenerate|i:1622562333;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622556802\";last_ip|s:14:\"190.239.192.47\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec0fd381d2744d3c98e864b0e7a684fe676c590', '143.198.7.36', '1667868398', '__ci_last_regenerate|i:1667868398;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec4315d4ed89ca05e06888bb333e9027c35eeac', '38.25.7.251', '1652482993', '__ci_last_regenerate|i:1652482993;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652451092\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bed4a47448a1a33c4ad28ec822f626e03d03b44a', '183.136.225.44', '1677853383', '__ci_last_regenerate|i:1677853382;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bedd0698deaf6d27c6c899918d46de9634120d21', '34.194.68.222', '1668999127', '__ci_last_regenerate|i:1668999127;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee3b2d74efea6baa972db5b5aba22259d1444b6', '45.225.216.151', '1623110088', '__ci_last_regenerate|i:1623110084;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623079921\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee8e24d84867c33117fc5622cb8665ab119e188', '62.210.10.77', '1617705643', '__ci_last_regenerate|i:1617705643;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee9a86d3d6263486a4cc0989b4f3f98f82d0e9d', '148.102.26.11', '1620935185', '__ci_last_regenerate|i:1620934881;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620918603\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beee8d02f257658171be7ecd7f1a356c336690a2', '148.102.26.11', '1619535518', '__ci_last_regenerate|i:1619535518;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf14f2946f6b017f3bffd8ee3a2b619c7d08af33', '186.1.135.135', '1612535204', '__ci_last_regenerate|i:1612534656;local|s:1:\"1\";listaVenta|i:89;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612528908\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf16c642131596a53ea8223bbde9e3f804d9ab2c', '34.77.162.4', '1619123105', '__ci_last_regenerate|i:1619123105;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf255894d4051e6e4c6b763adf8751249ae22565', '190.232.180.131', '1612816317', '__ci_last_regenerate|i:1612816077;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612798667\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf3290527240ea56544f9a12a4378718cc8551ae', '35.193.226.4', '1655740863', '__ci_last_regenerate|i:1655740859;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf5b9b4ef3379ff6ee076da374a5d3b9675be1be', '198.235.24.19', '1666494559', '__ci_last_regenerate|i:1666494559;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf64fb32456536e54a48ff2dd4b092091ecebaf2', '::1', '1598817091', '__ci_last_regenerate|i:1598817091;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598816134\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf86ed22d3293b66fce22d42c0e23593e4282d88', '205.210.31.35', '1696648550', '__ci_last_regenerate|i:1696648550;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf89ed8884e3ad1e30d71b197ee8af37cb1c81fa', '161.132.234.14', '1623161830', '__ci_last_regenerate|i:1623161823;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623100618\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf8a640fd26118a86fb420d5ed37364d8e2405fc', '45.33.108.82', '1668919089', '__ci_last_regenerate|i:1668919089;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf9af304cece9814c32ea68293455a2cec128c47', '92.118.160.45', '1621779894', '__ci_last_regenerate|i:1621779894;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa0dc70f9eaed8d6145d0d4b965161e4ddd45de', '144.91.106.14', '1678530005', '__ci_last_regenerate|i:1678530005;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfaa30da19f5f4d9bd3fb9251c039875aa255af5', '15.228.82.222', '1611929727', '__ci_last_regenerate|i:1611929727;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfae014fc8726d7e4b10c6f8bb203cc2d08638a3', '181.66.176.124', '1691564974', '__ci_last_regenerate|i:1691564679;local|s:1:\"1\";listaVenta|i:196;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1689051802\";last_ip|s:12:\"181.67.2.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfca21a88f7ba5f8f3155922a777f4da27f4387a', '198.235.24.144', '1670610890', '__ci_last_regenerate|i:1670610890;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfcd1a2b1df1206778c0f76a8616310b4018a522', '148.102.22.241', '1616696568', '__ci_last_regenerate|i:1616696290;local|s:1:\"1\";listaVenta|i:108;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd15006427302d18825633a7c7fe9dff27edc2f', '186.1.135.138', '1613055389', '__ci_last_regenerate|i:1613055116;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd1f91acd1144a53728385029fdc5ba2f99de9f', '198.235.24.30', '1658120067', '__ci_last_regenerate|i:1658120067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe82e29f373877a6eef4a378ffad8c3a9414603', '198.98.48.183', '1666089773', '__ci_last_regenerate|i:1666089773;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bff91210d7754eeae2604dfa308bd0629625eda3', '186.1.135.76', '1612382959', '__ci_last_regenerate|i:1612382959;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c002a7f873ef8e480bd2925e0c86f52571a29d7d', '179.6.212.129', '1614697691', '__ci_last_regenerate|i:1614697532;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c013b8f52c1a83d1644317da2b439e77f8238751', '::1', '1598364185', '__ci_last_regenerate|i:1598363940;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598339373\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01707fa5769a4c725af240022ffc57cfd930419', '162.142.125.214', '1689080898', '__ci_last_regenerate|i:1689080898;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0185ecdfd3e9fbbc2d2c9a9f9b3ddff3deb9b24', '148.102.23.16', '1619633272', '__ci_last_regenerate|i:1619633212;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619630873\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04bea539044f6b30b9a23f1fb11e6e97abb3955', '201.230.205.217', '1671253687', '__ci_last_regenerate|i:1671253514;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671253115\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c077f3b4e2b98e5179d6dd0da9d60cc52bfcd58e', '161.132.234.14', '1623692032', '__ci_last_regenerate|i:1623692017;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623558277\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c07cf04c850492b8b823517520a0cc60bb375201', '45.225.216.152', '1625199289', '__ci_last_regenerate|i:1625199283;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625150754\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c07d9c37a263abf1d1eb29cda02949d6df06eb9c', '201.230.205.165', '1698457473', '__ci_last_regenerate|i:1698457473;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08333a9c2aaff42a7f1d187ecdd082d2ce91c24', '148.102.22.241', '1616689644', '__ci_last_regenerate|i:1616689388;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000325\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08ac3ac0077dfd48708cede9d5148d260058dd5', '148.102.26.11', '1621001935', '__ci_last_regenerate|i:1621001935;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08d9fe644dd3961cde15a6dea922184601d0902', '190.236.24.150', '1611078138', '__ci_last_regenerate|i:1611078138;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598834103\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"Dyy60hamyB5kR4ghDgHuAoYOWgK+OKWtNGgoOswAU2v4uhKE3LRY8tqTXq730/+WTAIa0YEPcgEQFTk8Ym0RIQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"old\";s:9:\"csrfvalue\";s:3:\"old\";}csrfkey|s:8:\"cMHmyri9\";csrfvalue|s:20:\"Q3pKVmvXyEIgoM75dReT\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c099c6968fd3e31ad9da55fbd94faa8de828bead', '37.220.93.104', '1686488188', '__ci_last_regenerate|i:1686488188;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0d1263552c5ffff08eb696f227950c45c20e6f2', '190.239.66.67', '1620148250', '__ci_last_regenerate|i:1620147563;local|s:1:\"1\";listaVenta|i:142;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620072748\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0eb8fad10500f7d83d7e1ad1e62b5e4f7688c70', '190.239.64.130', '1621434013', '__ci_last_regenerate|i:1621434013;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ec7ff1d04081c6dd57037afd74f7e8f2c9d3cd', '186.1.135.143', '1615415785', '__ci_last_regenerate|i:1615415500;local|s:1:\"1\";listaVenta|i:812;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615413018\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ec938a0ffa114c13f5da2559c450cba6dee6b1', '183.136.225.44', '1677853328', '__ci_last_regenerate|i:1677853328;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f1827a52e86e703406b0887f738916722588f3', '106.75.147.97', '1693858931', '__ci_last_regenerate|i:1693858931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0fddcf1934018f542014e7117f47f20f2ebd29f', '190.239.76.131', '1616539411', '__ci_last_regenerate|i:1616539410;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c13547533d34cf6a1720f23196605863ad7e36ef', '101.68.211.2', '1692181607', '__ci_last_regenerate|i:1692181607;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c149adb8c340bb1a1da53c7f8a4fc5fb6dbe40d0', '65.154.226.169', '1684984239', '__ci_last_regenerate|i:1684984239;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1566780181eea71b5d71b5ab3ff0a326585dbbb', '38.25.16.150', '1672372595', '__ci_last_regenerate|i:1672372411;local|s:1:\"1\";listaVenta|i:406;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672350030\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c170bf46446b749bcc636df2139b041f97e51f73', '148.102.26.11', '1619195240', '__ci_last_regenerate|i:1619195169;local|s:1:\"1\";listaVenta|i:2991;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c17792b8ccab84ea306e2b8a0afff181ea746263', '121.5.219.20', '1623440970', '__ci_last_regenerate|i:1623440970;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c18f636a990331fff66b906688d427ab35d2dd2a', '207.148.127.89', '1694459239', '__ci_last_regenerate|i:1694459239;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a1018da86bb31eb51d4be39718bdc862ab98b7', '148.102.22.241', '1616703471', '__ci_last_regenerate|i:1616703469;local|s:1:\"1\";listaVenta|i:69;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616690222\";last_ip|s:14:\"148.102.22.241\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:26:\"Venta efectuada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a58c3d262eaf49be24e7346b9d6bfa9be4e255', '144.91.106.14', '1680462557', '__ci_last_regenerate|i:1680462557;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b2622c43f742a97b1280ad5825f1c9bc7d7cc9', '198.235.24.25', '1658364109', '__ci_last_regenerate|i:1658364109;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b8cb1345abde6f37c20ee54ab189fa06b04560', '186.1.135.129', '1614724290', '__ci_last_regenerate|i:1614724290;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1beaf3e46100672cb9b4b3e232dabb50f114e32', '186.1.135.134', '1612819262', '__ci_last_regenerate|i:1612818959;local|s:1:\"1\";listaVenta|i:255;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612812992\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1efb8edc261af188edee50992cc2cd1bf31418f', '38.25.7.251', '1652383259', '__ci_last_regenerate|i:1652383258;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1637793593\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f79a6b1a3869da5fe78bfa0ac6fded1061f5ad', '37.220.93.104', '1686488143', '__ci_last_regenerate|i:1686488143;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1fdcbbe2a0374b1c8f589ee3405c2a5aca2a732', '118.24.106.70', '1628794350', '__ci_last_regenerate|i:1628794350;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2170ebf4e938a1e22fa49a5fd1dc581fdd926e2', '132.184.130.216', '1612298041', '__ci_last_regenerate|i:1612297821;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612276018\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21d1af07e8f9f39c6ff43d99a7d48ee8b1dd37c', '181.176.109.80', '1674856665', '__ci_last_regenerate|i:1674856644;local|s:1:\"1\";listaVenta|i:104;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674848384\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c235f8daf47eaf9624faa5bcbb159377b631c6a8', '18.230.94.37', '1612397876', '__ci_last_regenerate|i:1612397875;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c248344126e0c3057b805ef2ab7abd262e04ef81', '161.132.234.14', '1632764218', '__ci_last_regenerate|i:1632764013;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1632699012\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24bca01cf08c2546d235eb26fa21e1c67316bb1', '148.102.22.241', '1616703469', '__ci_last_regenerate|i:1616703123;local|s:1:\"1\";listaVenta|i:69;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616690222\";last_ip|s:14:\"148.102.22.241\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c257446d97dd7796b7ba38d296708092be38d249', '38.25.16.38', '1694660438', '__ci_last_regenerate|i:1694660410;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694654201\";last_ip|s:15:\"201.230.205.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c25becfcc6955364b2a5b883abe122de5bff81e3', '165.227.232.121', '1668919084', '__ci_last_regenerate|i:1668919084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2709fa86eb2b2df443a38a60290ea33118ebb18', '144.86.173.4', '1628933660', '__ci_last_regenerate|i:1628933660;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c28ad5e6a715fb1cb4018c0d8b887d846f385bef', '186.1.135.131', '1617630676', '__ci_last_regenerate|i:1617630473;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617285684\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c299b3898cb1bd62254debe4cfbe950d30739242', '186.1.135.141', '1612454284', '__ci_last_regenerate|i:1612454039;local|s:1:\"1\";listaVenta|i:221;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612442480\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000265\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a1aa976c4342c32ee469eabaf3f648b390a42b', '190.43.38.134', '1621441828', '__ci_last_regenerate|i:1621441828;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620840076\";last_ip|s:12:\"181.64.57.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a79c2a80f4f3a8a36b09abdd372265d97529fb', '44.233.222.88', '1635270648', '__ci_last_regenerate|i:1635270648;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a9b6adcb9902237e8b293f0aa56708181cb13e', '186.1.135.133', '1612191190', '__ci_last_regenerate|i:1612190845;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611937040\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cba8e30de8949745dcac2af0fa5c9ebb634498', '3.91.52.21', '1685206459', '__ci_last_regenerate|i:1685206459;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d0628a534348948ee59fc38d85507dc6708853', '205.210.31.8', '1659568376', '__ci_last_regenerate|i:1659568376;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2df5793d66fea4d54cbf01f217931fd1151fe2f', '41.207.30.11', '1653840725', '__ci_last_regenerate|i:1653840725;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f1147be3ca69a431518365f422ccb1a13aeab2', '152.32.154.144', '1678555516', '__ci_last_regenerate|i:1678555516;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c303ed4bd4172c842d64bcd9d883761593f17347', '162.142.125.224', '1684308743', '__ci_last_regenerate|i:1684308743;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c335fe9cdb582623aa3e3853a09d947fb7a04869', '18.221.206.247', '1623999862', '__ci_last_regenerate|i:1623999862;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3365aae7ec5243d5dbc75e8cd34e0493545cb65', '186.1.135.129', '1617828756', '__ci_last_regenerate|i:1617827744;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617809172\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34834382700b83a9ce43f96da06faf450a9dbab', '164.92.189.255', '1676522776', '__ci_last_regenerate|i:1676522776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c352766a77a93d13f7cea1ce60771f7500119c67', '34.96.130.29', '1622619072', '__ci_last_regenerate|i:1622619072;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35b4d8691f411a0ef92a8ee86b182705cc59f1d', '167.94.138.51', '1688539678', '__ci_last_regenerate|i:1688539678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35cbb922d17c55d3023eee9273f29674bfa40cd', '101.199.254.231', '1678245815', '__ci_last_regenerate|i:1678245815;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c374469206e2d20874df9d352544e17be2b15649', '205.210.31.40', '1677955738', '__ci_last_regenerate|i:1677955738;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3846cace98bf5f765a145d784934809f712afc6', '167.248.133.51', '1695345277', '__ci_last_regenerate|i:1695345277;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3944f066744ad3d9908f0fd207d60f831adec6b', '134.175.228.189', '1636156572', '__ci_last_regenerate|i:1636156572;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c39c2967a0224467775011884d1e882171c4e506', '190.232.180.131', '1612276022', '__ci_last_regenerate|i:1612276008;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612231909\";last_ip|s:15:\"132.184.128.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a48b04907660b857a6079f781e3bc229ce01e3', '38.25.7.99', '1654474087', '__ci_last_regenerate|i:1654473983;local|s:1:\"1\";listaVenta|i:80;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1654292551\";last_ip|s:14:\"201.240.25.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a528aca18d5a9aeb69192520851a7e5813568b', '190.237.172.147', '1613901347', '__ci_last_regenerate|i:1613901339;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613742638\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a98aa10d17f88f1fd07b4c6b33d7d22c62f4eb', '38.25.16.184', '1698954686', '__ci_last_regenerate|i:1698954507;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";csrfkey|s:8:\"FOrpdEkP\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}csrfvalue|s:20:\"aPCA8YOcyRxldsNDe0t6\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3bab6caca75598fe45cc7f2153ce540913c4aaa', '167.248.133.44', '1675313392', '__ci_last_regenerate|i:1675313392;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c493a19186077f13ca53a5961c733ac1516dce', '190.232.180.131', '1611874283', '__ci_last_regenerate|i:1611874282;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611863237\";last_ip|s:15:\"132.184.128.122\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c4b3fd3a46ebbdab4f2d6ef9ba6adce9cc006f', '148.102.26.11', '1619730161', '__ci_last_regenerate|i:1619730161;local|s:1:\"1\";listaVenta|i:589;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619717910\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d29edb4b288da5f4b3fa9e75fbecfd4bdf2670', '186.1.135.76', '1612375247', '__ci_last_regenerate|i:1612375247;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e4a1e8fd8512c0cf84c1f8d6d21cf5065f76bd', '190.236.24.150', '1611076825', '__ci_last_regenerate|i:1611076824;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3ea0899c749917b70a5f813fa1d9734c4ef9b7d', '198.235.24.67', '1698262155', '__ci_last_regenerate|i:1698262155;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3ed5d47b8ce797e5823851e3c7a49e24aa11df4', '148.102.26.11', '1620237291', '__ci_last_regenerate|i:1620237177;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3fdae335218c745569b99987a93ecb8fb8d7132', '183.136.225.44', '1690169637', '__ci_last_regenerate|i:1690169637;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c40394f3a27585dc78ee584cc0c8ca75545aa3c8', '179.6.212.129', '1615166674', '__ci_last_regenerate|i:1615166392;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615165073\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c40747e125f15cfc2fcb725177df0f30fcaa61d0', '205.169.39.241', '1683172290', '__ci_last_regenerate|i:1683172290;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c40e5682054c9182f93eb6b9f6c2635e26603c14', '179.6.222.7', '1617980464', '__ci_last_regenerate|i:1617980100;local|s:1:\"1\";listaVenta|i:1128;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41e9674c382df1ba038fbf39f33f9c4f0e7e9f9', '190.238.217.9', '1611173274', '__ci_last_regenerate|i:1611173273;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611172209\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3SVuNoULqXw4VUJk/DxMiJyIC1KTUNSQme44df/nTtYS3H4JxSBWFBnc9Msc9e4EUitQcyLEJ+ExafzQR9Wg7w==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:0:\"\";pass_sol|s:0:\"\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42320dc56b3812d13907c53ef240d1c57ebc240', '42.192.11.192', '1628898284', '__ci_last_regenerate|i:1628898284;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4395dc0077307375a3e172bef0b3891851cb9fd', '205.210.31.129', '1684032707', '__ci_last_regenerate|i:1684032707;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43cff6864314f91637a45f8f8ae92d216d506ac', '179.6.222.7', '1617127424', '__ci_last_regenerate|i:1617126468;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c442e810a014706f5d8d67b6f2a8347e09e247ad', '34.194.68.222', '1668999127', '__ci_last_regenerate|i:1668999127;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44d08982bcf6ff95c667c370c28513a6fcb5139', '62.210.10.77', '1617702445', '__ci_last_regenerate|i:1617702445;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44fc27edf0c1f896d15f501fd598589852d197d', '198.235.24.55', '1682744558', '__ci_last_regenerate|i:1682744558;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45a0024eb9b9b6b505290cef016c12dc680fac5', '34.72.42.174', '1655833583', '__ci_last_regenerate|i:1655833583;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c46dbbb97fbf16cb905f345e8af167c39d633a03', '193.151.160.57', '1637703378', '__ci_last_regenerate|i:1637703378;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c46ea205c041e93f7c5ef7833a9a3052e64c0a59', '186.1.135.149', '1616768821', '__ci_last_regenerate|i:1616768721;local|s:1:\"1\";listaVenta|i:166;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616765276\";last_ip|s:13:\"186.1.135.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c46f930fb918cc540f9269c0f9d153783dd4763c', '190.43.38.234', '1620733805', '__ci_last_regenerate|i:1620733805;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c46fd47e01a25792fd7b7fd20d813c3017ef1330', '::1', '1598583476', '__ci_last_regenerate|i:1598583235;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c470efe7e51e357fdcf98700a281d97c7d5f8592', '34.244.149.223', '1631272283', '__ci_last_regenerate|i:1631272283;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c472fff30ea12ada3030bb8f1b6099a4f9a58c0e', '186.1.135.79', '1611874111', '__ci_last_regenerate|i:1611874109;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611848582\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:53:\"Se registro y envío con exito la guia de remision - \";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c47c47b81c846e9aa9b583cbb0cb0c4ddbee3996', '38.25.16.184', '1698959341', '__ci_last_regenerate|i:1698959068;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c481723ca51c02c1a99c1e1aeae7cd848b7db916', '207.148.127.89', '1694421983', '__ci_last_regenerate|i:1694421983;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c499fa71577ee79a0e586e93060b608ce3e2b943', '186.1.135.78', '1611864478', '__ci_last_regenerate|i:1611864217;local|s:1:\"1\";listaVenta|i:1182;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4af0b8be21198134000da46237625c6d1f04fa1', '186.1.135.143', '1615911398', '__ci_last_regenerate|i:1615911078;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4afa856c4dc645e1ec1aa14d2b7b7de9659c07a', '183.136.225.45', '1694889936', '__ci_last_regenerate|i:1694889936;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4dcc6f3256b72de3dd38690d3b9f29ee14eff00', '186.1.135.129', '1617805112', '__ci_last_regenerate|i:1617804826;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4df0315f908bb9fe5b03c1f09571a58105d1853', '201.230.205.217', '1672894896', '__ci_last_regenerate|i:1672894606;local|s:1:\"1\";listaVenta|i:2;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672888469\";last_ip|s:11:\"38.25.16.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e71d01df902f45ad23ff34f97f7c7f58c85192', '148.102.23.16', '1619617775', '__ci_last_regenerate|i:1619617584;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619535621\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4f631fc12cafea5573e1816ae3f24cacbd3a36e', '162.142.125.226', '1688134651', '__ci_last_regenerate|i:1688134651;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50bb2cd2b3c5f00438f0ca365dcd5d81bb76393', '201.230.205.28', '1697476056', '__ci_last_regenerate|i:1697476022;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1696989884\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c51353c7950be9816c5a14afc89c47d79a2e1132', '205.210.31.161', '1655097175', '__ci_last_regenerate|i:1655097175;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c51b099c21f2fbd07c3dc146b837574c1a2034e3', '18.228.204.175', '1622434117', '__ci_last_regenerate|i:1622434117;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c52a6296cdab25bdc2e08bbb2dfc5093fe8ae8d8', '186.1.135.141', '1611851885', '__ci_last_regenerate|i:1611851657;local|s:1:\"1\";listaVenta|i:192;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c52f8017a631a2953c3ddf236afbf22488341442', '186.1.135.135', '1612558966', '__ci_last_regenerate|i:1612558965;local|s:1:\"1\";listaVenta|i:24;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5496337df8684db376f81daaa3213570070bfe4', '205.210.31.52', '1687013856', '__ci_last_regenerate|i:1687013856;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54cc78206adb5468222b41f9ab8694f7b2fe40c', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c55180c66d9fadf53309f4c429796d55745c41b0', '42.193.23.126', '1628908668', '__ci_last_regenerate|i:1628908668;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c55373dc136843dee502beb584d28b7c3a632286', '54.194.71.137', '1691351451', '__ci_last_regenerate|i:1691351451;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c55f703a74c3c2f54d1d8f065c90e2f25647cf79', '205.210.31.133', '1652819059', '__ci_last_regenerate|i:1652819059;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c561dddd68c47f9d5d11b11e87a92376bb55297c', '148.102.26.11', '1620764671', '__ci_last_regenerate|i:1620764518;local|s:1:\"1\";listaVenta|i:245;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620755720\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c564accc7e826e47f8d063d50a4e6be16915ea0f', '167.94.138.51', '1688539677', '__ci_last_regenerate|i:1688539677;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c565c9133c9c8cf44e29e147e01730f3d1b5cbc6', '205.210.31.164', '1676029497', '__ci_last_regenerate|i:1676029497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c57a0770ed7cd60a811ef893c5dd86d424a76a7f', '186.1.135.129', '1614705649', '__ci_last_regenerate|i:1614705649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c582002db4128a225b3d2ce390b5dbe0a0ea052f', '45.225.216.152', '1624924330', '__ci_last_regenerate|i:1624924037;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624917844\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"2\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5959fd021099f03bfe1ea51157e1938bcd3b861', '92.118.160.61', '1637377697', '__ci_last_regenerate|i:1637377697;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5991d94f5106e13a4af4199839f5e64b0b9c81f', '186.1.135.79', '1611951729', '__ci_last_regenerate|i:1611951611;local|s:1:\"1\";listaVenta|i:633;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59c0bc4c51e67b5747274ccbd39f138daed3412', '190.43.38.134', '1621455274', '__ci_last_regenerate|i:1621455274;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5a31a826f0d961a249d6fe02b33f34c237cb0c2', '87.236.176.82', '1671438752', '__ci_last_regenerate|i:1671438751;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ac42c6e04c8efc143be8fd82ccf1c148cf6a44', '190.43.38.134', '1621442183', '__ci_last_regenerate|i:1621442182;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620840076\";last_ip|s:12:\"181.64.57.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";warning|s:64:\"No se encontraron comprobantes para enviar de la fecha indicada.\";__ci_vars|a:1:{s:7:\"warning\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c5fd15a720cbf6ffe17f1e071e01e1', '45.177.196.194', '1674848330', '__ci_last_regenerate|i:1674848330;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5cdc5932c5fd622abecfbc825222af33be0b47c', '52.67.236.219', '1611098262', '__ci_last_regenerate|i:1611098261;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5da146bcd3293b9b6361c8dbd25e8e7115c8e19', '205.210.31.165', '1696687018', '__ci_last_regenerate|i:1696687018;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c619245ce8cf4866c705da0047f3e0f1aab623b6', '205.210.31.25', '1659813575', '__ci_last_regenerate|i:1659813575;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c621c1bf022c54d8f3600b0a616364a0ffa608df', '47.88.86.63', '1696435203', '__ci_last_regenerate|i:1696435203;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c636d51a56ff7506f8e5474fb01f2789df409350', '201.230.205.217', '1671206590', '__ci_last_regenerate|i:1671206348;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c640ebb022c460a20d83dca03f92d2de4831cb3f', '148.102.26.11', '1619535275', '__ci_last_regenerate|i:1619534991;local|s:1:\"1\";listaVenta|i:361;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619533744\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000414\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64ba9690c82013d430fbfadb073d824b2960760', '190.239.78.92', '1620674724', '__ci_last_regenerate|i:1620674666;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c65afba4f06848b0744506344f05766ff7e98c8c', '27.115.124.49', '1683360810', '__ci_last_regenerate|i:1683360810;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67b2d95eb707efd70f1aa0c43a1b336f21fe14b', '148.102.26.11', '1620944766', '__ci_last_regenerate|i:1620944766;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6885d850781f61ae6b206dc94070507b9599371', '186.1.135.158', '1612910845', '__ci_last_regenerate|i:1612910613;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612897601\";last_ip|s:13:\"186.1.135.158\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000273\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c69d56db2ee3fca7f275f526860f57f911757ba1', '198.235.24.33', '1675484711', '__ci_last_regenerate|i:1675484711;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c69e518f58520e5968fc95a2fe832b7f81ae6fba', '118.24.106.70', '1628794358', '__ci_last_regenerate|i:1628794358;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b9e889a822441fbdc880c2c478999076498d3c', '201.230.205.196', '1698785049', '__ci_last_regenerate|i:1698785028;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698727897\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";form_data|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c64ad708004996b134b155deed82665e720fe3', '198.235.24.180', '1696954349', '__ci_last_regenerate|i:1696954349;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e0569004a4e979fa3b9a9812fe561fa436cf5a', '45.33.108.82', '1668919089', '__ci_last_regenerate|i:1668919089;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e0e1b57188794daac59de0e241bdef1dad4c28', '144.86.173.26', '1627973025', '__ci_last_regenerate|i:1627973025;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e629df6117bd66ba598c81c7d07b8729ef27b4', '198.235.24.8', '1694822857', '__ci_last_regenerate|i:1694822857;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6fd9daa4a8a277f84ff0652549f75fea7588444', '44.211.98.226', '1677554162', '__ci_last_regenerate|i:1677554161;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c70445fbc85c0c91b7aaa5849747ea1cfddacb36', '148.102.26.11', '1619536529', '__ci_last_regenerate|i:1619535952;local|s:1:\"1\";listaVenta|i:595;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619534195\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c704f2368a57f0d4eb14fa569ab85ba5120a093f', '34.66.78.2', '1655430573', '__ci_last_regenerate|i:1655430573;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7269626d5338d8e4d1cffd7fb49d9e6fef8cf3d', '198.235.24.217', '1694806912', '__ci_last_regenerate|i:1694806912;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c741f1258fc4713134968e0075814886c2fc970e', '::1', '1598363281', '__ci_last_regenerate|i:1598363179;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598339373\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c747fab3850f97eaf9602aecb535899b9c6f7c1e', '198.235.24.37', '1682028022', '__ci_last_regenerate|i:1682028022;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c74be8611adc4d42498962fe193034476fad1902', '3.0.115.255', '1615952170', '__ci_last_regenerate|i:1615952170;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c74d35bd35cc6c9f7a9f1ce9cf6bddd0054d4fa1', '92.118.160.17', '1637460751', '__ci_last_regenerate|i:1637460751;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c76f7d3eaccc586c27509c59e63bffb4c5f99ede', '198.235.24.56', '1666008519', '__ci_last_regenerate|i:1666008519;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c770670b9bad449692d472391e206192a83d80ce', '190.237.172.53', '1616102114', '__ci_last_regenerate|i:1616102111;local|s:1:\"1\";listaVenta|i:271;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7732515d9eb1f337b03d1488976a2fc65364ecf', '65.154.226.169', '1689799006', '__ci_last_regenerate|i:1689799001;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7794aef7f173be2c887131e719061a2892e8861', '181.176.103.132', '1673979727', '__ci_last_regenerate|i:1673979723;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1673879168\";last_ip|s:14:\"181.176.108.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7a87fd2fa6c2dcb605c85471935980247840503', '18.230.119.195', '1622549274', '__ci_last_regenerate|i:1622549274;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7a98480a3013dd81ac2a75754b15442f70e9730', '34.250.7.182', '1692853939', '__ci_last_regenerate|i:1692853939;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b219933032031ef8e36f50cfe929f4093fe148', '159.223.68.191', '1689801912', '__ci_last_regenerate|i:1689801912;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b5616d88407c91b892610ec307185af2b23490', '190.232.180.131', '1611780150', '__ci_last_regenerate|i:1611780145;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611760323\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7c7470d70125f442dc752288377854732af47f9', '186.1.135.137', '1614186020', '__ci_last_regenerate|i:1614181898;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614173235\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7cc003a9824340e393c3887064421cf997ee77b', '59.11.214.75', '1695125805', '__ci_last_regenerate|i:1695125805;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d4209cc30aaa4b151ba1a8737cc02250e7cbfa', '186.1.135.71', '1613665943', '__ci_last_regenerate|i:1613665644;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613655953\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d560ab97caea1aedbfc301c8ee1e8920424b80', '181.176.121.19', '1675174721', '__ci_last_regenerate|i:1675174584;local|s:1:\"1\";listaVenta|i:362;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675126396\";last_ip|s:14:\"181.176.121.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7db076d986f42eb6170fe956ad0c864d2df4155', '38.25.16.38', '1696989885', '__ci_last_regenerate|i:1696989875;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1695658532\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c807959ab61bce6dfbfacbb144b41f614986f133', '87.236.176.181', '1688023901', '__ci_last_regenerate|i:1688023900;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80b77445c1f9f40efd5cad8fa3f5b0ec1cfd91d', '148.102.26.11', '1618854095', '__ci_last_regenerate|i:1618854095;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80be8da96e3ead10e6a47976b40f4fa3092de47', '167.248.133.189', '1677672251', '__ci_last_regenerate|i:1677672251;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c82c5739ea6e3d4d000625dfc0def695499a97a6', '190.237.172.53', '1616090821', '__ci_last_regenerate|i:1616090554;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616008708\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8317841a6bac2e547a5910d6303de3b976bebf0', '3.248.249.238', '1672679261', '__ci_last_regenerate|i:1672679261;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c86435f5ad53ed3376a50e66ec5a69f6', '161.132.234.14', '1624914769', '__ci_last_regenerate|i:1624914769;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c88de4bcbabf781e8d64e9e85900c69053eeffc9', '186.1.135.159', '1618841898', '__ci_last_regenerate|i:1618841624;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c6ef6d3cb3c1f30ac4eaddad34d7365d8fe62a', '161.35.178.156', '1611898363', '__ci_last_regenerate|i:1611898363;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e9491a55e51fa5347fc1da002d0db2ca7a35bb', '186.1.135.138', '1613056125', '__ci_last_regenerate|i:1613056125;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ec8a5c58b290abe50286cf4270c28f065bc235', '132.184.128.141', '1619199179', '__ci_last_regenerate|i:1619199172;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619122727\";last_ip|s:11:\"181.64.18.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90b31c661f0b1f626aa5b8ece47729278e13fe9', '45.225.216.151', '1623273799', '__ci_last_regenerate|i:1623273397;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623252334\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92804da3682b397a5e6fde36ebc49558f5c7c6b', '95.214.27.191', '1682417384', '__ci_last_regenerate|i:1682417383;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c929a1a7404dc99c98c9c3317ee8db79513d4f27', '205.210.31.20', '1696027260', '__ci_last_regenerate|i:1696027260;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92b5e284bac73d134e6c7cad5dbd61231af8fb9', '186.1.135.154', '1618516680', '__ci_last_regenerate|i:1618516398;local|s:1:\"1\";listaVenta|i:309;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618414864\";last_ip|s:13:\"186.1.135.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c930ef1c79a2dbd4817ba0fd4de185ea5511c4e9', '34.122.113.119', '1655679211', '__ci_last_regenerate|i:1655679211;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c93caf7f80a41fe1172b0bf2d2a91c61e55a4a93', '190.237.172.147', '1613291418', '__ci_last_regenerate|i:1613291417;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613291006\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:12:\"PDF generado\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c93fddff963ff14a8209b874116fe3ca60acd0ba', '38.25.16.184', '1698947705', '__ci_last_regenerate|i:1698947704;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94115189ef3788705fe7e31b6ddfa7e32a29d4e', '205.210.31.45', '1670641885', '__ci_last_regenerate|i:1670641885;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9546b35b1fd04923c18b12fcd36e1df5233bbf5', '186.1.135.129', '1618241774', '__ci_last_regenerate|i:1618241473;local|s:1:\"1\";listaVenta|i:91;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c96eaac50f7435a65b45d9251f0fed95', '201.230.205.217', '1672884620', '__ci_last_regenerate|i:1672884620;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9983e404ed88bdf6635052483883619dcf9c11a', '190.232.180.131', '1612814728', '__ci_last_regenerate|i:1612814720;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612798667\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9994a29df592ed063d511d6304b9cbe0fec21e4', '195.74.76.198', '1683172223', '__ci_last_regenerate|i:1683172223;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a877e4e8d84e6a6031b71a58f60e97872c5994', '167.248.133.35', '1695368418', '__ci_last_regenerate|i:1695368418;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b2d0367eb21cbae041ef7fadef4e68e86df8dd', '87.236.176.238', '1690702491', '__ci_last_regenerate|i:1690702491;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9bd6b66eac0ff6097db5e3d9a9f63e1bac5381d', '52.64.20.252', '1618572520', '__ci_last_regenerate|i:1618572520;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e28edb00d39f8dd1afcfda5f059e39a7072a17', '205.210.31.24', '1685064732', '__ci_last_regenerate|i:1685064732;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e61db0175daf42ad1350e67f824e67e4c3e7b2', '35.193.226.4', '1655740851', '__ci_last_regenerate|i:1655740851;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f066b09886db15228375c0437048af057fb556', '186.1.135.130', '1617740769', '__ci_last_regenerate|i:1617740365;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617723111\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca0e6308cec18ed88eed536b6adb34bf32500d49', '198.235.24.183', '1693216788', '__ci_last_regenerate|i:1693216788;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca16fbb904dd24f4b6aadbf676441e2d051f1efc', '146.70.166.232', '1680726076', '__ci_last_regenerate|i:1680726076;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca18cbb0530529c7e7732bf997ab84309ad85b92', '34.77.162.10', '1634897008', '__ci_last_regenerate|i:1634897008;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca24a51f74aa113111ab827fee22f9930c512746', '179.6.212.129', '1615167083', '__ci_last_regenerate|i:1615166792;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615165073\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2af9e4e8c0fc0dee37f8ebae40bea4ceea3e83', '186.1.135.70', '1613493115', '__ci_last_regenerate|i:1613493093;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613426795\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca3076d55a5e6824d0e0e54978b49e68ecae8826', '38.25.7.251', '1652913349', '__ci_last_regenerate|i:1652913349;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca414cb42c711e860efb4a636039417ec3f56430', '186.1.135.130', '1614345867', '__ci_last_regenerate|i:1614345514;local|s:1:\"1\";listaVenta|i:226;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614290424\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca48830722c6b551267b111c6a3bc37ee0466224', '186.1.135.159', '1618841616', '__ci_last_regenerate|i:1618841322;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618599324\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5eb111ec2d55e2cd7098a654baf62a19ba4448', '35.88.207.227', '1654293572', '__ci_last_regenerate|i:1654293571;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca62efacc95fa2d4fd93d20e2d4f94c155f4ca4a', '181.64.18.180', '1634482994', '__ci_last_regenerate|i:1634482993;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca6cffe4613e859cb97f38b07d936b1161d8f42b', '51.158.108.61', '1632179218', '__ci_last_regenerate|i:1632179218;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca7da60c484d374311bf3b067b65762641938ec0', '132.184.128.153', '1611889380', '__ci_last_regenerate|i:1611889336;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611888947\";last_ip|s:15:\"132.184.128.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca85dc1974e289950a64920b5b8e344e35f65e1a', '167.172.26.51', '1631037708', '__ci_last_regenerate|i:1631037708;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8e8e4b4a304fe58c1361019cc154086625b6a0', '183.136.225.44', '1677853325', '__ci_last_regenerate|i:1677853325;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa3c00351885a74509fcca4942c660dc35e0d37', '92.118.160.41', '1623445394', '__ci_last_regenerate|i:1623445394;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cabfd7b8217d035074ce1aab58f59db99330b9c4', '15.228.76.186', '1622373090', '__ci_last_regenerate|i:1622373089;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cacb54d7dd3f492648e4e4f8cd8d1969d202c451', '170.64.170.150', '1680656512', '__ci_last_regenerate|i:1680656512;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad239625146fbfbc2a9fff75f3fe691b5e173fc', '87.236.176.121', '1688065452', '__ci_last_regenerate|i:1688065451;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caf478bbceb2a6f2b956ae7b2f437e9f8c1f21bd', '186.1.135.129', '1618241472', '__ci_last_regenerate|i:1618240387;local|s:1:\"1\";listaVenta|i:49;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cafffd3e57d7ae13077cbefff001943f21d3901a', '167.94.138.62', '1657218361', '__ci_last_regenerate|i:1657218361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0456d8a6738c2371fc27f6c77503c0', '45.177.196.194', '1674848330', '__ci_last_regenerate|i:1674848330;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb127cfff5dbd0fe5d631d1019db7f5455a8ffb5', '181.176.107.88', '1676477557', '__ci_last_regenerate|i:1676477430;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675884029\";last_ip|s:14:\"181.176.124.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1d61e79b8b7e5c6bb09babbe61c868c5a5c9a4', '205.185.127.165', '1682234359', '__ci_last_regenerate|i:1682234359;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb39a8d0c9544384fd749175ff04b58c47eb58ff', '167.248.133.124', '1694804557', '__ci_last_regenerate|i:1694804557;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb47a6ca4d55a937c3201a26e9e00946eb3a6551', '186.1.135.129', '1617827743', '__ci_last_regenerate|i:1617827418;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617809172\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4ba0ae2ddd97236f68bc5432266bb9018ecb15', '162.142.125.9', '1661532492', '__ci_last_regenerate|i:1661532492;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb593ace67c4b27139cda9839685140e3b9f31b7', '179.6.212.129', '1614707165', '__ci_last_regenerate|i:1614706979;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb6a0eaa2b8ec2e995c3de9c3463d39717931979', '205.210.31.163', '1673220571', '__ci_last_regenerate|i:1673220571;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb71ea916e7368cab281ebca75dd39208c858f36', '167.248.133.61', '1654080967', '__ci_last_regenerate|i:1654080967;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb7ed7000d7cfa6fb366d438b8e6239ffc82be2e', '179.6.222.7', '1617747422', '__ci_last_regenerate|i:1617747259;local|s:1:\"1\";listaVenta|i:1254;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617738724\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb851bb2fcc6b065babc3abf8ca79c4488f25552', '186.1.135.141', '1612444494', '__ci_last_regenerate|i:1612444485;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612442480\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9334cb22f0ef030ca62169d0181e52dfe3bae0', '167.94.138.119', '1654973509', '__ci_last_regenerate|i:1654973509;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb956b76cd5253b81d253d84136ef68de7775074', '205.210.31.26', '1655598415', '__ci_last_regenerate|i:1655598415;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9908c48054d7a9bf87d7a587522f8eab47c535', '179.6.222.7', '1616883199', '__ci_last_regenerate|i:1616883199;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb991d07342e095b45e0967e0b84f66436919ead', '175.24.232.97', '1618581840', '__ci_last_regenerate|i:1618581840;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9bc28628bb67a62cf4d6df87354fb2642ed1bd', '179.6.222.7', '1616719120', '__ci_last_regenerate|i:1616719120;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba64638b87f5fa9d89c3ff30574c13d229407b6', '209.97.163.31', '1680140726', '__ci_last_regenerate|i:1680140726;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbabc895f6ffd494b07bb1e8ee312a145b14e8d4', '167.248.133.63', '1662391025', '__ci_last_regenerate|i:1662391025;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbabedd1d91efb6ff50e3b68f7e1c64e091af263', '38.25.16.150', '1670905364', '__ci_last_regenerate|i:1670905220;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670903352\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb525f0e2951679e922d18910287d099fc1de1c', '205.210.31.52', '1687013855', '__ci_last_regenerate|i:1687013855;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbca6962a9a27ba6a30dbd80e625c891e696e5f4', '175.24.232.97', '1618581832', '__ci_last_regenerate|i:1618581832;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd1c5d94a11897cb9ccb8f9d9aa2593e6f3f64f', '148.102.26.11', '1621612290', '__ci_last_regenerate|i:1621611919;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbe3d2ed6c05145af02905dea53bee7723b56e9a', '190.237.172.53', '1616004359', '__ci_last_regenerate|i:1616004359;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbec7ed7eaf41993e83f4f136028e61997bd5ff0', '3.120.189.184', '1691552285', '__ci_last_regenerate|i:1691552285;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf2c407200d93192dd7055b9090a26be45e81f2', '186.1.135.143', '1615394033', '__ci_last_regenerate|i:1615393850;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc1257ea7f54abfe26ced7a07742d0f5be6ab047', '198.235.24.233', '1687534180', '__ci_last_regenerate|i:1687534180;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc16f309c80d759b3e9e1f1685f3f8a7a8f6a39b', '15.228.35.103', '1612016199', '__ci_last_regenerate|i:1612016199;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc1ba5a4dc716d1fd364ffa6175700a16d8e01a0', '205.210.31.21', '1652549705', '__ci_last_regenerate|i:1652549705;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc3b74605fa251aa6fbd71da991de624fa2a61ee', '101.199.254.201', '1679266358', '__ci_last_regenerate|i:1679266358;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4092fd76e574e4fb783eb9a40d8e3198c35981', '190.237.172.109', '1615118790', '__ci_last_regenerate|i:1615118790;local|s:1:\"1\";listaVenta|i:486;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc53c896bd7d17eddee37ea6f98f79a75665cb81', '139.155.30.159', '1624197629', '__ci_last_regenerate|i:1624197629;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc5fce8a9643710168ae5c68eedebcdf431ecf87', '183.136.225.44', '1685498996', '__ci_last_regenerate|i:1685498996;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc60e8b2a4fdc72f54308e8280cd881b29ccd6dc', '148.102.26.11', '1620074146', '__ci_last_regenerate|i:1620074146;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc64cf1df1d3736920bf505c0af6786d68bb44df', '104.198.240.71', '1655915065', '__ci_last_regenerate|i:1655915065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc67b7ffb214e252efe4044b08a2fb90b940f3d0', '186.1.135.79', '1611935912', '__ci_last_regenerate|i:1611935870;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611934945\";last_ip|s:15:\"201.212.119.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc7070810515b3cdbfffc5347bb2580763c44c9b', '34.86.35.18', '1622187555', '__ci_last_regenerate|i:1622187555;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca2c8ce6af66e553695780e9d5df577ea2f4275', '186.1.135.134', '1614088124', '__ci_last_regenerate|i:1614087943;local|s:1:\"1\";listaVenta|i:223;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb3fcce22b27cb718b57c1f08f10949f4f55c9e', '211.205.155.42', '1664629708', '__ci_last_regenerate|i:1664629708;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb972df70e63fede4b6b4f839e9f6e4bf567a6a', '205.210.31.158', '1697221803', '__ci_last_regenerate|i:1697221803;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cccd1385cd28d3dd740acb004970bb58b2ec4ce7', '198.235.24.49', '1695217240', '__ci_last_regenerate|i:1695217240;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccce4d4adb803ed4599470611e077432a01c6d22', '186.1.135.134', '1612815677', '__ci_last_regenerate|i:1612815378;local|s:1:\"1\";listaVenta|i:173;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612812992\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd175336aa5a2784b081e978d0a061e12cd8cb89', '205.210.31.172', '1670406854', '__ci_last_regenerate|i:1670406854;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd29949785665ac498ebf6ab3f5f4aeea9fb8a0f', '190.239.66.67', '1620143855', '__ci_last_regenerate|i:1620143796;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620072748\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd374d82f8c4d0492d16a44d8ee717e7eec4531f', '186.1.135.138', '1613075551', '__ci_last_regenerate|i:1613070846;local|s:1:\"1\";listaVenta|i:2994;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3ff9a7a0df22daf986e6f1cbbaa96040e4887a', '186.1.135.142', '1614617528', '__ci_last_regenerate|i:1614617346;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd4f395b7e49164fc0b5f716bef12f830380eea3', '179.6.222.7', '1617130604', '__ci_last_regenerate|i:1617128241;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd6856f89325a638ea59c5f8caaf6039e4ccd32f', '161.35.131.220', '1631040739', '__ci_last_regenerate|i:1631040739;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd6dca403603fe7353f5c9c69be91396e7163659', '205.210.31.54', '1665451601', '__ci_last_regenerate|i:1665451601;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7e71b85d920ac69e785c51ce76da1ebca70db2', '161.132.234.14', '1623441659', '__ci_last_regenerate|i:1623441657;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623416241\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd98b12ed0ca4b03774e7db00f7ea253d1f72729', '179.6.222.7', '1617977431', '__ci_last_regenerate|i:1617977158;local|s:1:\"1\";listaVenta|i:63;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda5fcbfe3dd28595333d38a63c4cb6777283f92', '173.212.236.106', '1660451686', '__ci_last_regenerate|i:1660451686;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc21310df130a6cb2b72b47b8a11112e90a2a71', '134.175.228.189', '1624434044', '__ci_last_regenerate|i:1624434044;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc2503c08ad7a1ac95f1a11344f4c96947cbf3b', '186.1.135.129', '1618234762', '__ci_last_regenerate|i:1618233920;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618062389\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd1a103bf6d5645167d162813496b91b6bbd62e', '144.126.202.105', '1683172262', '__ci_last_regenerate|i:1683172262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cddd49a12170fbe41c32d9e4995c1e602549c271', '198.235.24.159', '1661671689', '__ci_last_regenerate|i:1661671689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdeb7b3d165e38cb20524453eeb948e173223624', '181.176.122.57', '1675627464', '__ci_last_regenerate|i:1675627406;local|s:1:\"1\";listaVenta|i:300;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675267463\";last_ip|s:15:\"181.176.117.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf0237d20fe5aeea47a21fd0e18900c2cad70b8', '198.235.24.10', '1669433878', '__ci_last_regenerate|i:1669433878;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf44f41f24fbe53374244bda41bdff635d6c404', '183.136.225.45', '1693999927', '__ci_last_regenerate|i:1693999927;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf60c3984af79518a311456335401856b1d285c', '205.210.31.36', '1698095635', '__ci_last_regenerate|i:1698095635;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce003bf3f388dee9453e1fef61d4effb4bdfec4a', '186.1.135.150', '1613161249', '__ci_last_regenerate|i:1613161220;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613136259\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce07e2fafb2a85d553cde6e38367ae3480cb3f06', '148.102.22.241', '1616704306', '__ci_last_regenerate|i:1616703870;local|s:1:\"1\";listaVenta|i:547;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce0ae9178ef79a2b58854d65eb66ae8d6d365ff6', '181.64.105.12', '1622210901', '__ci_last_regenerate|i:1622210650;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622158527\";last_ip|s:13:\"190.237.30.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce0b960cadc8cbbea137175b47800f20fd7136cb', '18.231.189.92', '1621750176', '__ci_last_regenerate|i:1621750176;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce19c054a37692fbed685d6450951f1a1598d0cb', '198.235.24.159', '1661671689', '__ci_last_regenerate|i:1661671689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce25b3bc0c654b1341d3674d0f6deeadd04f95cd', '167.94.138.50', '1698230473', '__ci_last_regenerate|i:1698230473;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce40296ba946ee12dc778a903de65b0f1a91444e', '186.1.135.130', '1617739444', '__ci_last_regenerate|i:1617738662;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617723111\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4546f4c9849fe8516de10b2cf9d5530f31079c', '179.6.222.7', '1617220261', '__ci_last_regenerate|i:1617219998;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617197129\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000370\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4976b652c4efdad3ed2c6a8f1d6ecf4264cbbc', '144.91.106.14', '1655994066', '__ci_last_regenerate|i:1655994066;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce53ba73a79cbf2a41efd4bbd2992d2d61434261', '47.128.57.103', '1695398169', '__ci_last_regenerate|i:1695398169;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce679fa2d6db27ae426b0c3b3a9daa1ff09d5a81', '161.132.234.14', '1625025313', '__ci_last_regenerate|i:1625025031;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1624924260\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce75811716b4fe513909ff64bda75700b5a40cc0', '172.234.49.237', '1696391403', '__ci_last_regenerate|i:1696391402;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce82220bf3d4148c8a49b9fdea1217ee36c870af', '198.235.24.224', '1695997821', '__ci_last_regenerate|i:1695997821;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce8de7ef38cbba7d3a648d7f4d3d19c3c2183e56', '186.1.135.135', '1617801825', '__ci_last_regenerate|i:1617801571;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617746932\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea9e497b5e6c9b56d54731d6ba1e2f55cfb43e0', '148.102.26.11', '1621521846', '__ci_last_regenerate|i:1621521816;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621462978\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced8ec2f1a82e96f679366baf4cd811e8ea620a6', '190.237.172.96', '1616858311', '__ci_last_regenerate|i:1616858311;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616847991\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cefb139db0f6e19bd38cd1532b7205abd07716a0', '190.43.38.234', '1619974493', '__ci_last_regenerate|i:1619974156;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619901000\";last_ip|s:15:\"190.239.238.200\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceff5b5ed6cb65a44fb9289ea277c3a8906226f7', '149.102.246.10', '1689741469', '__ci_last_regenerate|i:1689741468;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1b5a29c8f79759e0c71916e7b094d16d7fb155', '179.6.222.7', '1616883645', '__ci_last_regenerate|i:1616883467;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616881876\";last_ip|s:14:\"190.237.172.96\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf30ebe7dea088ef94c46d840b0fc4eb32399239', '167.248.133.117', '1668055826', '__ci_last_regenerate|i:1668055826;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3a7ac378ede30b5accd15d077ce7d5772a1462', '205.169.39.254', '1689740192', '__ci_last_regenerate|i:1689740188;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf461987b3b303b767c46d4e1c65c4e94fb3ad48', '38.25.16.184', '1698951290', '__ci_last_regenerate|i:1698951017;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf7cd0a3ad09aa68d7c545cab90c48f229d85fcd', '101.68.211.2', '1690003254', '__ci_last_regenerate|i:1690003254;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf8838a3952aaa5164103663ce229dc12d66e4db', '37.220.93.104', '1686436541', '__ci_last_regenerate|i:1686436541;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf8e5df62df514f646a9ba16e265d03b303f815c', '179.6.212.129', '1614696571', '__ci_last_regenerate|i:1614696300;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf97c2a871fd5392e22c00ec0bdd9a76fb05f02e', '190.237.172.109', '1615115875', '__ci_last_regenerate|i:1615115600;local|s:1:\"1\";listaVenta|i:47;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfaa49503cbd3066508ebde5a83a591176065d1f', '2.57.122.115', '1653198674', '__ci_last_regenerate|i:1653198674;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb291359fc2703d5972c58f4af6dfb9a44d2204', '190.43.38.246', '1628871356', '__ci_last_regenerate|i:1628871145;local|s:1:\"1\";listaVenta|i:271;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1628362077\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb6ff6185110c9ef7d0f3cfaf877d274531915d', '34.96.130.253', '1613784911', '__ci_last_regenerate|i:1613784911;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfbcb9519f4373027a120cf0d59b8acc46ae023b', '179.6.222.7', '1617130710', '__ci_last_regenerate|i:1617130691;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfcaa59f45236ecfb94033218352f72bd9fb3e3c', '79.104.53.14', '1654282167', '__ci_last_regenerate|i:1654282167;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfe4e2c3b2bfcc28fcd8288dddca7a07ece32de3', '186.1.135.129', '1618242969', '__ci_last_regenerate|i:1618242666;local|s:1:\"1\";listaVenta|i:202;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cff75e99a176c8dd7233783780aca3c32db85e75', '169.150.201.24', '1681341898', '__ci_last_regenerate|i:1681341898;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfff828910e8e3224d74adbb9bf72ca2c2cac398', '38.25.7.99', '1654573724', '__ci_last_regenerate|i:1654573723;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d00cdd3001e3502d1b1a440f44ea36b44ef721eb', '186.1.135.79', '1611867438', '__ci_last_regenerate|i:1611867327;local|s:1:\"1\";listaVenta|i:1590;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d018467cf566bd2e0bb5a17f6435dbfbd8aaedf9', '205.210.31.134', '1656253448', '__ci_last_regenerate|i:1656253448;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01d7194d9618b367c92af3ec3df09a8f29e551f', '181.176.107.88', '1676478894', '__ci_last_regenerate|i:1676478838;local|s:1:\"1\";listaVenta|i:135;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675884029\";last_ip|s:14:\"181.176.124.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03fa914d240396221478a0aaed9f34546d6146e', '186.1.135.129', '1618239566', '__ci_last_regenerate|i:1618239303;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d043254ad6778f3edc9a992ae4295ec7ae12a834', '186.1.135.141', '1611849818', '__ci_last_regenerate|i:1611849570;local|s:1:\"1\";listaVenta|i:156;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04e52212d2388ce383af2614d0c64c8a7bdf686', '148.102.26.11', '1619812881', '__ci_last_regenerate|i:1619812778;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619798812\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d053448bddeb189d03b7d8a731ebcf4c72566ec8', '70.38.10.157', '1690877296', '__ci_last_regenerate|i:1690877296;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d069fc1acd5cb577008241ca1f0b7d1e92b07552', '179.6.212.129', '1614703595', '__ci_last_regenerate|i:1614703470;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d071e52bcbd497ba83e001a30b95b71045e381bd', '45.225.216.151', '1623252809', '__ci_last_regenerate|i:1623252621;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623159603\";last_ip|s:15:\"186.141.135.236\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:86:\"<p>El campo Alerta de cantidad mínima solo puede contener caracteres numéricos.</p>\n\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d078467116eb0aea68f314cb71bec9120800c926', '161.132.234.14', '1626235624', '__ci_last_regenerate|i:1626235361;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1626056982\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08b6fffd52e4b7d9da421dd6377ebb587c21d88', '186.1.135.134', '1614087902', '__ci_last_regenerate|i:1614087558;local|s:1:\"1\";listaVenta|i:223;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d09770bc6e0c874f0d4ba116c6b6a348dcbf6686', '35.153.72.110', '1619157204', '__ci_last_regenerate|i:1619157204;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d09bb2f9987c5fd50a04e211140e606f43895ab0', '38.25.16.38', '1697476633', '__ci_last_regenerate|i:1697476430;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1697473515\";last_ip|s:14:\"201.230.205.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0aacea6666b4388c0b67cf99476ae12a5f86184', '175.24.232.97', '1623535995', '__ci_last_regenerate|i:1623535995;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0adc94ffecf601c6ab690b743ba58881f182753', '45.79.228.129', '1661790680', '__ci_last_regenerate|i:1661790680;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0aecf7ebeef83de49fea9293628a6667260061a', '3.71.111.153', '1691037658', '__ci_last_regenerate|i:1691037658;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0af23fc4f76f699be1cd69fc52df0d6ee167868', '205.210.31.36', '1698095636', '__ci_last_regenerate|i:1698095636;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0cafae7780abdd6c75f379cfaea81ecfb3c4eec', '132.184.130.201', '1612212215', '__ci_last_regenerate|i:1612212059;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612207972\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"b7OuXvCjhN/Tz3eIzquSv8tRkp2EGf0xEs88HZd0Cz+BLcAlLj6KVg0MENtd64InbMcYfzcw+d0lXzydPK7anw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:37:\"Configuración actualizada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d1b1ee2e1108f1a3c8731266b7c5bc8605414f', '205.210.31.171', '1687699717', '__ci_last_regenerate|i:1687699717;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e0be8597b58a4f7353e0cdc6ee99da0ce423d5', '186.1.135.66', '1616446923', '__ci_last_regenerate|i:1616446628;local|s:1:\"1\";listaVenta|i:744;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e4724e467c4d068aaa5c5e72717fde3b5ff383', '186.1.135.129', '1617812570', '__ci_last_regenerate|i:1617812388;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e6ce4d365e74d6ed6746acaff2e24a09eca555', '190.239.66.67', '1620146868', '__ci_last_regenerate|i:1620146570;local|s:1:\"1\";listaVenta|i:86;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620072748\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d114be31ea41a6b18aeadee6f893a57fae2795ac', '186.1.135.143', '1615915796', '__ci_last_regenerate|i:1615915562;local|s:1:\"1\";listaVenta|i:300;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d12cdabc252699f0f48db696102035cc35a433cb', '3.86.165.193', '1654292935', '__ci_last_regenerate|i:1654292934;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d149555db37b222ce24ab9f9765dfb61700a546b', '198.235.24.50', '1665793193', '__ci_last_regenerate|i:1665793193;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d155ea72340e69e755e45b22cb813b89cc10e796', '148.102.22.241', '1616692436', '__ci_last_regenerate|i:1616692433;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616689108\";last_ip|s:14:\"148.102.22.241\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000326\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d156c04770ef242e31137877d2296de86ab5fbfa', '186.1.135.132', '1612875583', '__ci_last_regenerate|i:1612875073;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612819345\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16b05a6b79a7f649d9a83fb5578bb9f9c7c6356', '45.12.3.13', '1695958856', '__ci_last_regenerate|i:1695958856;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16c90956edbe917ca476c882aa98f7e239cb354', '190.232.180.131', '1611760324', '__ci_last_regenerate|i:1611760313;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611695834\";last_ip|s:13:\"190.238.217.6\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d173dc62ee9830bb736410018837dd51dd4f4e2a', '139.155.16.233', '1615018490', '__ci_last_regenerate|i:1615018490;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17c25dc1a686d302843346024a3bf78d9059b0c', '181.176.121.19', '1675173096', '__ci_last_regenerate|i:1675173096;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19065684ea22e5fadd8b3f13c566d25ca5a64fb', '181.67.2.234', '1688698718', '__ci_last_regenerate|i:1688698468;local|s:1:\"1\";listaVenta|i:196;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688609147\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19cc53529693f960256bd8938ee22b02f408f55', '186.1.135.129', '1617824267', '__ci_last_regenerate|i:1617824159;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19fcda6dc9461747706494063906650eeb2c7eb', '190.43.38.234', '1620229216', '__ci_last_regenerate|i:1620229215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1bea6d70cd4311c02651c1a329a27568cb18d27', '139.162.39.160', '1661790693', '__ci_last_regenerate|i:1661790693;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1bfa6cb786a25331d60c77b10f4c05b0d5b112a', '195.211.77.140', '1683172204', '__ci_last_regenerate|i:1683172204;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c2202e171ed829bc8a89e0b869c63059ed6160', '186.1.135.144', '1615298266', '__ci_last_regenerate|i:1615297971;local|s:1:\"1\";listaVenta|i:193;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615296508\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c9f4e0cd9edf4b0aba422946145318e108825e', '207.148.127.89', '1694362909', '__ci_last_regenerate|i:1694362909;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1d483f79c29339669bf6f74ce22333fe67d5964', '198.235.24.26', '1693062671', '__ci_last_regenerate|i:1693062671;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1dfe83a4e457a8c01ce07507eec04d991d751fd', '159.89.168.53', '1671477086', '__ci_last_regenerate|i:1671477086;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1eaf0c7e4dcea7fe8652663ff24d01dda08a82f', '205.210.31.52', '1695437973', '__ci_last_regenerate|i:1695437973;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1eb133adbaf09006c3af22597ddc08ae7453d9a', '198.235.24.21', '1683425045', '__ci_last_regenerate|i:1683425045;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1eb212ce98760678d623b1fd02cd5eae9c20eef', '148.102.23.16', '1619634130', '__ci_last_regenerate|i:1619634130;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1fa5ca3268c37ce751035226b265c9a3b93c0a5', '201.230.205.217', '1672970472', '__ci_last_regenerate|i:1672970137;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672963620\";last_ip|s:11:\"38.25.16.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d224751df8a9088c46419b4556a5dd978622930e', '209.17.97.90', '1612013181', '__ci_last_regenerate|i:1612013181;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d241d1425f293e4fe2743d01bea4523c0b33ead8', '205.210.31.28', '1684860616', '__ci_last_regenerate|i:1684860616;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d257dfbbe7d019893ba7fa197b9c2e1fb3abe72f', '38.25.16.150', '1671251425', '__ci_last_regenerate|i:1671251348;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671211178\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d25aca13555036ef12aaadbe1ccc125f77e86df9', '186.1.135.66', '1616448250', '__ci_last_regenerate|i:1616447782;local|s:1:\"1\";listaVenta|i:772;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d26e9ac5ee418fd57b953f31fb8293f3f7146be0', '139.144.150.23', '1683172262', '__ci_last_regenerate|i:1683172262;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27410caee9d28741668fb4bef3858b97047cde4', '35.157.105.41', '1615065315', '__ci_last_regenerate|i:1615065315;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d295f3eb80bb8db1f69c976627cf42d3143733e9', '18.230.190.197', '1622182348', '__ci_last_regenerate|i:1622182347;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2aa7f1df1132a2831c90d488cfdc5d196e06815', '186.1.135.138', '1616600681', '__ci_last_regenerate|i:1616600482;local|s:1:\"1\";listaVenta|i:392;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616599704\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000323\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2b9be44ded9e46f7b35bb958eac44a1f47809e7', '51.158.118.231', '1669179302', '__ci_last_regenerate|i:1669179302;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2bf9626478639ced8582a1cb76f893213c92d82', '183.136.225.44', '1685036522', '__ci_last_regenerate|i:1685036521;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c5323e04acdb2a95c02c9a9ccbd6a1a1b875c2', '186.1.135.154', '1618500181', '__ci_last_regenerate|i:1618500180;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c5cf651a4bb440634cea407410b4f609e43d82', '101.68.211.2', '1691999636', '__ci_last_regenerate|i:1691999636;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2cb9207e8650d08043412b39b3ff7214f8febab', '148.102.23.16', '1618943400', '__ci_last_regenerate|i:1618943099;local|s:1:\"1\";listaVenta|i:196;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618854951\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d2a16154e9e24db7e5a1792081987a6b4f04bd', '198.235.24.135', '1656181877', '__ci_last_regenerate|i:1656181877;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2dece4656e8cf0f768768b7478fa19d84c2f63d', '186.1.135.66', '1616434704', '__ci_last_regenerate|i:1616434183;local|s:1:\"1\";listaVenta|i:466;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616423078\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2e7339d5f12d2af11ecb1b6c707a02a', '181.64.223.213', '1624915163', '__ci_last_regenerate|i:1624915163;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f0c9b3c9e41bdcf35bab4f015e3a019324bea7', '40.94.31.4', '1676347070', '__ci_last_regenerate|i:1676347028;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d326ef27db627fedb2e1879733d2bd26108c6a17', '186.1.135.143', '1615913445', '__ci_last_regenerate|i:1615913213;local|s:1:\"1\";listaVenta|i:21;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:26:\"Venta efectuada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33684b90906630acf37dd6b1da9f8b1d73135ce', '205.210.31.171', '1680297122', '__ci_last_regenerate|i:1680297122;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33a26ea83aa36b15fe8e2c6c0f6eaf29708d300', '186.1.135.134', '1615827747', '__ci_last_regenerate|i:1615827655;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d344d5cedaa169921bfb8fece4eb8afaa19189e0', '161.132.238.121', '1627326271', '__ci_last_regenerate|i:1627326270;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34acb0ba12da691d6bc20a8989be18a38805dc3', '::1', '1598608979', '__ci_last_regenerate|i:1598608979;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34ed03cdf0bd3b49aae706ed44e7cb748a19a3e', '18.228.170.58', '1611709679', '__ci_last_regenerate|i:1611709678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d358064ce5635d26437a8a9407f3380af2dcefb3', '167.94.138.34', '1683153897', '__ci_last_regenerate|i:1683153896;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d368782476e702589d336d80d33290779cb7be8c', '82.156.185.91', '1623526546', '__ci_last_regenerate|i:1623526546;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3760c3f121db2ce5fe3588a25d80a591a5b0bd7', '181.176.107.88', '1676470113', '__ci_last_regenerate|i:1676470113;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d388d2de81bdaff0f88f3c8a074087ddfa772ea0', '148.102.26.11', '1620249370', '__ci_last_regenerate|i:1620249216;local|s:1:\"1\";listaVenta|i:26;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620223665\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000431\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d39c4802f47f3df3016c5804641ab167d35dd6f4', '148.102.26.11', '1619537380', '__ci_last_regenerate|i:1619537321;local|s:1:\"1\";listaVenta|i:595;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619534195\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ab156acae9fd6906ce5f72854abd6d722e2bea', '188.165.87.103', '1654339918', '__ci_last_regenerate|i:1654339918;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3cbbbb2eaecf7dd30d13015e6935103a9fb6249', '164.92.177.101', '1696325620', '__ci_last_regenerate|i:1696325620;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3daa32f7d97fc2ae609c45cf75ed4c1fd03588f', '209.17.96.202', '1612643754', '__ci_last_regenerate|i:1612643754;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3daaf1d8f920b7aec95374b9c39992769cb9443', '190.232.180.131', '1612904550', '__ci_last_regenerate|i:1612904474;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612895575\";last_ip|s:13:\"190.238.217.9\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e2eb730684c24940697b2feb478810c3222475', '198.235.24.168', '1673630821', '__ci_last_regenerate|i:1673630821;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e61cc18f7463a585c3cea0877c8f8a4d1ed78e', '186.1.135.141', '1613394909', '__ci_last_regenerate|i:1613394750;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613291006\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3eab584d45ea3cacbbd38de4b45078413550789', '186.1.135.66', '1616433899', '__ci_last_regenerate|i:1616433855;local|s:1:\"1\";listaVenta|i:243;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616423078\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3eb2b7a5aa3d6ac5751c53f91337feb20a3ba78', '205.210.31.148', '1660951967', '__ci_last_regenerate|i:1660951967;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ec5db834b2486a930fa2febf234699988a5add', '201.230.205.235', '1695401780', '__ci_last_regenerate|i:1695401669;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1694654246\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f1fc632364603f47fce11cf1be967410b0d992', '45.225.216.151', '1623692811', '__ci_last_regenerate|i:1623692810;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4008e9a761478eea6252edbf1c98ec3e5ffa5a8', '190.237.172.147', '1614778825', '__ci_last_regenerate|i:1614777548;local|s:1:\"1\";listaVenta|i:2025;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d41ab2db071a778f37c90a79e34d6d7f9ab78290', '190.239.192.47', '1622567626', '__ci_last_regenerate|i:1622567470;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622556802\";last_ip|s:14:\"190.239.192.47\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d41d1b05c3483cfe8a18c406672120ec8007da26', '34.240.152.183', '1675376536', '__ci_last_regenerate|i:1675376536;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d420289ce331ff80abb03350a6aeb8f5c589e13c', '45.225.216.151', '1623274556', '__ci_last_regenerate|i:1623274493;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623252334\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42360b41f993559063b32563ba388c41b4ab263', '198.235.24.58', '1679070237', '__ci_last_regenerate|i:1679070237;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d434b35b464853da29a5981f4fc40444f6f168a5', '42.193.23.126', '1628908642', '__ci_last_regenerate|i:1628908642;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d437dec8566edad6b22b5e93346f2be67eb977b4', '186.1.135.143', '1615393810', '__ci_last_regenerate|i:1615392569;local|s:1:\"1\";listaVenta|i:6;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d438c7e1a369ad8df5437f26f1b8b29b51f6527e', '167.94.138.60', '1637544796', '__ci_last_regenerate|i:1637544796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43d7a1a6974daaa177f12bbb23259ad4cf9cac7', '205.210.31.146', '1660558264', '__ci_last_regenerate|i:1660558264;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44b02752dff2cdbbc43bdd48c77216dc40ca590', '183.136.225.44', '1677853383', '__ci_last_regenerate|i:1677853383;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44df94eff7fa3942cc634de2869fdc5e6d8bf98', '2.57.122.19', '1637235887', '__ci_last_regenerate|i:1637235887;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4531c9c51f3a2ccfdc47cbf4a3cce3b7ca967bb', '190.232.180.131', '1612537098', '__ci_last_regenerate|i:1612537074;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612363876\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d463e9f2f6f92a29422608b22a131af9c0dbc7cd', '205.210.31.57', '1676150409', '__ci_last_regenerate|i:1676150409;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4798540ff387e95d36d687d47728d515df4f07b', '89.175.184.250', '1690095228', '__ci_last_regenerate|i:1690095228;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49144f6476a317b039770759e45c87e5895d154', '186.1.135.132', '1615473562', '__ci_last_regenerate|i:1615473241;local|s:1:\"1\";listaVenta|i:573;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615414832\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49ebc6d3fbf93973386cbd102128ea346ea22e6', '186.1.135.142', '1614617766', '__ci_last_regenerate|i:1614617695;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4a3be85e8a6543aed5da04931f3a07949358603', '161.132.234.14', '1622652366', '__ci_last_regenerate|i:1622652104;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622579033\";last_ip|s:15:\"146.112.244.227\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ad633237109db41558e84b342a16e87c14d2dd', '186.1.135.129', '1618240386', '__ci_last_regenerate|i:1618239998;local|s:1:\"1\";listaVenta|i:21;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4cf0a576b3174832ab3a0f9ba8506e865853cad', '3.239.252.3', '1617595789', '__ci_last_regenerate|i:1617595789;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4df2379bfdcbfde63e600906fc5930fe96852e3', '51.158.108.77', '1658602535', '__ci_last_regenerate|i:1658602535;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f19b4f3160e494940a4da9c23b8c6005c0c087', '132.191.2.181', '1621439653', '__ci_last_regenerate|i:1621439646;local|s:1:\"1\";listaVenta|i:880;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621436735\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f2a15f6e714575101fbf7498ceb0045ebe6f47', '186.1.135.129', '1617806200', '__ci_last_regenerate|i:1617806200;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d520ff719073e1508770fab28c9f1f4e7673ba1c', '186.1.135.129', '1617828105', '__ci_last_regenerate|i:1617828105;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d52d6dfb3b932968078daf80d0eb2de184cf7cac', '179.6.222.7', '1617748199', '__ci_last_regenerate|i:1617747965;local|s:1:\"1\";listaVenta|i:1425;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617738724\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d532654ec9a02e14e8393ab2417a8321b01fc2fc', '186.1.135.138', '1613047956', '__ci_last_regenerate|i:1613047844;local|s:1:\"1\";listaVenta|i:144;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d537317efc2d2059931fa4a19e7c515e4e9cc143', '162.142.125.223', '1679590484', '__ci_last_regenerate|i:1679590484;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5460953da91b2281a79d574dd18611f015283d1', '186.1.135.143', '1615581097', '__ci_last_regenerate|i:1615580841;local|s:1:\"1\";listaVenta|i:288;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615564233\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d54b23ddd5e6d82f8f7c0bad79a3837f2d83c6d9', '186.1.135.134', '1612813275', '__ci_last_regenerate|i:1612812989;local|s:1:\"1\";listaVenta|i:62;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612810673\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d551a78c2880ba45038a8c2746ff4d612cb1f8c3', '161.132.239.98', '1635797704', '__ci_last_regenerate|i:1635797353;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1635263137\";last_ip|s:14:\"161.132.239.98\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d565c5c2851fa4dd6842d6dbec6dbd61532a3dc2', '::1', '1598339377', '__ci_last_regenerate|i:1598339371;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598321184\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d577f8e94b67c82651d9075418818ef651d8c871', '3.88.188.45', '1654292938', '__ci_last_regenerate|i:1654292937;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d582c3c30957049dec89d6b12c8a79f480b6685e', '183.136.225.44', '1685501655', '__ci_last_regenerate|i:1685501655;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d58aed435ff6b03e3757b116af16afc3fe4f5b82', '181.67.2.242', '1687927126', '__ci_last_regenerate|i:1687927126;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1685466671\";last_ip|s:13:\"177.91.248.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d595b0ad499fefb397eedcfbc62500d0a135055d', '190.238.217.6', '1611937454', '__ci_last_regenerate|i:1611937452;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611927498\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d597db7e1a87ddc1e146bf0e394b09d87bd38d3f', '167.248.133.191', '1682988624', '__ci_last_regenerate|i:1682988624;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59973311966feb48b706e2da50bfcac94deb169', '54.207.184.202', '1611232393', '__ci_last_regenerate|i:1611232393;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5ac0161446c3ad8631b9768542f16b0a1780b39', '186.1.135.129', '1618254820', '__ci_last_regenerate|i:1618254799;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236595\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5b6919add65aa65f18667302567e882c272f50e', '179.6.212.129', '1614695432', '__ci_last_regenerate|i:1614695107;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c2764dbc1f786f19602be27832b32ea77352fe', '198.235.24.21', '1683425047', '__ci_last_regenerate|i:1683425046;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c4aca4a4d4780e923309e6f054c06d528b3ccf', '38.25.16.184', '1698949474', '__ci_last_regenerate|i:1698949250;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d866a5692694f992b8f08bac89b6c82f665fac', '201.230.205.196', '1698727545', '__ci_last_regenerate|i:1698727247;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698717606\";last_ip|s:15:\"201.230.205.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5dd6dfd97e359f20adf7c5c728b1e5412e41aa8', '183.136.225.44', '1685955489', '__ci_last_regenerate|i:1685955489;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e00a69b86358eec2df4dc543242f87a0819097', '198.235.24.25', '1665208983', '__ci_last_regenerate|i:1665208983;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e6db65acaab071088e1212418f0c05987dfee7', '134.209.186.137', '1696573253', '__ci_last_regenerate|i:1696573253;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e8b08f265de921f54f6cb11c23b619883e4390', '128.90.141.19', '1688387718', '__ci_last_regenerate|i:1688387718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f4deedb530ce0d29de2c1e3f72a8187d33ed8b', '54.246.239.108', '1688481517', '__ci_last_regenerate|i:1688481517;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f6657c014314228d6f9af470d5d93dfe7cc5d9', '190.237.172.109', '1615116701', '__ci_last_regenerate|i:1615116207;local|s:1:\"1\";listaVenta|i:47;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d63d9c6875298dad27aa5147a8783ddf4dd101fc', '181.176.107.88', '1676489699', '');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d65f40ad770c3406097f04bf979462ec61d0e816', '199.195.250.129', '1675189736', '__ci_last_regenerate|i:1675189736;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66e08bcfc2bac420471572d8d2d41cc32503b95', '205.210.31.11', '1684575155', '__ci_last_regenerate|i:1684575155;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d67ccad8471dc4a5410b1aa094f589114af25192', '198.235.24.174', '1670036953', '__ci_last_regenerate|i:1670036953;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d68ab8ecb230774b0425cf10d7d6c43ccd72f998', '205.210.31.22', '1681486426', '__ci_last_regenerate|i:1681486426;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d693b5c3e0c9e0c3c5f5d7eb6ea4123274d5d98d', '138.197.216.92', '1656826449', '__ci_last_regenerate|i:1656826449;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a2f5283922e4e75ad5a6c85c6232ca1c99e23f', '181.66.195.254', '1619638085', '__ci_last_regenerate|i:1619638078;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619537510\";last_ip|s:13:\"190.236.28.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a59340bd528909d016165e2cdd429005b51099', '92.118.160.13', '1622435038', '__ci_last_regenerate|i:1622435038;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a62c31418cd1f0d28bb0b2426c778a03f62d18', '205.210.31.30', '1686105266', '__ci_last_regenerate|i:1686105266;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a82119f93557f9328a1f85d30e2a59977366d7', '181.192.1.15', '1659539834', '__ci_last_regenerate|i:1659539834;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b67033a7b340aafba50b9a519c4014d84fe1e7', '35.202.219.132', '1655974021', '__ci_last_regenerate|i:1655974020;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6bc73fad4909e48f80a02815b991a4b', '201.230.205.217', '1671203061', '__ci_last_regenerate|i:1671203060;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671075656\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c0b0532d50c786481a01a9fb0969c31fa6411a', '161.132.238.121', '1630424655', '__ci_last_regenerate|i:1630424389;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1630377542\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c85ba24a0c76adb52d9feb8eb4a9b0e74400dc', '205.210.31.163', '1673220572', '__ci_last_regenerate|i:1673220572;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d9d9f84dcfb7fefb9f85d72d24e8f33340005d', '52.64.20.252', '1620401494', '__ci_last_regenerate|i:1620401494;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6eb941a869be293b2c002dd1759299daa0dac69', '51.15.205.3', '1669174895', '__ci_last_regenerate|i:1669174895;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f1b41735dd95f30c1715edf64529ba25f57806', '186.1.135.136', '1617917675', '__ci_last_regenerate|i:1617917675;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f2ab1fde5293f37073764f074d64ad2b3f8f29', '51.255.62.2', '1669065654', '__ci_last_regenerate|i:1669065654;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70fc6802c5996428a2abdc569607ac3bd6e448e', '45.225.216.152', '1624924534', '__ci_last_regenerate|i:1624924534;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d71a3d2e2a03374fd960eb6114fe222b25df7f42', '186.1.135.130', '1617050800', '__ci_last_regenerate|i:1617050797;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000351\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d71f8673993ed7595ccc0daf7d684101fc463cf2', '87.236.176.49', '1683110902', '__ci_last_regenerate|i:1683110902;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7277e59bbb889a7e979092796e09c9cb18041cd', '205.210.31.134', '1656253446', '__ci_last_regenerate|i:1656253446;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7289ee174eff9ec1788799a0424809b3e4c504d', '190.239.64.130', '1621437770', '__ci_last_regenerate|i:1621437754;local|s:1:\"1\";listaVenta|i:176;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621272235\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7298bd979bf5852703d9bac125027728067c568', '205.210.31.19', '1696015609', '__ci_last_regenerate|i:1696015609;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d729c91261a2c7e7c5840060fdefba23e4d234d2', '190.239.192.47', '1622556938', '__ci_last_regenerate|i:1622556796;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622500495\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:54:\"Almacén no fue agregado con éxito, intente de nuevo.\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7459e9151cfd30b373eace9da6108cf3ba8ee7c', '198.235.24.97', '1691232542', '__ci_last_regenerate|i:1691232542;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d74f456af32fb939a3dcb27fccd2bc7ec4a8322d', '190.232.180.131', '1612210088', '__ci_last_regenerate|i:1612210075;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612023959\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d75bc4db15ed6c7d23e0a12457e6d3bd03883cda', '186.1.135.134', '1612799633', '__ci_last_regenerate|i:1612799443;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612788341\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7631fb62f5c8185e1ae355ea685b95db340bb90', '179.6.222.7', '1617141670', '__ci_last_regenerate|i:1617141592;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617114271\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000360\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d764053e28229ff81f8f4bca367e8d520beba4e1', '205.210.31.81', '1694750201', '__ci_last_regenerate|i:1694750201;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d76ca1efe47d202b6b5446d9ea49c736e02b3fd7', '201.230.205.189', '1681785139', '__ci_last_regenerate|i:1681784849;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d76db81430ce8cb4799aba53e17c4995154ccfa8', '198.235.24.31', '1655574774', '__ci_last_regenerate|i:1655574774;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d770db1b7deaa90c8019b05d6243ac3a282aee68', '2.57.122.115', '1653198675', '__ci_last_regenerate|i:1653198675;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78c11a7429984319f7c63953b9f1821931e1295', '163.172.180.25', '1688599586', '__ci_last_regenerate|i:1688599586;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d796e0bfa6d3b0f16aa46cfdeedd7a9660e95b11', '205.185.127.165', '1682234363', '__ci_last_regenerate|i:1682234363;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d797d57ed07de54f1f0fda195107c838854280a7', '38.25.16.150', '1670900133', '__ci_last_regenerate|i:1670900108;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670874527\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79df54315f026de6a21a4011d2cdc45cc8cb2fa', '179.6.222.7', '1617981551', '__ci_last_regenerate|i:1617981252;local|s:1:\"1\";listaVenta|i:1626;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79e41afb8b46733d783756d05e51880c1ac79f4', '34.251.148.93', '1636591501', '__ci_last_regenerate|i:1636591501;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7bcffea2a1b19dba143c9d69fc3679b592c8a5e', '205.210.31.165', '1696687017', '__ci_last_regenerate|i:1696687017;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d4c1e51354436042e1a768c59d154e9aa1257e', '18.190.152.34', '1677554161', '__ci_last_regenerate|i:1677554161;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e763a3c4196d12e80712e0fc3c3dcf645d320d', '186.1.135.129', '1617830297', '__ci_last_regenerate|i:1617830011;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d837900ae094082033c828fea156322b0f0ea497', '34.96.130.13', '1623775529', '__ci_last_regenerate|i:1623775529;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d839bdfc454d71a77a110c7f8d3df4604e3bd74b', '167.94.145.55', '1690531943', '__ci_last_regenerate|i:1690531943;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84abc05ab663cae726f524874ee74208555cd6e', '190.43.38.234', '1620399176', '__ci_last_regenerate|i:1620399154;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620330952\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d86349927fd8bcf7a28e53bea8c7718b34125185', '186.1.135.129', '1618246773', '__ci_last_regenerate|i:1618246744;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d86720066affbce8253ff6b921b79dab0c143085', '161.132.234.14', '1625151472', '__ci_last_regenerate|i:1625151205;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625115021\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d86f4c8b07a412c835ce772d71a22beaf5a18c2d', '148.102.26.11', '1621001816', '__ci_last_regenerate|i:1621001572;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620943276\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000445\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87ec8c564ffbe9d1f04184a005f7c195aa7d013', '80.65.211.20', '1698906221', '__ci_last_regenerate|i:1698906221;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87f258d2aa6a3634ff1b52c2a9835e09eb4c05a', '186.1.135.144', '1615297971', '__ci_last_regenerate|i:1615297971;local|s:1:\"1\";listaVenta|i:136;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615296508\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d887ede2fffc327b1cb955b6d2ed69c5e5216f1f', '198.235.24.40', '1687322092', '__ci_last_regenerate|i:1687322092;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88fff0d9ca21cd78e3ac27685fed5d52660f231', '186.1.135.150', '1613157788', '__ci_last_regenerate|i:1613157787;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613136259\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b33324c8a153202362d34bdef0fa5cb5d7ad3a', '190.43.38.234', '1620330938', '__ci_last_regenerate|i:1620330937;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c75e690454b6f3988e4d3fb5e91f055291ec51', '198.235.24.30', '1659322882', '__ci_last_regenerate|i:1659322882;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c8def0c0d72dd92994efcb9ce0c6123f67a976', '190.192.49.231', '1623095983', '__ci_last_regenerate|i:1623095983;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ece14a934e7d0b195327334503adb118d47c59', '15.228.120.19', '1621703962', '__ci_last_regenerate|i:1621703961;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d908362bfd27b5359fd3dbc7dccc1703289431d4', '128.90.43.225', '1691415482', '__ci_last_regenerate|i:1691415482;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d90ca0710ac46c573d6dac33f928ba643a3c1cdf', '179.6.222.7', '1616170160', '__ci_last_regenerate|i:1616168598;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616094960\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d922aa14d66e2c49ec1c3f5ad76f504e1101e181', '186.1.135.66', '1616446403', '__ci_last_regenerate|i:1616446198;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92dc10338f6693c2c5ad7f2031d2174e8279348', '167.248.133.62', '1666144678', '__ci_last_regenerate|i:1666144678;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93bb3103dee6d646ee9f2197ae0e62ae1ee54cf', '190.232.180.131', '1611934641', '__ci_last_regenerate|i:1611934641;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93d94f28822befa4ecbe82f57cd2bea872c8838', '161.132.238.121', '1628362078', '__ci_last_regenerate|i:1628362068;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1627626713\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9451eeffe8dd13c41f3f4f712e78bd43cfb5ba3', '87.236.176.242', '1685915448', '__ci_last_regenerate|i:1685915448;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9616f1c76b05606f94b82f922d16772fde8db0e', '205.210.31.183', '1662767490', '__ci_last_regenerate|i:1662767490;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d973a211dd6f5fa90c4920eeefd973ce63307bba', '186.1.135.134', '1615827327', '__ci_last_regenerate|i:1615827197;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d97ad48338b2217fb9471dae475f1f8b19a95f41', '186.1.135.134', '1618600567', '__ci_last_regenerate|i:1618600244;local|s:1:\"1\";listaVenta|i:94;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618590832\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d986b8e4b502def1da8d745518b21923013865f5', '148.102.26.11', '1621022541', '__ci_last_regenerate|i:1621022350;local|s:1:\"1\";listaVenta|i:101;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621002037\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c0e141c04aec73ca46c467e960017f42a6c3c9', '38.25.16.184', '1698954451', '__ci_last_regenerate|i:1698954184;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";csrfkey|s:8:\"8UKLzYH5\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}csrfvalue|s:20:\"5eJxpWdmNrMSbT8t7uUj\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c32f79c3a14aed03fdc0acebe6e91d7056558c', '34.86.35.19', '1622266787', '__ci_last_regenerate|i:1622266787;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d85e34d4a4e4cb778b937a39d6ef61509734b3', '205.210.31.153', '1659672440', '__ci_last_regenerate|i:1659672440;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9daeffc0928c14b1e36ecb58e23d3246e7277dc', '186.1.135.129', '1618242347', '__ci_last_regenerate|i:1618242347;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f193ec9ffa23cd841b215bc2782a9dc0039d45', '167.94.146.56', '1693089655', '__ci_last_regenerate|i:1693089655;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f46a0fda1868c9cea01a789d4c15ece8be9bad', '186.1.135.138', '1613080176', '__ci_last_regenerate|i:1613080174;local|s:1:\"1\";listaVenta|i:2994;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9fcc2d216603cbe5bd104063ed2a137c8b33942', '148.102.22.241', '1615912717', '__ci_last_regenerate|i:1615912472;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615911078\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0b976f866a6cebc8692b6eca4d756f3520773b', '190.43.38.149', '1672298938', '__ci_last_regenerate|i:1672298770;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672297275\";last_ip|s:13:\"190.43.38.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da1571061a337f9d520a459fe689ce3b52b81850', '177.91.255.69', '1618855797', '__ci_last_regenerate|i:1618855797;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da2abb1134b4c8d0a4cbbc47a29560852a60a390', '205.210.31.185', '1679112839', '__ci_last_regenerate|i:1679112839;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3be2f9baf862f269c6a4651b6bf9ddc07bf262', '186.1.135.142', '1614620723', '__ci_last_regenerate|i:1614620723;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4a1993924bbdd208c87c3de33e06673b5a4f3d', '148.102.26.11', '1621611197', '__ci_last_regenerate|i:1621611197;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4e279574f3dba1cb7b8dab3c9724cffbd49d76', '198.235.24.120', '1697837867', '__ci_last_regenerate|i:1697837867;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7724b8a742bc23e824164c846057a2b6b07c5b', '34.96.130.79', '1613491167', '__ci_last_regenerate|i:1613491167;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8fbe8a437b62c9300ac49e991aa3ba07cc947b', '167.248.133.120', '1668694923', '__ci_last_regenerate|i:1668694923;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da9289783211b3e8df0cb328aed318750b3ff03c', '205.210.31.178', '1687076647', '__ci_last_regenerate|i:1687076647;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dab960bdf1d88a8e9ff61434725f719178546242', '38.25.16.38', '1688438066', '__ci_last_regenerate|i:1688437678;local|s:1:\"1\";listaVenta|i:68;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688140301\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac949cdb2474c7f5d65f9349c0d124f45649c78', '190.237.172.53', '1616082561', '__ci_last_regenerate|i:1616081842;local|s:1:\"1\";listaVenta|i:596;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616081718\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad8d1d8991d675b7f8de85d5798ff5df72e60ba', '92.118.160.5', '1635209075', '__ci_last_regenerate|i:1635209075;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae146038a024978250d0a196cfb6f5c35ff3e00', '148.102.26.11', '1621019853', '__ci_last_regenerate|i:1621019850;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621002037\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000448\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae7baef0903fed78854133b4142518431d12174', '201.212.119.152', '1614057078', '__ci_last_regenerate|i:1614057078;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daf5376b478f505c4208c253b38bc33dc9b2936c', '162.142.125.10', '1677640289', '__ci_last_regenerate|i:1677640289;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db049fb55b8e98f1d27195fca451f2d5432ba9fb', '186.1.135.147', '1613579297', '__ci_last_regenerate|i:1613579099;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613572128\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db23041d5793964bc3a8e64e647afd7a3d1fea9f', '205.210.31.150', '1652448870', '__ci_last_regenerate|i:1652448870;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db2dcca854bdd7731d064b6d0fbb1a44618b6cae', '38.25.16.150', '1670901855', '__ci_last_regenerate|i:1670901817;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670874527\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3266a716e495d117eeeb9b593359d04b055a44', '198.235.24.186', '1693833254', '__ci_last_regenerate|i:1693833254;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db387f4ea4a55b3ff0464985f0321884486919df', '181.176.117.131', '1674776834', '__ci_last_regenerate|i:1674776707;local|s:1:\"1\";listaVenta|i:326;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674569645\";last_ip|s:14:\"181.176.102.27\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db43efc80b75f7858087b3c32ac782cc6fbda928', '198.235.24.153', '1673229247', '__ci_last_regenerate|i:1673229247;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4b4081c6886bab1f4772dedf705900e9d77e24', '103.108.229.61', '1680616984', '__ci_last_regenerate|i:1680616984;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4e745e35847fa513bf61d090f5129083c57a87', '198.235.24.59', '1684441737', '__ci_last_regenerate|i:1684441737;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db506fbc8f183216c7f6d5a6a7c6a10217f84201', '198.235.24.97', '1693414810', '__ci_last_regenerate|i:1693414810;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db537533a05f3d2d99a3b5c625827dfa39f9770a', '167.94.146.56', '1695101550', '__ci_last_regenerate|i:1695101549;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db66787717c0c36504606ada02187f336abe2d01', '186.1.135.131', '1617630072', '__ci_last_regenerate|i:1617630072;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617285684\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db76081829ab7e8491d9ba4f8fce75a5606745ea', '5.189.171.179', '1666863026', '__ci_last_regenerate|i:1666863026;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db76652c766a7e5b2a7a933068163bcb3879d994', '51.81.167.146', '1668922111', '__ci_last_regenerate|i:1668922111;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db769eb249616473c6567d50b80b4702542999b0', '198.235.24.137', '1668319341', '__ci_last_regenerate|i:1668319340;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db83db1964800adf665cd8cab3831d7b2a98499c', '179.6.212.129', '1614699183', '__ci_last_regenerate|i:1614698955;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db892e1f39db12c5abdb4e8bcc94303bed26f682', '148.102.26.11', '1619191585', '__ci_last_regenerate|i:1619190818;local|s:1:\"1\";listaVenta|i:1516;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8c7bef1184602924641872576a2405790758ba', '38.25.16.184', '1698948926', '__ci_last_regenerate|i:1698948353;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698892148\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8e86bacefa14da8fffb0897863062f60e185a4', '181.64.93.165', '1619718258', '__ci_last_regenerate|i:1619718176;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619635682\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db9e37f3cb072cf3adc95e8d5fd9e7c0ed723b62', '68.183.152.103', '1656692140', '__ci_last_regenerate|i:1656692140;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba700e0226c413fe5571ab87b136c039cd3a08f', '148.102.26.11', '1619534989', '__ci_last_regenerate|i:1619534086;local|s:1:\"1\";listaVenta|i:361;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619533744\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbaa1315b08a1fd1a5d77c4f1eefdd8bfc22ee71', '198.235.24.133', '1655454913', '__ci_last_regenerate|i:1655454913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbbc584d3973b2cda6f2ddeabcff467c3c7a2302', '144.91.106.14', '1690768649', '__ci_last_regenerate|i:1690768649;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbc37d608ee497b2e6cd80969620f6f4d2dec4c5', '38.25.16.38', '1697495644', '__ci_last_regenerate|i:1697495643;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbcfa00a1ae12d0139758123b4d716333d8a680f', '34.241.161.206', '1675778177', '__ci_last_regenerate|i:1675778177;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd25c6d18bea64c0aca4ff0013109539a3d9a92', '186.1.135.129', '1617829201', '__ci_last_regenerate|i:1617828757;local|s:1:\"1\";listaVenta|i:36;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617809172\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbfb5a4d6afabf3234c6b5411731e7760cd26e09', '205.210.31.2', '1682477201', '__ci_last_regenerate|i:1682477201;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc25e2fcb2d621851197842fffbdc0669c47c60d', '207.148.127.89', '1694459239', '__ci_last_regenerate|i:1694459239;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc3fae2f07469ea7dbca5f51e1975ff51794ca1b', '186.1.135.129', '1618236611', '__ci_last_regenerate|i:1618236315;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc472f926020fc259db9e39726eed7a564d45f5a', '201.230.205.217', '1672885106', '__ci_last_regenerate|i:1672885099;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672884810\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9908537c26b7b20b784c1198ce26c02f3fd9ad', '87.236.176.21', '1680265837', '__ci_last_regenerate|i:1680265837;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9d9bb68a7dab9b29383c2dd6514ad9766a82f1', '190.232.180.131', '1611172427', '__ci_last_regenerate|i:1611172179;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611155274\";last_ip|s:13:\"190.238.217.9\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3SVuNoULqXw4VUJk/DxMiJyIC1KTUNSQme44df/nTtYS3H4JxSBWFBnc9Msc9e4EUitQcyLEJ+ExafzQR9Wg7w==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:0:\"\";pass_sol|s:0:\"\";captchaCode|N;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcacb1715361e45b05c7c440a5f6ad1914f02dc3', '183.136.225.44', '1688233797', '__ci_last_regenerate|i:1688233797;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcca2cea254a9a2bab65033d45e37075f0297cd0', '185.225.74.198', '1682098186', '__ci_last_regenerate|i:1682098185;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dce082b1faa098b1fee2f8f8115c22fa2011a968', '54.93.242.220', '1688857292', '__ci_last_regenerate|i:1688857292;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dce2a48222dac1c98dce22effc391f15ba6abe74', '::1', '1598584130', '__ci_last_regenerate|i:1598583871;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd15090436986f4f8cfa87def335a76b02d88a53', '212.47.251.118', '1676594112', '__ci_last_regenerate|i:1676594112;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd20c17c3b5d6269b7521c11526bd6957f2d68b4', '181.64.18.180', '1634578334', '__ci_last_regenerate|i:1634578334;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd26af5f2ecf09b5a99c1162fe03b9c15e919b8b', '186.1.135.78', '1611860317', '__ci_last_regenerate|i:1611860063;local|s:1:\"1\";listaVenta|i:576;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd326b96e303f557961b45165863643b7bdfc047', '186.1.135.129', '1618239247', '__ci_last_regenerate|i:1618238981;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd3b2139af8ad83c40430cb723b9aee7765c0ab6', '198.235.24.152', '1668898823', '__ci_last_regenerate|i:1668898823;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd50f5433247c4f03e85da4a5556048e6521b07d', '34.67.52.57', '1655540030', '__ci_last_regenerate|i:1655540030;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd538b5ab706dc699dfeeef82cedfef1f635881e', '51.15.247.214', '1672234479', '__ci_last_regenerate|i:1672234479;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd590168f3226418ea3eb34170945c02357d98b4', '205.210.31.161', '1655097177', '__ci_last_regenerate|i:1655097177;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd5b0a3a306fc33b10635e5e310f5798e9d8680a', '144.91.106.14', '1680462557', '__ci_last_regenerate|i:1680462557;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd5df8d4871d7bf54cbf8f1cf93bb8ed8a51ea1c', '167.94.146.55', '1694795596', '__ci_last_regenerate|i:1694795595;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6e465fa2bbe03db6818c72d0964f1cf15fa488', '132.184.129.157', '1618505042', '__ci_last_regenerate|i:1618504747;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617729735\";last_ip|s:15:\"132.157.129.160\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd853637dee1e77e9fdc773249c033c20516734d', '179.6.222.7', '1617974730', '__ci_last_regenerate|i:1617974592;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd87de1331c04d6ecc41c547161bab361c8d6f39', '205.210.31.248', '1685727807', '__ci_last_regenerate|i:1685727807;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddaeef47bc36af20ab97e288b795a8ca29dc7fa3', '170.64.154.140', '1683172217', '__ci_last_regenerate|i:1683172217;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddcdaa878a6ccb2166a0dc4b8ad2ad59868b2110', '201.230.205.217', '1671248516', '__ci_last_regenerate|i:1671248515;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf1ff33f5a17f696dcf1617b50fa52136689e1c', '186.1.135.135', '1612556290', '__ci_last_regenerate|i:1612555920;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1cfd484dbe91317c912df8644917e181f567f3', '179.6.212.129', '1615167309', '__ci_last_regenerate|i:1615167151;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615165073\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de207dd692c1f03308b9302e6f4bb151b7e95474', '45.177.196.194', '1674848576', '__ci_last_regenerate|i:1674848384;local|s:1:\"1\";listaVenta|i:705;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1674848333\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de2c7ff618f8e3a7b07f46154c73cf5fe4d15e7f', '198.235.24.178', '1696609435', '__ci_last_regenerate|i:1696609435;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de333cbfd8f1d2694b1de1f9170d1cc318bcba69', '186.1.135.79', '1611952151', '__ci_last_regenerate|i:1611952150;local|s:1:\"1\";listaVenta|i:633;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de41f1d8e3ad2a02c4058a64ec15bbf65036c3fa', '190.239.70.53', '1616084372', '__ci_last_regenerate|i:1616084372;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de45db5fd5088f6ed0cd8a368e4a8cc751c50dce', '186.1.135.150', '1613137527', '__ci_last_regenerate|i:1613137526;local|s:1:\"1\";listaVenta|i:239;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613047424\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5d6efefc2f091c86ba921ec047ac852b536d31', '186.1.135.138', '1613065160', '__ci_last_regenerate|i:1613064944;local|s:1:\"1\";listaVenta|i:2994;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de668f76907fe4bfb5cf22d56bd3fa9d2e877f78', '92.118.160.41', '1624173549', '__ci_last_regenerate|i:1624173549;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6b504be2da68d0cfdf220d8cf46fc3fb22a31f', '139.162.7.175', '1689738594', '__ci_last_regenerate|i:1689738594;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de94a53d548ece14e718a3c7d1f3bebb03da9719', '186.1.135.129', '1617811567', '__ci_last_regenerate|i:1617811303;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea37c10ef6b697523a2ef74266e76f196555b6c', '190.239.78.92', '1620656737', '__ci_last_regenerate|i:1620656437;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb9972fd5df2010099dc0c650ce7945a82179ef', '35.202.219.132', '1655974041', '__ci_last_regenerate|i:1655974041;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec69f89fd14583b1bd6ce99737bd164546ed0b3', '183.136.225.46', '1682310731', '__ci_last_regenerate|i:1682310731;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def1defe716334c651b86be2925ec63e9cf5b294', '198.235.24.137', '1665711908', '__ci_last_regenerate|i:1665711908;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0d818002c202af8687652cf25c2d092164e6b4', '92.118.160.13', '1622438881', '__ci_last_regenerate|i:1622438881;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df11c21c0c7d4d8f3e141b20e50bd5f6ea601e80', '34.254.53.125', '1668926988', '__ci_last_regenerate|i:1668926988;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1841b8c96184c524afa011c0753f996cb6112c', '35.225.201.133', '1656284898', '__ci_last_regenerate|i:1656284898;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df2067b6b4356ae37b869f6b1e8e0328486656c4', '198.235.24.50', '1679433236', '__ci_last_regenerate|i:1679433236;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df24fa7ac568a5fb79160a4e9096ee821635867e', '167.94.138.52', '1679243774', '__ci_last_regenerate|i:1679243773;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df57e1c10411bca5eb349016869523d5bf080560', '190.237.172.96', '1616854528', '__ci_last_regenerate|i:1616854176;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616847991\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5c7e061685be842801be7ac4d16092f44853cd', '190.43.38.234', '1619823574', '__ci_last_regenerate|i:1619823455;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619800026\";last_ip|s:13:\"201.230.81.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df721e9f3ecf3678813d90ecf38fd2c71c2d921f', '179.6.212.129', '1614437705', '__ci_last_regenerate|i:1614437584;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614373872\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7ca2b6b1454e6062e2004149d3d4b9735784bb', '186.1.135.143', '1615922660', '__ci_last_regenerate|i:1615922660;local|s:1:\"1\";listaVenta|i:570;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df875f9730b046d9d6364af99a2bd0d2c998c3c3', '132.184.128.61', '1613531490', '__ci_last_regenerate|i:1613531190;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1613055273\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df87cc04bed0bab008ea65cf905f3d418467dda5', '15.228.124.8', '1621750179', '__ci_last_regenerate|i:1621750179;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8937b411396486b79cc8f00c71dd3b7a626e9a', '37.220.93.104', '1686436541', '__ci_last_regenerate|i:1686436541;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfc2043a816df30f15359a307c74f0a5fac13e73', '183.136.225.44', '1685501426', '__ci_last_regenerate|i:1685501426;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd5ab28b85a6bfc0155eac0c6ff4d961c454e8b', '198.235.24.53', '1696140033', '__ci_last_regenerate|i:1696140033;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe31798b524920935184475e24a82b4b23b8daa', '87.236.176.65', '1674060566', '__ci_last_regenerate|i:1674060565;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfef5236da96cfd3c940e55cf4d51efa98621a37', '198.235.24.247', '1687542905', '__ci_last_regenerate|i:1687542905;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff0b75d9916b5f2b2c2288763fd3d343c3fea32', '165.227.115.229', '1657634776', '__ci_last_regenerate|i:1657634776;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff4c96b3701255397766d5d896b60fda803503b', '144.86.173.79', '1628540379', '__ci_last_regenerate|i:1628540379;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dm9tqca2d0ivesfi4thk03p61b', '::1', '1598834008', '__ci_last_regenerate|i:1598834008;local|s:1:\"1\";listaVenta|i:0;error|s:64:\"<p>Error de inicio de sesión, por favor inténtelo de nuevo</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0013b3185cb27b540242d01b60a9ead2b6da2f2', '167.248.133.186', '1681394073', '__ci_last_regenerate|i:1681394073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e001ccfd482c48593060243fc2442e9317cfba58', '209.17.96.50', '1611571130', '__ci_last_regenerate|i:1611571130;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0027bbf2099e5943f3fe165ec9bd00691327191', '70.38.10.156', '1690877296', '__ci_last_regenerate|i:1690877296;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0099ca00ed7185b75acbc1bf7cb1c600c565487', '148.102.26.11', '1619790739', '__ci_last_regenerate|i:1619790508;local|s:1:\"1\";listaVenta|i:557;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619726851\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0115a05f385d074f2bdea0cd63aa2fb413c4353', '186.1.135.136', '1617912057', '__ci_last_regenerate|i:1617911736;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617908137\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01a901c2453947f730a0d554f6750e72e65e677', '186.1.135.134', '1618589561', '__ci_last_regenerate|i:1618589561;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e02095a19981248ff702a53f807fee8fae94b5fb', '161.35.163.202', '1689840289', '__ci_last_regenerate|i:1689840289;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0219fcc92d006c4f95af7bc5a32d24bcdae9dd4', '186.1.135.78', '1611864725', '__ci_last_regenerate|i:1611864578;local|s:1:\"1\";listaVenta|i:1311;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e023ab84dce7bc6794f51d32e843b9877f02f998', '167.248.133.188', '1694804215', '__ci_last_regenerate|i:1694804215;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e02c122fcae6960f5b0f1e28201103501958edb7', '162.142.125.44', '1634010615', '__ci_last_regenerate|i:1634010615;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e03b32bb0787aae3482b7b227cfe99efe9d9a442', '198.204.240.243', '1619894637', '__ci_last_regenerate|i:1619894637;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e03d0c57cce52d0389066fe854726bd4a1c73722', '181.176.104.123', '1672336775', '__ci_last_regenerate|i:1672336775;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e046ca8488a8842f3b0ad6d75048f8d824a6483f', '106.53.83.56', '1622946132', '__ci_last_regenerate|i:1622946132;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0479be8e6f95b56dfbb636b3c726fffb3ee7d02', '34.67.52.57', '1655540029', '__ci_last_regenerate|i:1655540029;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e048ced6fbe164e060d93209f000588a578659ea', '18.219.231.87', '1633663589', '__ci_last_regenerate|i:1633663589;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0557e330df8e46a8a63b70e192fc4e4edb307eb', '15.228.41.141', '1622524252', '__ci_last_regenerate|i:1622524252;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0641bad23e947cfc86cc2956a1fad6c5d7f3340', '161.132.234.14', '1625619626', '__ci_last_regenerate|i:1625619469;local|s:1:\"1\";listaVenta|i:167;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625591688\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";rmspos|i:1;message|s:26:\"Venta efectuada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06fc570f2e54b76ce95332eaaa328781e0a3c1e', '148.102.26.11', '1619816889', '__ci_last_regenerate|i:1619816889;local|s:1:\"1\";listaVenta|i:207;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619798812\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e07bae9b2ac62679a7a1fb83a73fad0fb4532a7e', '38.25.16.18', '1672936854', '__ci_last_regenerate|i:1672936814;local|s:1:\"1\";listaVenta|i:47;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672894153\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e07f9d7869870a9a7d3afd03c844cdc969d7cf1d', '162.142.125.216', '1681132951', '__ci_last_regenerate|i:1681132951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08179eca62da796cdf383197d906c50eea9120a', '190.239.64.130', '1621438763', '__ci_last_regenerate|i:1621438503;local|s:1:\"1\";listaVenta|i:256;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621436735\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0852a4f75dfd56f25324ea60769d580f6dfabfb', '186.1.135.141', '1617212739', '__ci_last_regenerate|i:1617212448;local|s:1:\"1\";listaVenta|i:1155;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0982ee55b06c507c56f5af64842c2571e1cbfe0', '186.1.135.70', '1613512020', '__ci_last_regenerate|i:1613511802;local|s:1:\"1\";listaVenta|i:124;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613493096\";last_ip|s:12:\"186.1.135.70\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e09cc43987bc7c65b7d0b4d5b3e8a6b35ac6976d', '87.236.176.179', '1670855278', '__ci_last_regenerate|i:1670855277;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0a6fd8322e12f3e57e92ab461f24caf15b79bb0', '165.227.232.121', '1668919084', '__ci_last_regenerate|i:1668919084;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ae3e28681fd86b2fd850a684498e9dfd46293b', '35.209.133.94', '1629822104', '__ci_last_regenerate|i:1629822104;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0b214ac04789ca8788c1127e58bb44eeb81701e', '186.1.135.79', '1611951611', '__ci_last_regenerate|i:1611951310;local|s:1:\"1\";listaVenta|i:633;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;message|s:26:\"Venta efectuada con éxito\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0bdd6033886151765f8b7dcb5bf540cb2069bd3', '106.75.147.97', '1693858937', '__ci_last_regenerate|i:1693858935;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0bea0c4fab4da4ea07671d475117b237ce6b0a0', '106.75.185.60', '1693858942', '__ci_last_regenerate|i:1693858940;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d8113be7dfdc21cf5e1b4bbad442df2106b31c', '45.225.216.151', '1623253211', '__ci_last_regenerate|i:1623253011;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623159603\";last_ip|s:15:\"186.141.135.236\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0dc3711c5320cac1cc1c45b7355b648dd50cae4', '186.1.135.130', '1617741460', '__ci_last_regenerate|i:1617741204;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617723111\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000378\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0dd393d89f14f3fe25f92188edc05217a3620bb', '179.6.222.7', '1617973501', '__ci_last_regenerate|i:1617973228;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0e32b7b2ab57a168cce3e3443728d28b7152ece', '186.1.135.138', '1613063854', '__ci_last_regenerate|i:1613063517;local|s:1:\"1\";listaVenta|i:2930;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0e736972b39a0971f20f88deb725ddb2a1ea47e', '167.248.133.125', '1686561828', '__ci_last_regenerate|i:1686561828;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0eb6add8c7f430aa828af34208626743f06ab32', '186.1.135.131', '1617645900', '__ci_last_regenerate|i:1617645765;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617629517\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000371\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ef430526beca03654d908e089ed7c19d3ce838', '186.1.135.138', '1613062073', '__ci_last_regenerate|i:1613062064;local|s:1:\"1\";listaVenta|i:2329;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0f45067809dedf45e47fbdbf971e79ebb08c50c', '167.94.138.36', '1685375546', '__ci_last_regenerate|i:1685375546;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0f5b3748d67abba1f2e4ec6f040f9fbcb758217', '148.102.26.11', '1618851657', '__ci_last_regenerate|i:1618851269;local|s:1:\"1\";listaVenta|i:299;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618839872\";last_ip|s:13:\"186.1.135.159\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0fe7048b166a5f158880d3473611f0a8e00dfc8', '186.1.135.129', '1618261909', '__ci_last_regenerate|i:1618261909;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10680400f9620a380d47cde9e6572bb51b10a89', '45.225.216.151', '1623283500', '__ci_last_regenerate|i:1623283193;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623273425\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e106c7a4068e925e3ef4339cad94fc674d4a9cc6', '51.158.103.247', '1619106652', '__ci_last_regenerate|i:1619106652;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11dcc939bf275ae408c44943851a86556ace7d2', '190.43.38.234', '1620702997', '__ci_last_regenerate|i:1620702996;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e159c2d9c50eb32be55c821a2be71bc388b12a34', '144.86.173.94', '1628331237', '__ci_last_regenerate|i:1628331237;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e15e5114b18a834126181e286fe8a7474e68b49f', '51.158.98.24', '1625135549', '__ci_last_regenerate|i:1625135549;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e15f6cb8e753afa1778f965d60c27667e82149a0', '18.219.38.43', '1698013924', '__ci_last_regenerate|i:1698013924;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1617d7fb2ca043afd446ee71421273900851095', '181.64.57.12', '1621090183', '__ci_last_regenerate|i:1621090183;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1650cd5f0723ad916240d16563c92ebf3625360', '62.210.10.77', '1611139030', '__ci_last_regenerate|i:1611139030;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e166ddee520fb3d9b60b6898f1438a17f2ac7942', '45.225.216.151', '1623416640', '__ci_last_regenerate|i:1623416638;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623332925\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16e293a165d25f55e0e53b908034127994861fe', '170.64.190.167', '1683172222', '__ci_last_regenerate|i:1683172220;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e173e6982c70e6764f69c634f6953044a592a58c', '186.1.135.129', '1614696230', '__ci_last_regenerate|i:1614695714;local|s:1:\"1\";listaVenta|i:187;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614692817\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e183cf6771e6d8ec865de7a17d82ec2cddebd5ec', '198.235.24.143', '1670725002', '__ci_last_regenerate|i:1670725002;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18d720082cfd5cb7626b2ae658132d79cf9a66a', '195.74.76.198', '1683172222', '__ci_last_regenerate|i:1683172222;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e194193796f0a4a1b8bf6d1ded14b92af441feb3', '183.136.225.45', '1691419117', '__ci_last_regenerate|i:1691419117;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1947f7a2aaf4f744f398e05a8434cbc55154973', '190.232.180.131', '1612363983', '__ci_last_regenerate|i:1612363872;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612308961\";last_ip|s:14:\"190.239.238.60\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e19e8ccdf5381b89f63224874b07873d7aa306df', '161.132.234.14', '1622651600', '__ci_last_regenerate|i:1622651373;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622579033\";last_ip|s:15:\"146.112.244.227\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a57758718687e73231b208e3c0e4ded9de2e04', '186.1.135.142', '1614621431', '__ci_last_regenerate|i:1614621167;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614567109\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b3847680f1441817391abbcfac799cd1141269', '205.210.31.167', '1669756909', '__ci_last_regenerate|i:1669756909;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1c790709f628dcbcbc806c3e89616e0273e8a4a', '179.6.212.129', '1615568619', '__ci_last_regenerate|i:1615568556;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615563891\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d4961dd9b94aa0abb3f4b71284857af058aede', '34.194.68.222', '1669016255', '__ci_last_regenerate|i:1669016255;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1dffa71aee03dfda20b07d21620e9b803c209c4', '148.102.26.11', '1619538893', '__ci_last_regenerate|i:1619538014;local|s:1:\"1\";listaVenta|i:595;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619534195\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1e31c976d8a6f4197eb89b2de0044e1b72ba7ed', '181.66.176.124', '1691564672', '__ci_last_regenerate|i:1691564326;local|s:1:\"1\";listaVenta|i:164;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1689051802\";last_ip|s:12:\"181.67.2.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1e49f9c54c66b967487b10832e3fa119e88526e', '190.239.68.82', '1671554548', '__ci_last_regenerate|i:1671554547;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671410780\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f1c26bd743079b957be4fba83bb70dafa025c3', '186.1.135.138', '1613059486', '__ci_last_regenerate|i:1613056744;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f74e25587776b72dfbf782f30c055b4174eec9', '201.230.205.196', '1698728533', '__ci_last_regenerate|i:1698727858;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698717606\";last_ip|s:15:\"201.230.205.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20df971c2463b32e9646e8007dd76889d074656', '52.64.20.252', '1617552984', '__ci_last_regenerate|i:1617552984;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20f2600264d8d7f53d25e2ed850ddfe37454911', '181.67.2.242', '1687995368', '__ci_last_regenerate|i:1687995211;local|s:1:\"1\";listaVenta|i:1946;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968167\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2131de2c61d510817251ab9a0063738f863070f', '190.216.191.102', '1621543605', '__ci_last_regenerate|i:1621543603;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e266eaca6e6d9e23bf09066951ea67bad3161c4b', '205.210.31.130', '1659110242', '__ci_last_regenerate|i:1659110242;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2827caa0a7307d4be4a19871886509e0e46a6a2', '205.185.127.165', '1682232957', '__ci_last_regenerate|i:1682232957;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2879dc1dc94e1f76ff676995790512de7d3803d', '132.184.129.157', '1618503241', '__ci_last_regenerate|i:1618503077;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617729735\";last_ip|s:15:\"132.157.129.160\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28a764de8a78947364e53ba382f760cdb6d8737', '87.121.221.251', '1691608822', '__ci_last_regenerate|i:1691608821;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2965f95ea4405062d0584a63c540fd5d2a6f425', '198.235.24.42', '1678006436', '__ci_last_regenerate|i:1678006436;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e29e6b9d6c767fcf87abee91ba4fe2702d28a5af', '198.235.24.26', '1693062670', '__ci_last_regenerate|i:1693062670;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a0fc5fc9ea69a2eb31cbdace7c454fa48bf3fe', '38.25.16.184', '1698956793', '__ci_last_regenerate|i:1698956685;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2b3092c518fbd2f05de178b763fd7ba8db890e2', '190.233.5.229', '1621438551', '__ci_last_regenerate|i:1621438531;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620840076\";last_ip|s:12:\"181.64.57.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c125beda08732793bbe8ae58bdc601decc7bd3', '186.1.135.157', '1616767385', '__ci_last_regenerate|i:1616766901;local|s:1:\"1\";listaVenta|i:865;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616711069\";last_ip|s:13:\"190.236.0.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c19e6004bd8d318da1c5dce9c8e91c090ea743', '181.64.57.12', '1620756477', '__ci_last_regenerate|i:1620756476;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d3ca82a810d1e0a367e8ae169a4571551fc6eb', '179.6.212.129', '1615299755', '__ci_last_regenerate|i:1615299755;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615234844\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d8bc2dc9842fa2a8ee2e75a67ce21be7d7b9bd', '186.1.135.134', '1615826878', '__ci_last_regenerate|i:1615826878;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e0a3f5388113f7b44888032f2d1343b9921f6f', '34.236.55.223', '1621494310', '__ci_last_regenerate|i:1621494309;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2eb83936fa2697559bfce833d7c04f5eb7a2303', '35.226.200.230', '1656471830', '__ci_last_regenerate|i:1656471830;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2f4cb6d1f0b9ddeb0b38add44a77c6fae191aa2', '205.210.31.26', '1670106339', '__ci_last_regenerate|i:1670106339;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e313a0b15d78330aa58f4d5497d5c1689cee204f', '161.132.234.14', '1623159537', '__ci_last_regenerate|i:1623159519;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623100618\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33e7d3a36df47c179f9b2e5be7abc19d91b84f9', '186.1.135.79', '1611936580', '__ci_last_regenerate|i:1611936376;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611934945\";last_ip|s:15:\"201.212.119.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000259\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33fb2387dd5e89d32fc143d83181bc6a2ea922d', '186.1.135.71', '1613684816', '__ci_last_regenerate|i:1613684725;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e34d94adec7e13e5b38b0dcacac28599bd8defd6', '134.209.24.4', '1697063662', '__ci_last_regenerate|i:1697063662;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e367afcf4b611f80698d4cc6489550edac0ebdeb', '51.158.127.119', '1661896832', '__ci_last_regenerate|i:1661896832;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e37e1dc3337a3dc3379e0e166fd098fabc8289a9', '201.230.81.164', '1622146390', '__ci_last_regenerate|i:1622146319;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622146294\";last_ip|s:14:\"201.230.81.164\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e381729dfbb15cc514c375f5e04cfc2ab37a2a30', '190.232.180.131', '1612024037', '__ci_last_regenerate|i:1612023955;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611959578\";last_ip|s:13:\"190.238.217.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38665f8f77884ba44ab7cfd30d5358e808073c7', '201.230.205.217', '1672970651', '__ci_last_regenerate|i:1672970482;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672963620\";last_ip|s:11:\"38.25.16.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38914d1b0bbd5d0cc04a2ea47e632522a12d474', '186.1.135.134', '1614099819', '__ci_last_regenerate|i:1614099817;local|s:1:\"1\";listaVenta|i:434;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614083127\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3b70d71c27ef9f7b201c6850a42ff3c44f421bd', '132.184.128.122', '1611872128', '__ci_last_regenerate|i:1611872128;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611854258\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3be09e838ec917e4ac931bba957fef205ea951d', '190.239.78.92', '1620662520', '__ci_last_regenerate|i:1620662300;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3e27ca265f465bde997fdec05b1f9e769700379', '46.101.80.23', '1696657022', '__ci_last_regenerate|i:1696657022;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ebbbde7a7b988058563e2fb1e8144fb11cfe15', '186.1.135.130', '1617054177', '__ci_last_regenerate|i:1617054177;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ff450ce1aea186ef69abab86247bbe1a8849df', '190.236.27.12', '1620227022', '__ci_last_regenerate|i:1620226748;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620138053\";last_ip|s:13:\"190.43.38.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4022a38b80dd6df6912342c03ba5b97f0706bcd', '45.225.216.152', '1630590493', '__ci_last_regenerate|i:1630590493;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42e7db85b619c59d531aeb4de66332e4bdf8812', '181.67.2.234', '1688791343', '__ci_last_regenerate|i:1688791340;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4361fb9dfaacdf37d79e30f2a2674a94c455baf', '51.255.62.8', '1669065657', '__ci_last_regenerate|i:1669065657;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e458935b943e5ddf02a4793607c9c5008e0313ba', '148.102.26.11', '1619444792', '__ci_last_regenerate|i:1619444620;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e46f185bc805d3c2e5aaab07c4d5a73503ad4ed1', '190.236.0.145', '1616711505', '__ci_last_regenerate|i:1616711031;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616703126\";last_ip|s:14:\"148.102.22.241\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47739abd7da62ff3e5e058818c87a12de9a9821', '205.210.31.75', '1696102080', '__ci_last_regenerate|i:1696102080;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ad98ebae5818aa8d085720754e054ce8701fb8', '205.210.31.76', '1698262958', '__ci_last_regenerate|i:1698262958;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b1d3d0758fda1aafcf4b7ab4a4dfa4efe96c40', '190.43.38.234', '1619800713', '__ci_last_regenerate|i:1619800496;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619726865\";last_ip|s:13:\"181.64.93.165\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bf2df1dc72a40c53636e591bc9864b676396ad', '179.6.222.7', '1617974363', '__ci_last_regenerate|i:1617974144;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4c0f90d88629b031d5cb53c3043e547460e3fb8', '205.210.31.140', '1655604951', '__ci_last_regenerate|i:1655604951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4dc6f276d83d031328f26451a4984910210b856', '54.87.82.221', '1654292936', '__ci_last_regenerate|i:1654292935;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4e6041ef7153260b59e8c5cdfedc5f6a0084d27', '198.235.24.143', '1662881205', '__ci_last_regenerate|i:1662881205;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f7f59eeb152161e6b97f948a3dba695c65534c', '38.25.7.251', '1652892417', '__ci_last_regenerate|i:1652892301;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652726050\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e507e7ef61e857c067209e3a4e5b4882fff6c8ea', '35.192.59.59', '1656668976', '__ci_last_regenerate|i:1656668976;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e52b3ade343f38ca7392b790f0a1b669636d8c48', '132.184.128.25', '1617493296', '__ci_last_regenerate|i:1617493187;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617483149\";last_ip|s:15:\"132.157.130.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56b299f1904adba0ca5d4cff0dfec8b8900f6fb', '190.237.172.147', '1614567730', '__ci_last_regenerate|i:1614567408;local|s:1:\"1\";listaVenta|i:270;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614437584\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e574947e5ecdf1fb5376e540125aabbd7e9d9860', '179.6.222.7', '1617980886', '__ci_last_regenerate|i:1617980489;local|s:1:\"1\";listaVenta|i:1626;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5911b75c3dc7f1ab2f2af29455140c505519be9', '52.221.191.180', '1697720513', '__ci_last_regenerate|i:1697720513;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e598455b0734c3d45090998d96c1a3d3f8524672', '34.245.99.218', '1686006726', '__ci_last_regenerate|i:1686006726;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a6a274aca7c90008850596b00e556399b20075', '47.128.53.126', '1695479507', '__ci_last_regenerate|i:1695479506;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b06b909239c72fa4f13d9795754061672b03ad', '190.232.180.131', '1611936626', '__ci_last_regenerate|i:1611936366;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611928932\";last_ip|s:14:\"132.157.130.10\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5cb49ca3fdef6fe7b4b920c520991c40ee910d8', '207.148.127.89', '1694512157', '__ci_last_regenerate|i:1694512157;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e08da04bdf3efeaacae256d17209df3f4ea69a', '205.210.31.10', '1663272580', '__ci_last_regenerate|i:1663272580;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61ade82b40a9c5c5b5f76b51ab2e75ce02474f7', '18.230.152.165', '1621764818', '__ci_last_regenerate|i:1621764818;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61b9c1c79f84eb685c82778ab7f40104e951fda', '139.155.30.159', '1624197630', '__ci_last_regenerate|i:1624197630;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e634a4859fb0adba2a06b5b9ab3a76026311a47d', '198.235.24.19', '1666494560', '__ci_last_regenerate|i:1666494560;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63c7f48b445239361949b36a3ba1ae21d183a3a', '209.17.96.26', '1612641175', '__ci_last_regenerate|i:1612641175;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63f341ea3a4a999a357a2e309eb6717b2f33764', '201.230.205.217', '1671076683', '__ci_last_regenerate|i:1671076480;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671071243\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e659f9d756dc557dce122cf16f0f20e067724541', '167.248.133.61', '1654080968', '__ci_last_regenerate|i:1654080968;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e660fa0ead424c286af44afe5ca64f646295bbe2', '85.217.144.155', '1687378941', '__ci_last_regenerate|i:1687378941;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67a5c4de85dda0c9d6316e11a6fbe96eda3bd80', '190.232.180.131', '1613055284', '__ci_last_regenerate|i:1613055265;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612903184\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67e0a4303f2cab7168593577e9380b7f1869df0', '175.24.232.97', '1623535990', '__ci_last_regenerate|i:1623535990;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67f00bfcf78a5f9d2d08126d2ec2d03b8da414c', '144.86.173.3', '1628934405', '__ci_last_regenerate|i:1628934405;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67f518f47be3a8a85eceb6a22e246001a10a37e', '54.176.140.40', '1626144252', '__ci_last_regenerate|i:1626144252;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e68da259f1bde4ebe71084a7b0bb773b442bc297', '186.1.135.66', '1616447424', '__ci_last_regenerate|i:1616447039;local|s:1:\"1\";listaVenta|i:744;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6bf6939fd050a4d468d123a1d9aeb0a68af060b', '198.235.24.146', '1693661316', '__ci_last_regenerate|i:1693661316;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ca0eed83b0897ed97dc1bacff14d54381a2b3a', '186.1.135.135', '1612535353', '__ci_last_regenerate|i:1612535204;local|s:1:\"1\";listaVenta|i:89;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612528908\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6cd8c64e7c019c661217e62ab9f2010a57c42d4', '186.1.135.134', '1614114851', '__ci_last_regenerate|i:1614114825;local|s:1:\"1\";listaVenta|i:248;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614094323\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e483e9ce4511776f2afbce5041110b18972b7a', '2.57.122.107', '1683851207', '__ci_last_regenerate|i:1683851204;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e749bf8db149d2d9d36412a788fd08334b6f45', '92.118.160.57', '1634551745', '__ci_last_regenerate|i:1634551745;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f331bd37e081e03a5df72362e1797c88f22839', '179.6.222.7', '1616170968', '__ci_last_regenerate|i:1616170968;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616094960\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e70922e05c960f2b4439314bd16bc58acbb6a324', '186.1.135.150', '1613143435', '__ci_last_regenerate|i:1613143413;local|s:1:\"1\";listaVenta|i:239;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613047424\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e70b0f838d74a2484445e1da3fee759c290bb33c', '205.210.31.156', '1664649718', '__ci_last_regenerate|i:1664649718;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7200873fe087904866121ba1ef35520c6a84587', '65.2.70.24', '1683828540', '__ci_last_regenerate|i:1683828540;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e72047c1b7a4ba4d9058576e281aaf68b02ad286', '34.245.39.79', '1696503681', '__ci_last_regenerate|i:1696503681;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7226830a49e1e398cb6f7f198f860870247bd81', '181.176.121.19', '1675173863', '__ci_last_regenerate|i:1675173846;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675126396\";last_ip|s:14:\"181.176.121.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e749684decde67fa311d537c8b85c7ecd058d9e9', '92.118.160.61', '1628941713', '__ci_last_regenerate|i:1628941713;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e749c1ac7f2f6231822b2e1adaacb73f7f5b4f24', '186.1.135.129', '1615237704', '__ci_last_regenerate|i:1615237476;local|s:1:\"1\";listaVenta|i:81;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615234680\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76fe4fe7b49619d6f10c51e189a0527707bc12a', '148.102.26.11', '1620230317', '__ci_last_regenerate|i:1620229685;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77b638061b03c65573bb373c4b73adac8b30765', '201.230.205.217', '1671207422', '__ci_last_regenerate|i:1671207032;local|s:1:\"1\";listaVenta|i:133;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77c57ea9c634801b2f1d7c4fe7cb675e1ef4844', '190.237.172.147', '1614776356', '__ci_last_regenerate|i:1614775966;local|s:1:\"1\";listaVenta|i:1476;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614771236\";last_ip|s:15:\"190.237.172.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79792ac7774e13afeb145184299f3270797cca7', '183.136.225.44', '1677853288', '__ci_last_regenerate|i:1677853288;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a2123099fb284a1cbf237629a07616c644cb44', '186.1.135.129', '1617817747', '__ci_last_regenerate|i:1617817563;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7abf0977c2f7b2f118f08ddad4fa1d148e9820c', '45.135.57.222', '1698903243', '__ci_last_regenerate|i:1698903243;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b792ddce58585ef1e7c88a7448fc77770bab3d', '148.102.26.11', '1620073892', '__ci_last_regenerate|i:1620072748;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620059788\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b981f995aabd56fc52fc5f07d34877cc4142aa', '186.1.135.134', '1612788363', '__ci_last_regenerate|i:1612788330;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7bbe4a1e1a1c8b0208f478520b8331f7e7aa39f', '34.194.68.222', '1669011146', '__ci_last_regenerate|i:1669011146;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7cd7a0eb0e7e541eb2f0427da152649881832e8', '18.230.64.100', '1612469166', '__ci_last_regenerate|i:1612469166;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7d5d1d7dbc65af36198fa6afdd1bd66a884101b', '186.1.135.130', '1617740364', '__ci_last_regenerate|i:1617739987;local|s:1:\"1\";listaVenta|i:12;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617723111\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7d6481c681b19ea4db03dada1040badc3ee8f9e', '148.102.26.11', '1619194137', '__ci_last_regenerate|i:1619193875;local|s:1:\"1\";listaVenta|i:86;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619189243\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e4693a6f51c890f869bfc9fabf84af6b965bc8', '148.102.23.16', '1620935998', '__ci_last_regenerate|i:1620935974;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620935058\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f6b9eb5186d4201a66060b8799d388f2dd5c48', '92.118.160.9', '1635166660', '__ci_last_regenerate|i:1635166660;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7fd76779d3023dd5a9ad05fbc16a13b3f92dc4f', '186.1.135.146', '1614025596', '__ci_last_regenerate|i:1614025244;local|s:1:\"1\";listaVenta|i:14;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614019549\";last_ip|s:13:\"186.1.135.146\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8004590255e916ea7af28ee9ec8099504cf38f4', '181.66.176.124', '1691565240', '__ci_last_regenerate|i:1691565028;local|s:1:\"1\";listaVenta|i:260;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1689051802\";last_ip|s:12:\"181.67.2.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e80992aae692d78d103f0961ff5cfc6c468f134f', '92.118.160.57', '1629044269', '__ci_last_regenerate|i:1629044269;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81a16c95cf7c66310595ca75a6aa45c00af3ce8', '38.25.16.184', '1698951484', '__ci_last_regenerate|i:1698951337;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698948897\";last_ip|s:12:\"179.6.161.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81e708f12f1ff58472d2c4d77e205303923081a', '186.1.135.131', '1614283415', '__ci_last_regenerate|i:1614283153;local|s:1:\"1\";listaVenta|i:391;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614274615\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82cf4a18e85fb75fae6739cd5417ec73c8da19b', '198.235.24.152', '1660471966', '__ci_last_regenerate|i:1660471966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82f9b622b07b87a7d91ee14856f7b2b71e84410', '162.142.125.221', '1657742633', '__ci_last_regenerate|i:1657742633;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e84dc7a664ed7e47aed6a8b0b2253a695b7f37e6', '15.228.82.73', '1622088938', '__ci_last_regenerate|i:1622088937;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8527576bc747ee841e6e3115ae920838fe6a898', '106.53.83.56', '1628042014', '__ci_last_regenerate|i:1628042014;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8602bb8b9177998f920b45e6fedb4fd0b83b8f2', '162.142.125.226', '1684306931', '__ci_last_regenerate|i:1684306931;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87dd4101a4d8af65def9ae28d3140888c15c96f', '18.228.17.2', '1611533225', '__ci_last_regenerate|i:1611533225;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87ee5ad5d9ceb8a97a681c957fccdbba16e185c', '167.248.133.34', '1680085430', '__ci_last_regenerate|i:1680085430;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88dd774ba0d62834cc5ddb1524d7ec88ce1cc61', '183.136.225.45', '1694025913', '__ci_last_regenerate|i:1694025913;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8adbefb29f2bf3897d17ac1c1fe4c56fc331855', '205.210.31.2', '1656436454', '__ci_last_regenerate|i:1656436454;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f66cf991f32daa2229fb4afe87d30c07248345', '167.94.138.45', '1659858356', '__ci_last_regenerate|i:1659858356;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f881db475af5d9772c4fab8f52b505203c0b3a', '186.1.135.150', '1613163735', '__ci_last_regenerate|i:1613163487;local|s:1:\"1\";listaVenta|i:142;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613154445\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8fae051c7162831709017bc050820326ee59e81', '144.91.106.14', '1655994067', '__ci_last_regenerate|i:1655994067;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90b1766d7e734c1a1ed44850363bdca8aa8f206', '198.235.24.170', '1697506207', '__ci_last_regenerate|i:1697506207;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91730b6ea55a3cbb3092fe2baef985b3a7f61cd', '181.67.2.234', '1688696053', '__ci_last_regenerate|i:1688695716;local|s:1:\"1\";listaVenta|i:32;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688609147\";last_ip|s:11:\"38.25.16.38\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e93f06f95286a44d71a14d66bca7996749475228', '198.235.24.18', '1673930896', '__ci_last_regenerate|i:1673930896;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94246c8fc27df14f33415484672e3eaf3b43550', '186.1.135.66', '1616445874', '__ci_last_regenerate|i:1616445513;local|s:1:\"1\";listaVenta|i:434;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e95dd54b4f058da2735af107f52d2cc1111923cc', '54.233.133.239', '1622275680', '__ci_last_regenerate|i:1622275679;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e96373f15289ed5a0ef6a94be4840a4f8c754501', '186.1.135.129', '1614696261', '__ci_last_regenerate|i:1614696258;local|s:1:\"1\";listaVenta|i:187;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614692817\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000299\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e972aa44a90e342d19d4f417841d4b872a679d18', '205.210.31.15', '1679680304', '__ci_last_regenerate|i:1679680304;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e98578b7471991d93fe5f2991b29f641258e77ca', '186.1.135.129', '1617815074', '__ci_last_regenerate|i:1617814824;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e988fa1b9ef2d0aa1da769d53de1493807ceb1d1', '179.6.212.129', '1615861149', '__ci_last_regenerate|i:1615861149;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e98da3dcddff3636c0bc3861936347a3a8f0e2e2', '134.122.7.10', '1665186062', '__ci_last_regenerate|i:1665186062;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e98eb71241e7875225f19f9c16f4eb893cd497c2', '190.237.172.109', '1615118321', '__ci_last_regenerate|i:1615118026;local|s:1:\"1\";listaVenta|i:486;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614981574\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9938ad702e1dd322c6d98e299a8b1d2e678cd88', '186.1.135.129', '1617829632', '__ci_last_regenerate|i:1617829574;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9993b04f2b52208d338e44c4df64aa135fcd243', '148.102.26.11', '1621001503', '__ci_last_regenerate|i:1621001224;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620943276\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:53:\"Se registro y envío con exito la guia de remision - \";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99afefefe7c9517af57a21084bb6c9190a284ec', '198.235.24.152', '1666476218', '__ci_last_regenerate|i:1666476218;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99ee16c06a789a289ac538fa87d89b3', '201.230.81.164', '1622131773', '__ci_last_regenerate|i:1622131773;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622131765\";last_ip|s:14:\"201.230.81.164\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"00000000000\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a2a9d87660c8bbb7e2c66e06165e6fe5b21b98', '120.41.45.194', '1618758576', '__ci_last_regenerate|i:1618758576;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b30179a2ad16056cdaeee9c2a5504ac000706c', '186.1.135.66', '1616420515', '__ci_last_regenerate|i:1616420260;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616175755\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b7e107fb4d6839c6ec47ae3274685343c3421e', '186.1.135.138', '1613062031', '__ci_last_regenerate|i:1613061749;local|s:1:\"1\";listaVenta|i:2329;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000281\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9d9ad301414b0db527dcd0722ed703fadbee6d1', '18.193.79.229', '1673987863', '__ci_last_regenerate|i:1673987863;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9f088517c888bc63d7e23c74d19ac6c20f6d938', '186.1.135.135', '1612536332', '__ci_last_regenerate|i:1612535831;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9fa114f5055e1ee8037dc35b6f314da4688cc5c', '167.94.138.60', '1636693498', '__ci_last_regenerate|i:1636693498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea080130c1bf2361c24cd9ebd85e3112f7d54a46', '3.120.189.184', '1691552285', '__ci_last_regenerate|i:1691552285;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea1023fc48794eb520f1cbaf4b7adc3296cb6932', '132.157.130.59', '1611851556', '__ci_last_regenerate|i:1611851381;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611850937\";last_ip|s:14:\"132.157.130.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.png\";pos_logo|s:1:\"2\";logo_pdf|s:16:\"logo-empresa.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"6IcuiBi+sLGJmxVVNSGXQ9ncDFDa64me37pEMLywro/1DbHfz2V5+1/6JRSDp4t8xRi4oJyvuM78Tu77ez8W/g==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea149da07df8957f7f3ea96887d400b38446452d', '205.210.31.171', '1687699716', '__ci_last_regenerate|i:1687699716;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea1df03b14e77814c99f9da75b74ff8074ba6e7d', '186.1.135.134', '1612816448', '__ci_last_regenerate|i:1612815811;local|s:1:\"1\";listaVenta|i:233;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612812992\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea2108ecd577b7f3c7679fbfe4dd4339b992a07d', '179.6.212.129', '1614720042', '__ci_last_regenerate|i:1614718577;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea246cd7681cdbdd0e08453bbde813287ee5fa67', '47.88.94.161', '1689782421', '__ci_last_regenerate|i:1689782421;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea2a6a3e025ac46b9ef1cea73c4a02324f6b1822', '45.225.216.151', '1623111367', '__ci_last_regenerate|i:1623111136;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623079921\";last_ip|s:14:\"190.192.49.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea42c39cd3e5bc3fd1c2894a4c35f1571d10891a', '148.102.26.11', '1621261174', '__ci_last_regenerate|i:1621260954;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621019177\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea4d39e4109a31629bdfdc8ec6ced9091c95ca2e', '185.225.74.198', '1682098186', '__ci_last_regenerate|i:1682098185;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea549254b3e8462c3a3d3c4a1ccc7d250d044b0d', '65.154.226.170', '1691555139', '__ci_last_regenerate|i:1691555139;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea65aaed2433629c58faf3f29685f731dac2436e', '132.184.130.166', '1612543502', '__ci_last_regenerate|i:1612543502;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612537080\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea681ae1e2f9ed108e22aed3418f640c6c43a56c', '190.237.172.147', '1614779370', '__ci_last_regenerate|i:1614779370;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea6b50f44c36470f7e7675fdf1437d70faba454a', '54.229.239.164', '1673486728', '__ci_last_regenerate|i:1673486728;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea941113d9b06dd0beb059a743245870cef64b86', '186.1.135.79', '1611942405', '__ci_last_regenerate|i:1611942259;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611935873\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"EF9vt8kNNh6axJG9npDpUdEn1dksKb7+KCL9Gc0+bIftggwItWIOJOStH6JTO0ArwTNGYpiIFzPIo2//jUKPZw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab2c9d4c6f446622b70924df29583e7310f2bec', '148.102.26.11', '1620659483', '__ci_last_regenerate|i:1620659250;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab579d9131543735922891ac785a4b83fdb2568', '175.24.232.97', '1618581835', '__ci_last_regenerate|i:1618581835;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab5890f57c7731904902954cf691697343dbee2', '179.6.212.129', '1614959735', '__ci_last_regenerate|i:1614959556;local|s:1:\"1\";listaVenta|i:71;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614882416\";last_ip|s:13:\"186.1.135.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab7818ae5d8a819cdf87fffec8eb6b701544ae4', '18.231.187.105', '1621735430', '__ci_last_regenerate|i:1621735429;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac014e9235c34ccb1f7d6bbaa4e5b9f4279713f', '186.1.135.138', '1613050751', '__ci_last_regenerate|i:1613050417;local|s:1:\"1\";listaVenta|i:751;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac9c8157cedd142ef002f63a272b802357b878d', '162.142.125.216', '1681132951', '__ci_last_regenerate|i:1681132951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ead4d11f5a8156649706a4a1b8b9e7c686ab356e', '205.210.31.37', '1682780933', '__ci_last_regenerate|i:1682780933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae82bb991131bf55748c7b11ae79c4d069d710d', '101.68.211.2', '1692181472', '__ci_last_regenerate|i:1692181472;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf04f0243c946f7fac9d413c3e803e908e76248', '148.102.26.11', '1619192228', '__ci_last_regenerate|i:1619191645;local|s:1:\"1\";listaVenta|i:2069;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf0a8a7f7b66d0957c8eb195af33e4b0981af6d', '132.184.131.58', '1612283656', '__ci_last_regenerate|i:1612283655;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb34859a40176df665473fc3d9df60c571cc9649', '148.102.26.11', '1620249182', '__ci_last_regenerate|i:1620248901;local|s:1:\"1\";listaVenta|i:26;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620223665\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb557324b5eb80052a43c79e6afb63a4c175aad5', '205.210.31.45', '1677018105', '__ci_last_regenerate|i:1677018105;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb68fd27b9055282f9d749c52a682e71416df19e', '198.235.24.185', '1677270560', '__ci_last_regenerate|i:1677270560;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb792b044aad645f01216bacb7aa5266afbfb99f', '18.230.197.174', '1612095307', '__ci_last_regenerate|i:1612095307;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb84ead3e44aa86969689960d4850a0de64e3f6f', '46.101.150.34', '1670546468', '__ci_last_regenerate|i:1670546468;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb902a7e5f636a5cb4fcbc9dad115c552481d2ea', '34.66.78.2', '1655430578', '__ci_last_regenerate|i:1655430577;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba700d995d7b78d81765bfcb3136da5dbf9c490', '161.132.234.14', '1625848858', '__ci_last_regenerate|i:1625848835;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625628695\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebaef6f45c16caf65143c7c99d0ab7c41d170443', '::1', '1598575620', '__ci_last_regenerate|i:1598575620;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598362856\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb44dbdec4145dadef2e76a436af001d66fcce8', '42.192.11.192', '1628898271', '__ci_last_regenerate|i:1628898271;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb9575426409d00ee1603123c4c1e41d68db0f9', '179.6.212.129', '1614870437', '__ci_last_regenerate|i:1614870225;local|s:1:\"1\";listaVenta|i:174;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614802434\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbb244dc867f33bbe2ac34995139ea8257443c7', '179.6.222.7', '1617138068', '__ci_last_regenerate|i:1617137974;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617114271\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000357\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc75aa526a88075dd5dae767e60c9178906ce4a', '167.94.138.63', '1662562966', '__ci_last_regenerate|i:1662562966;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc84c2c060a167fb89ef7c3da92f00bf84a9000', '183.136.225.44', '1685036522', '__ci_last_regenerate|i:1685036522;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebcd419a209c838a35b1d6b92bf62b441aa47407', '106.53.83.56', '1628042010', '__ci_last_regenerate|i:1628042010;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebce8c2bc4d6f0509615b5cdac661caf3864004e', '54.233.124.154', '1611847449', '__ci_last_regenerate|i:1611847449;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd1a01731c98020cf0a6c0256230ab4596353a7', '186.1.135.134', '1615825079', '__ci_last_regenerate|i:1615825062;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615821606\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd586488ed6403db60cc90820959acede2128c5', '179.6.222.7', '1617981858', '__ci_last_regenerate|i:1617981568;local|s:1:\"1\";listaVenta|i:1677;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617917625\";last_ip|s:13:\"186.1.135.136\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd9787237cad2923b1f74e707e8b015d586239d', '190.237.172.147', '1614568530', '__ci_last_regenerate|i:1614568400;local|s:1:\"1\";listaVenta|i:563;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614437584\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe17ac8d9bcf7fe143c706bf259cf14e82a8ede', '179.6.212.129', '1614696066', '__ci_last_regenerate|i:1614695919;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614617350\";last_ip|s:13:\"186.1.135.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe7f9670692f74e42cd651f48d35a9f65ef9425', '67.205.191.23', '1684066924', '__ci_last_regenerate|i:1684066924;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec25cd72ea3a10e5eed8e028a083058ae63f7424', '18.133.184.150', '1618445035', '__ci_last_regenerate|i:1618445035;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2ae3f1f0b56e61d65ffa492d423fdbecd0813d', '132.184.129.122', '1617415942', '__ci_last_regenerate|i:1617415710;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1617398618\";last_ip|s:15:\"190.239.238.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2b5169746435163d1e201b0ed4adac6ac25a0d', '181.64.105.12', '1622213976', '__ci_last_regenerate|i:1622213762;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622210824\";last_ip|s:13:\"181.64.105.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec331df3f15f711458c092dea6629f4ba32ab044', '103.153.68.244', '1661397028', '__ci_last_regenerate|i:1661397028;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec340a72028d7e8c22aafa0a3a9fa738d08f99ec', '205.210.31.180', '1666435721', '__ci_last_regenerate|i:1666435721;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3bf2f41d118c91038fe25855fd9cfa917c0b5a', '54.94.15.248', '1622027984', '__ci_last_regenerate|i:1622027984;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec4822cb7a3150d5f01943bdb164f89bea4023ff', '201.230.205.217', '1672895015', '__ci_last_regenerate|i:1672894915;local|s:1:\"1\";listaVenta|i:106;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672888469\";last_ip|s:11:\"38.25.16.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec4ea9d2ec8dff39d522fcc8ad90747d30f55ba4', '18.230.64.100', '1612469168', '__ci_last_regenerate|i:1612469167;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec7320db880ee9a5ffd1604047353377597230a7', '207.148.127.89', '1694415501', '__ci_last_regenerate|i:1694415501;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec77836a9d5b4003b5be2cb9c7f786c24eddb682', '198.235.24.166', '1684458421', '__ci_last_regenerate|i:1684458421;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec81fde51e726a1839e4d4c5683791fa4b5cfd54', '190.43.38.234', '1619974101', '__ci_last_regenerate|i:1619973737;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619901000\";last_ip|s:15:\"190.239.238.200\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec841c6e23d542891aead10f80f87ffaf70170e5', '186.1.135.138', '1613055086', '__ci_last_regenerate|i:1613054808;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000278\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec86eaed25e112a10ae86e314535b3e391b5ba32', '190.239.238.60', '1612308991', '__ci_last_regenerate|i:1612308958;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612301065\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca0829ce108c69afad75836da0991b476421a70', '190.232.180.131', '1611940504', '__ci_last_regenerate|i:1611940407;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611928932\";last_ip|s:14:\"132.157.130.10\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"ivHHSlVz07DYD2FN3fBVJSOrs6NkgVgVbpUdKZjU9246OtrpF7KS/pP4FeZcx7nxpI8PBHyTF9nSVLhulMyZZA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb52eaf11232ccb559fdbd2f6a2e9490d3a1888', '186.1.135.134', '1612819859', '__ci_last_regenerate|i:1612819788;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612813482\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd2c4d2f6f104146782cb18fed2ba4e83a3a90b', '51.81.167.146', '1654271342', '__ci_last_regenerate|i:1654271342;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece440738f9a5c9a81de419b3afb45d0276fcc22', '167.248.133.45', '1663426886', '__ci_last_regenerate|i:1663426886;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf64c7e9079fb85be579472f135a1a2a0efcd34', '38.25.7.251', '1652893374', '__ci_last_regenerate|i:1652893373;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652726050\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0dcbb84529664df2e8c7b1871f85ccfa6a994a', '205.210.31.158', '1696566512', '__ci_last_regenerate|i:1696566512;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4d130e59681a2a07e571070cca89be9658fccb', '34.255.190.132', '1637196494', '__ci_last_regenerate|i:1637196494;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5c5f9601322f10d62c963979992b9a7e7e45e8', '148.102.26.11', '1621521748', '__ci_last_regenerate|i:1621521483;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621462978\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed69903fc98798806d51ae0b89e17ce0d9c36bab', '106.53.83.56', '1628042007', '__ci_last_regenerate|i:1628042007;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9020662f7b622b4bae162d1453e52738e9b6dd', '101.68.211.2', '1671557716', '__ci_last_regenerate|i:1671557716;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed969d01e58cf02898ef510105e9e428be3e1953', '148.102.26.11', '1620655151', '__ci_last_regenerate|i:1620655058;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edc58d9d42e73ffa0c89f3ef3c45c2c9c537dfb2', '198.235.24.51', '1695546313', '__ci_last_regenerate|i:1695546313;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd5c516a96b4b95def12eebf7cf7990b4793e55', '2.57.122.25', '1682736322', '__ci_last_regenerate|i:1682736322;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd755822d5f06dc908d9fd417c5c703c4be975c', '65.154.226.169', '1678331622', '__ci_last_regenerate|i:1678331622;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ede70c23d5c1a46890993e80d78c8cd2418f6a73', '148.102.23.16', '1617888369', '__ci_last_regenerate|i:1617888151;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617827100\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000385\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf9fed653a64ae1f17e0c8dd3debc11', '181.67.2.242', '1687968130', '__ci_last_regenerate|i:1687968130;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edfbbade578c1cc0c4620993f3feeb95f3ff664f', '186.1.135.143', '1615919993', '__ci_last_regenerate|i:1615919024;local|s:1:\"1\";listaVenta|i:306;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee09f096aaed8d7a370aadda858c7301c77be2cb', '186.1.135.129', '1617827418', '__ci_last_regenerate|i:1617827041;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617809172\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee117589b3d873e3cd54d5a7bfccba88a77d8e81', '205.210.31.34', '1680406074', '__ci_last_regenerate|i:1680406074;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee1c8f0265c6f50bed528a6cb48ab54b2f6bd357', '186.1.135.143', '1615915253', '__ci_last_regenerate|i:1615914431;local|s:1:\"1\";listaVenta|i:190;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615901630\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2173340fb2e95836a8b16b278616b1f8fb4f4b', '183.136.225.44', '1688251021', '__ci_last_regenerate|i:1688251021;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2b0de7222f3a78a7346ab7981dfae1ceda2891', '179.6.222.7', '1616170292', '__ci_last_regenerate|i:1616170171;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616094960\";last_ip|s:14:\"190.237.172.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee307fc210718f9ad0bc0a11e1c7dce05f7b885d', '143.110.180.98', '1659145280', '__ci_last_regenerate|i:1659145280;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee48b2cbd4df84bcb9f881df8ab2b5ae13030951', '::1', '1598583845', '__ci_last_regenerate|i:1598583570;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4d248d9015c06aaa78e17585e7c06e80ff4978', '181.176.113.174', '1675870779', '__ci_last_regenerate|i:1675870752;local|s:1:\"1\";listaVenta|i:26;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1675778058\";last_ip|s:14:\"181.176.107.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee777c311e17c20f04549337610e924602dd81eb', '186.1.135.138', '1613062870', '__ci_last_regenerate|i:1613062569;local|s:1:\"1\";listaVenta|i:2348;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7db313947eb92b8616627f02b16fc5bda2221c', '54.176.188.51', '1618910140', '__ci_last_regenerate|i:1618910140;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee833a3518fc9c60d8f9f3f1d869538f01a3908a', '162.142.125.219', '1676951660', '__ci_last_regenerate|i:1676951660;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee90a4e157f1a8ea2778831e1be9073cdf49c311', '51.255.62.8', '1654335005', '__ci_last_regenerate|i:1654335005;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee945030876c2a87e845cdb9f224d0cc', '45.177.196.194', '1674848327', '__ci_last_regenerate|i:1674848327;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee96fd274572a38cd7b1166e111caa3064e99693', '186.1.135.135', '1612549897', '__ci_last_regenerate|i:1612549895;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee9f6246bd562be8f68b11f9e60276bbc899ca6e', '186.1.135.134', '1618595396', '__ci_last_regenerate|i:1618593902;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618589046\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eea97948cbf9a53052c4260a7616cc8ace17aa67', '161.35.182.139', '1654051225', '__ci_last_regenerate|i:1654051225;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb8fe8fbfaaf54a69b5ace07f5e31936d0827c0', '186.1.135.138', '1613054723', '__ci_last_regenerate|i:1613054154;local|s:1:\"1\";listaVenta|i:1893;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb9a686105a1a16be44836ed1d02093c31e3172', '148.102.26.11', '1621463386', '__ci_last_regenerate|i:1621463376;local|s:1:\"1\";listaVenta|i:231;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621450974\";last_ip|s:13:\"132.191.2.181\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec4c0c8c46661063bfe5c4a16e4f484e14f26c9', '186.1.135.147', '1613594460', '__ci_last_regenerate|i:1613594158;local|s:1:\"1\";listaVenta|i:203;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613579275\";last_ip|s:13:\"186.1.135.147\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeceb490c9ec9f65ee0db1aec0541b7808a6d1a7', '181.67.2.242', '1687995146', '__ci_last_regenerate|i:1687994892;local|s:1:\"1\";listaVenta|i:1818;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1687968167\";last_ip|s:12:\"181.67.2.242\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eecf2327c6e53b6430f366ced0264152f4adcda4', '205.210.31.163', '1680274462', '__ci_last_regenerate|i:1680274462;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed63cca80c1b288c7e7c6da77d76250071150ec', '51.158.103.247', '1665522739', '__ci_last_regenerate|i:1665522739;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed74a2e6c34e903c8d2322cdd5215c91f82a0bb', '183.136.225.45', '1692245238', '__ci_last_regenerate|i:1692245238;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeefe771c790ea2f64930bff54da137624e27d67', '186.1.135.149', '1616790274', '__ci_last_regenerate|i:1616790268;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616768418\";last_ip|s:13:\"186.1.135.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef5336be7a368101bf4c5f90fe656bfab671507', '18.184.155.204', '1617694830', '__ci_last_regenerate|i:1617694830;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef042235b8654bc30d17978290c147dcc506ea54', '159.89.168.53', '1671477087', '__ci_last_regenerate|i:1671477087;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef2262cc250f91be56d75100065ced09041ad18b', '181.67.49.46', '1677334303', '__ci_last_regenerate|i:1677334200;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1676649098\";last_ip|s:13:\"181.176.97.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef29c0e08b98619c6c6bb4d439a08580', '201.230.205.217', '1672884619', '__ci_last_regenerate|i:1672884619;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3af46681c7ed4477a6b5bfd96c9a0ea8093213', '162.142.125.226', '1680915620', '__ci_last_regenerate|i:1680915620;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef491067ac8bbe93bee0ae5dc18d42a8708d24f7', '186.1.135.129', '1618242333', '__ci_last_regenerate|i:1618242174;local|s:1:\"1\";listaVenta|i:129;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef4c0ad3b921a84cee4144477809cbade50998d4', '190.239.68.82', '1671552444', '__ci_last_regenerate|i:1671552358;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671410780\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef5f8adde94492379f6edec33abe922593cbc32d', '205.210.31.12', '1652517133', '__ci_last_regenerate|i:1652517133;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef733c147f698b725b3958d8d23aef4fc5ebc303', '101.199.254.231', '1678245825', '__ci_last_regenerate|i:1678245825;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8016e8d26df6861b7f23d5508384e618a21ed8', '47.254.25.10', '1696435199', '__ci_last_regenerate|i:1696435199;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8a6412c2886dcde99d9c2d41c50238dbf817ca', '190.43.38.134', '1621440647', '__ci_last_regenerate|i:1621440126;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620840076\";last_ip|s:12:\"181.64.57.12\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa0f714e371c4b64fc367921e9014ec8fa2db3e', '205.185.127.165', '1682233650', '__ci_last_regenerate|i:1682233650;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa4b98233687a8eba01553a0052ba81bfd04061', '186.1.135.130', '1617045970', '__ci_last_regenerate|i:1617045741;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbb3cda8598d53cf0f3b6b5faa11b96e7c2ad8b', '190.43.38.149', '1672297333', '__ci_last_regenerate|i:1672297263;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672284624\";last_ip|s:13:\"190.43.38.149\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efcfb7da7ab9847b27f55af8f551f1008cbc5073', '92.118.160.45', '1624087503', '__ci_last_regenerate|i:1624087503;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd8715afa76a64185be55611e0ff4ea9732d148', '148.102.26.11', '1620226117', '__ci_last_regenerate|i:1620225996;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efdbd1f92ad9a329118d4a95bfd28d15337cb06c', '201.230.205.217', '1671203188', '__ci_last_regenerate|i:1671203125;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671203064\";last_ip|s:15:\"201.230.205.217\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eff52fe8ee24fc54b3c3d136bd0f8b3868f0dbd6', '207.148.127.89', '1694415329', '__ci_last_regenerate|i:1694415329;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01f5abe0b09c60930c0877fe987ab0483dca757', '186.1.135.129', '1617812146', '__ci_last_regenerate|i:1617812010;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f025a9ec9ca174f500cf1dc9dd15d731bedd02cf', '175.24.232.97', '1623273693', '__ci_last_regenerate|i:1623273693;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f02d552a011ccf7b3adb705888c7a8cf3c3ebbd6', '128.199.217.136', '1686663434', '__ci_last_regenerate|i:1686663434;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f035bf2a94a324fb6fdadbf2a2e9a7836b4f0397', '51.158.98.24', '1675067689', '__ci_last_regenerate|i:1675067689;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f066337c7fd12259f661d59634927a222fdbd9d1', '148.102.23.16', '1619633879', '__ci_last_regenerate|i:1619633812;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619630873\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06cb91df92423454ceb02646bfc3efcf3fe5fc4', '3.94.250.16', '1696434586', '__ci_last_regenerate|i:1696434586;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07bca5f1fbc98c8004dd399f63f3da3b575b924', '205.210.31.128', '1681047012', '__ci_last_regenerate|i:1681047012;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07e5737450f283c8b48cf8ca76c620ae464e7a0', '190.237.34.224', '1684212615', '__ci_last_regenerate|i:1684212615;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681912822\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08c98c8554b9352f1e2eba15411cec39503fb04', '198.235.24.146', '1691305948', '__ci_last_regenerate|i:1691305948;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f091e99055aae286408430b665ad917373802351', '198.235.24.246', '1695809355', '__ci_last_regenerate|i:1695809355;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0b8eb94571a99657b28cd13595427ad32eb0398', '18.231.135.101', '1621721120', '__ci_last_regenerate|i:1621721120;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d3b7b04bb9397fef6deab8f408bb3f4860d2ea', '162.142.125.215', '1691398523', '__ci_last_regenerate|i:1691398523;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d400c0d745007f14b989e27fdaa377d4f496e8', '54.77.172.194', '1635542187', '__ci_last_regenerate|i:1635542187;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ef328ea50f7895edd8592a1c4c0c211ab19af8', '190.237.172.147', '1614097209', '__ci_last_regenerate|i:1614097209;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0efb2529b1ec2bedbeded04b7fb93cd4135566e', '190.237.172.53', '1616178842', '__ci_last_regenerate|i:1616178542;local|s:1:\"1\";listaVenta|i:499;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616166389\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f9d168ca7d5eec626b51af7407f0d77da6a929', '148.102.26.11', '1621609722', '__ci_last_regenerate|i:1621609721;local|s:1:\"1\";listaVenta|i:736;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621549244\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10351050454a4cbed89e72e747605d5e55a7289', '179.6.222.7', '1617119869', '__ci_last_regenerate|i:1617119866;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617024353\";last_ip|s:13:\"186.1.135.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000353\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1140da0366bdf69f68a8d47678d419657b658bf', '198.235.24.178', '1683262733', '__ci_last_regenerate|i:1683262733;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f12f1e0a253b544adebcbf8761729106520ce503', '92.118.160.17', '1635780471', '__ci_last_regenerate|i:1635780471;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1368721beacf7030fa8bac35f8205bde5836439', '87.236.176.176', '1693064265', '__ci_last_regenerate|i:1693064264;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f159e429d92fbe326d831495deab36db9aacb43f', '148.102.26.11', '1620249614', '__ci_last_regenerate|i:1620249602;local|s:1:\"1\";listaVenta|i:26;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620223665\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16bdeb5f1c34e8b5ed8bb52d626515b6691db01', '186.1.135.66', '1616436484', '__ci_last_regenerate|i:1616435636;local|s:1:\"1\";listaVenta|i:628;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616423078\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f17bd9baf733eebcfdf17db7d659b40882f55aff', '47.242.105.176', '1683204799', '__ci_last_regenerate|i:1683204798;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f186693353dc2e0a8d087ea746c9747ce41a3a35', '179.6.212.129', '1615296550', '__ci_last_regenerate|i:1615296487;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615234844\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1956082b678adff11d9fe7ab4cadc8c3ec0baf4', '148.102.26.11', '1621019767', '__ci_last_regenerate|i:1621019158;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621002037\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f198feaaf3b43d3422ba404390bdc75b774a716f', '186.1.135.133', '1612190829', '__ci_last_regenerate|i:1612190315;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611937040\";last_ip|s:12:\"186.1.135.79\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"3rixu7cDtVqRtepNZvbqbfsh7n5yF7zeFhxYL32KnFEgS27GpNknMrgHid1M0gcRC5eSxiMbx7gA5wK9EhZMMA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1993962a09cc2507bd80bbed3bb33791b1d6c00', '159.223.206.94', '1695271487', '__ci_last_regenerate|i:1695271487;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ad403e33248c8ad95bb27ebca3ae5e5378fb03', '54.233.133.239', '1622221734', '__ci_last_regenerate|i:1622221734;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b0a53208d8251a56932cfc236ab6b7f80cdfc6', '180.163.220.100', '1678594521', '__ci_last_regenerate|i:1678594521;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b57c35d06268759234d386f1912d8c7aae8aa5', '190.237.172.53', '1616176083', '__ci_last_regenerate|i:1616175708;local|s:1:\"1\";listaVenta|i:320;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616166389\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b93977ae76d470aba04307ebfce5e28a88ca35', '132.184.128.153', '1611887536', '__ci_last_regenerate|i:1611887536;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611873785\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iFwaB9WtYecZQc0sJN6dqHzKffXImcSbUdxnZwXuNK6Oi/mfy5SMhfVyvJw1G4Cg1QIdnR2U18rwhV4FGDopSw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ba78b22b0c3096b29eb2d436c7699d6f4a4ded', '34.71.227.84', '1656041413', '__ci_last_regenerate|i:1656041413;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c51cfc4cef76bec78579b488f1d2a68793de5e', '205.210.31.132', '1659255587', '__ci_last_regenerate|i:1659255587;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1d6c9160c14fb136800da86999dc4e667ef2f94', '198.235.24.34', '1668222826', '__ci_last_regenerate|i:1668222826;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1d952e875fb69ee2422d41cf12e7cb33e7715a5', '198.235.24.55', '1698371598', '__ci_last_regenerate|i:1698371598;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1da7852a308ac72be01f6836220748c0d72fbd4', '34.247.136.3', '1691283555', '__ci_last_regenerate|i:1691283555;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1e203f1401d14d28b515a0feb167fdc09636401', '47.89.193.162', '1676562933', '__ci_last_regenerate|i:1676562933;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ed7cd585b7d1337bc3eea6e1e6bd9461fa7455', '148.102.26.11', '1619197195', '__ci_last_regenerate|i:1619197076;local|s:1:\"1\";listaVenta|i:2991;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619016309\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ee7fe5f9b110002d276755ae57187a6c4e05e6', '162.142.125.221', '1656611164', '__ci_last_regenerate|i:1656611164;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f28df8f26bd5840de979da391975d9c62f5b97', '190.235.15.24', '1618853911', '__ci_last_regenerate|i:1618853909;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1618503090\";last_ip|s:15:\"132.184.129.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f974e4f4636e6c45771d1f0841257af42ce144', '185.195.233.248', '1680586544', '__ci_last_regenerate|i:1680586544;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f990a7d76a8b6debec37e5305d097b15740b32', '18.228.204.175', '1622434108', '__ci_last_regenerate|i:1622434108;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21795ff7a6f58ce3068a34a9a1ce028', '161.132.234.14', '1624914782', '__ci_last_regenerate|i:1624914782;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623692820\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21cd5d0759a627b371863265212490b9832aae2', '186.1.135.130', '1617043569', '__ci_last_regenerate|i:1617043569;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23114f27cbe2433de52d9f2cac1d3831043376c', '34.194.68.222', '1669011146', '__ci_last_regenerate|i:1669011146;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2322d554127ae5e8977d04ea3d12da6ea635806', '34.238.161.137', '1654293238', '__ci_last_regenerate|i:1654293237;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2427a1b14afdd5fa3da004715ff01cd712dd553', '148.102.23.16', '1620154094', '__ci_last_regenerate|i:1620154094;local|s:1:\"1\";listaVenta|i:393;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620072748\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f251d08a482415567f7f401528ce0f59eb7edff2', '183.136.225.45', '1692152277', '__ci_last_regenerate|i:1692152277;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f257d6853fa15ba6685c0120d7442fe5c8f97007', '201.230.205.189', '1681784129', '__ci_last_regenerate|i:1681783856;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1681415550\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f278e4a97b1650b1c08bde1feb4ccb0c0ddc1a44', '190.232.180.131', '1612558866', '__ci_last_regenerate|i:1612558850;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612541361\";last_ip|s:15:\"132.184.130.166\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f286b9c99f5a22b9396a6db9daa0172ea78c3106', '92.118.160.5', '1629652636', '__ci_last_regenerate|i:1629652636;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29ef48d6d02f359a46cb560eae88578f5a0f506', '::1', '1598569785', '__ci_last_regenerate|i:1598569545;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598362856\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c0363ab1c28cb885405ba4557ed9a3951cc5af', '161.132.234.14', '1627102762', '__ci_last_regenerate|i:1627102751;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1626235366\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c56253deade4562e9ea8bb235d569a0b7e12a0', '186.1.135.129', '1618238308', '__ci_last_regenerate|i:1618238052;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d0d3041eac162ac6847064bb5c794215254f50', '186.1.135.76', '1612361549', '__ci_last_regenerate|i:1612361359;local|s:1:\"1\";listaVenta|i:104;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612299033\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2dbf071b9806c5980596899516555c23d49be4e', '104.198.240.71', '1655915068', '__ci_last_regenerate|i:1655915068;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2dd750d93c4c08ebd0887512d01e1eb585586dd', '186.1.135.141', '1613416728', '__ci_last_regenerate|i:1613416715;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613416541\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3059d271c993e3a9a405f38b05733e2060b1db5', '186.1.135.129', '1617829853', '__ci_last_regenerate|i:1617829552;local|s:1:\"1\";listaVenta|i:133;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617809172\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30894e16943d5c2c27c452bce0ac3ba3a574226', '207.148.127.89', '1694391513', '__ci_last_regenerate|i:1694391513;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f314e2465ff3e7fff8f4da3ec78b3c5f47d74a87', '186.1.135.129', '1618234765', '__ci_last_regenerate|i:1618234765;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618062389\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f319ad78b8822221be9971faae301a60f7ec46d6', '186.1.135.150', '1613165889', '__ci_last_regenerate|i:1613165889;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f329b2a0f7216ff8f35974fc5368c54a9d38e7c8', '38.25.7.251', '1652969514', '__ci_last_regenerate|i:1652969514;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3338d4eda9b863ca9938cea7c2069791e443823', '18.193.79.229', '1673987951', '__ci_last_regenerate|i:1673987951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3409f2d5b526bdb86f87790d75440025537ee70', '201.230.81.79', '1619632117', '__ci_last_regenerate|i:1619632116;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f353616872f187fc0f3d2c5201ddeae87f470e02', '181.64.57.12', '1620756515', '__ci_last_regenerate|i:1620756477;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1620756484\";last_ip|s:14:\"190.237.30.221\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3546cf696c02f5cadd6e22d443de5354813a155', '186.1.135.129', '1617816986', '__ci_last_regenerate|i:1617816752;local|s:1:\"1\";listaVenta|i:77;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f35649c646bf02d44105e59776f0228661a706d6', '205.210.31.31', '1652607399', '__ci_last_regenerate|i:1652607399;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f358c1e49add49260dc1804783c36964fc67bb7f', '148.102.26.11', '1619454283', '__ci_last_regenerate|i:1619454283;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619443986\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f35b4f50ca3fa652620561e87f51b3b5f9099ba4', '183.136.225.45', '1694883250', '__ci_last_regenerate|i:1694883250;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f36114eb81a392ab04b5137591b8d55543dfd1a9', '179.6.222.7', '1616979212', '__ci_last_regenerate|i:1616979126;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616883469\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f36e2896e24d03e92d1315e78fc5845465e1e885', '162.142.125.41', '1636693497', '__ci_last_regenerate|i:1636693497;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3719d8712e54f5fb5bf436389aefc2f91400581', '190.237.172.96', '1616856605', '__ci_last_regenerate|i:1616856605;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616847991\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37def1c44cd4132b0626c085007943e685cecbb', '207.148.127.89', '1694362909', '__ci_last_regenerate|i:1694362909;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37e979777f48efeb1d81f0a4a38cafda9f25bb6', '148.102.26.11', '1620666562', '__ci_last_regenerate|i:1620666270;local|s:1:\"1\";listaVenta|i:76;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620666024\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f38e30160cca6bad0c4939b36efe8719a75c2db2', '206.189.28.149', '1676522775', '__ci_last_regenerate|i:1676522775;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b3aefb3c16c964b3474eb8d80ecef0ad377c1a', '186.1.135.129', '1617804420', '__ci_last_regenerate|i:1617802971;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617802997\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b8ab15537004e7e0361bfc54ae791d68547102', '92.118.160.9', '1613927512', '__ci_last_regenerate|i:1613927512;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3bcb7c239ba26e6cbec6183941a2f7b44c9dbdf', '198.235.24.56', '1679817235', '__ci_last_regenerate|i:1679817235;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c045def11c1c9988f1a47cbd5c4c28a41ddbe4', '181.67.2.242', '1688140540', '__ci_last_regenerate|i:1688140167;local|s:1:\"1\";listaVenta|i:32;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688095277\";last_ip|s:14:\"190.234.141.82\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3cecdd71321071eacd63dec618d298cf400afc2', '205.210.31.17', '1663640338', '__ci_last_regenerate|i:1663640338;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3dc7f759c1250398c7885fa32a3e015767a3335', '162.142.125.9', '1661700818', '__ci_last_regenerate|i:1661700818;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3fc07c9b14af3bd725ece6cf8fce41b078e9b4c', '186.1.135.135', '1612541826', '__ci_last_regenerate|i:1612541825;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f402577173ef2f3d940ca5bed12a854e1f8a2c15', '54.153.86.53', '1684060498', '__ci_last_regenerate|i:1684060498;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f406b8b2cf4b53dc01404521b93d305179eee8a6', '18.231.94.162', '1617792704', '__ci_last_regenerate|i:1617792704;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40e9a77ed32235c3ca236c92eb089cafd6fdc67', '18.231.147.40', '1622275680', '__ci_last_regenerate|i:1622275680;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f420c2c820f14d8dd39b5f06413b3ed541b308a1', '70.38.10.156', '1690877296', '__ci_last_regenerate|i:1690877296;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42459c07fcd61529590bdd8cd652d5ecaa15286', '13.232.96.15', '1623043338', '__ci_last_regenerate|i:1623043338;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4307c502b65974193f66e1de00c03817695732c', '92.118.160.13', '1635590831', '__ci_last_regenerate|i:1635590831;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44ab40ec9bd1541fc76111b02e2b3625a859f11', '181.64.18.3', '1619197414', '__ci_last_regenerate|i:1619197414;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44aecfab35e407279a4b427b98ab4815d38dc18', '148.102.26.11', '1620836427', '__ci_last_regenerate|i:1620836284;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620836321\";last_ip|s:13:\"190.239.71.47\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44f80cd3198a915acc056f663fad7d22476828f', '157.245.52.110', '1667675105', '__ci_last_regenerate|i:1667675105;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4564577c0f3a0747c88dd1cbdf2cd810eb62262', '167.94.138.60', '1637544796', '__ci_last_regenerate|i:1637544796;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4753601984de9d52c4ad8457e2c0e7b1aa250aa', '35.238.28.10', '1655475882', '__ci_last_regenerate|i:1655475882;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4925c1ea371127e97ba25667ebe62deb0074d1e', '148.102.23.16', '1619632733', '__ci_last_regenerate|i:1619632727;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619630873\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4972ff8ebedd481498c9ed1cc6ac91ab1eaad79', '167.94.138.52', '1695116951', '__ci_last_regenerate|i:1695116951;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49856ba5bc74dba7a34ecd4cb615e6e4bc47803', '186.1.135.129', '1618243392', '__ci_last_regenerate|i:1618243092;local|s:1:\"1\";listaVenta|i:226;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49dbf0efe6de321a4019e5e822d45c601569ee1', '186.1.135.143', '1615910643', '__ci_last_regenerate|i:1615910594;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49fa4dab9e9a90a9a3dfdfe7318f637c96e6725', '198.235.24.31', '1655825292', '__ci_last_regenerate|i:1655825292;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4ad015c7633136a83a26cbe03dc22b56db7d45a', '162.142.125.210', '1654268091', '__ci_last_regenerate|i:1654268091;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4bff3626ad639420bb97cbec44596c132749623', '132.184.129.65', '1611948965', '__ci_last_regenerate|i:1611948964;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4c8ffe4f7040bb2082443864b0cbcb9cc6e5d63', '::1', '1598578182', '__ci_last_regenerate|i:1598577936;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575632\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4da1b73ee9e7778dad102630865f1f4a5d852bd', '146.112.244.227', '1622579118', '__ci_last_regenerate|i:1622579017;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622572881\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f541fc6315cc61477c83c4756fbb3795e4f62d', '183.136.225.44', '1688233801', '__ci_last_regenerate|i:1688233800;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f88fdd0ba28744ffe8e3f085a6f2c55f52bff0', '186.1.135.141', '1617198505', '__ci_last_regenerate|i:1617198209;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4fed23c2c014cf76dac97e95378d2b9f0a53c57', '167.248.133.187', '1691402890', '__ci_last_regenerate|i:1691402890;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f506c89fe44620e9307142148d5747c9e11d3245', '186.1.135.129', '1618246183', '__ci_last_regenerate|i:1618245912;local|s:1:\"1\";listaVenta|i:670;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000400\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f530dc75e95a7953798f2e6ccd8c6324b3526583', '205.210.31.92', '1697530442', '__ci_last_regenerate|i:1697530442;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53bd8fae684c9e3fbe5332ba6b20fccdfaaeec1', '38.25.16.150', '1670901103', '__ci_last_regenerate|i:1670901098;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670874527\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f549def354b4ef566a6f2e4f5a36028b9df627a6', '138.68.164.160', '1692856583', '__ci_last_regenerate|i:1692856582;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54cde5b692bf00dd49975594f5e0919bf292939', '148.102.26.11', '1620245696', '__ci_last_regenerate|i:1620245543;local|s:1:\"1\";listaVenta|i:26;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620223665\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f553d45ab056bffe47e479c691382bea5e2a3eec', '167.94.138.33', '1681998971', '__ci_last_regenerate|i:1681998971;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f575b1fe6367e43d65d15d081a054f661e653ee5', '132.184.128.153', '1611889103', '__ci_last_regenerate|i:1611888943;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1611888421\";last_ip|s:15:\"132.184.128.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"Xp5cVOhjMyfyAhwJzXJzJIvI0YLq7HxTgPRMBZbUWTg0qwgVVnOzNMn5lHrqewu3i/Flt7Z032Yl89x0bJehDg==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:12:\"Ur7NTG9hrdzE\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f58aceee90c219146b5f21f110c77d1668d497cd', '65.154.226.170', '1683178921', '__ci_last_regenerate|i:1683178920;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f59c1770aee5082823ece970bab633f817b41430', '186.1.135.153', '1618411375', '__ci_last_regenerate|i:1618411022;local|s:1:\"1\";listaVenta|i:50;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618347322\";last_ip|s:13:\"186.1.135.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a7e67121fbfdffad6b20930cdcda692c8661aa', '209.126.77.66', '1674012587', '__ci_last_regenerate|i:1674012587;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a9d9c353ca056ffb6c3d2b535660945f154937', '186.1.135.135', '1617801899', '__ci_last_regenerate|i:1617801896;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617746932\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000379\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5aae48349d436d2b857c867856038ecdaff3158', '18.230.190.54', '1611594974', '__ci_last_regenerate|i:1611594973;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b604ed0d9fb60d995eb891fbf0f44315a274c4', '54.94.57.144', '1612325619', '__ci_last_regenerate|i:1612325618;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5bbb996fc0c242a4e5e1cd3de4a289cd1d77f30', '18.230.119.195', '1622625152', '__ci_last_regenerate|i:1622625152;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5bbf11ab31e2584fdc02096ec36d73b37b186db', '148.102.26.11', '1619718665', '__ci_last_regenerate|i:1619718288;local|s:1:\"1\";listaVenta|i:463;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619631623\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c2e6551f198862837c241cbb57d9a450a1d011', '51.158.118.231', '1632179876', '__ci_last_regenerate|i:1632179876;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c67772a14d5aecac4580dad6214ff861793222', '162.142.125.212', '1670684159', '__ci_last_regenerate|i:1670684159;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5cfdf2b25be20313fe6b7b86f4177062c4e2d3e', '190.237.172.147', '1613212503', '__ci_last_regenerate|i:1613212461;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613161553\";last_ip|s:13:\"186.1.135.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5de841f3b3dad0d681e7c6e2f0898dcdbb2f21c', '45.225.216.152', '1625121233', '__ci_last_regenerate|i:1625121232;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1625060675\";last_ip|s:14:\"45.225.216.152\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5de927d4bf766cbffa23b519688f656c8f84895', '34.86.35.14', '1635238657', '__ci_last_regenerate|i:1635238657;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f0cf36fb37c297d9f8e266709fd3f8301a2c72', '205.210.31.178', '1663202014', '__ci_last_regenerate|i:1663202014;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f330854a061a618d3afc3c90d73692124054ef', '190.237.172.53', '1616176143', '__ci_last_regenerate|i:1616176083;local|s:1:\"1\";listaVenta|i:320;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616166389\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f6df409404944a22bbc6165c5b0a1ff64af5bc', '198.235.24.137', '1655299401', '__ci_last_regenerate|i:1655299401;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5fc7b73171de2522df8ff58b135726a9d2db488', '148.102.26.11', '1620233885', '__ci_last_regenerate|i:1620231507;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f60d86291fae94e1820cc9b5a188cc938ebb4d63', '190.43.38.246', '1628871069', '__ci_last_regenerate|i:1628870828;local|s:1:\"1\";listaVenta|i:271;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1628362077\";last_ip|s:15:\"161.132.238.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"JQKre9ShR3TwnLeDFc7grwOFP/Ax6RABJK77iZSlZNj91impLMSaRJmGrZqlVZFnQ8WnCJK5yOtO293t6ZBOhA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f61efc5ff3ac951f9fdabe365db60575c8ee1e23', '205.210.31.13', '1655934726', '__ci_last_regenerate|i:1655934726;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f622870f373c4419d67b447507384ccd42d21131', '186.1.135.141', '1617212918', '__ci_last_regenerate|i:1617212783;local|s:1:\"1\";listaVenta|i:1155;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1617137976\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000369\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f63293c38396e485ae5696b8bdef84c54e307c73', '186.1.135.150', '1613136621', '__ci_last_regenerate|i:1613136553;local|s:1:\"1\";listaVenta|i:221;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613047424\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66567fd2aba74c337c2d33c1256cf2f0cb83661', '201.230.205.208', '1694653470', '__ci_last_regenerate|i:1694653469;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1692975151\";last_ip|s:12:\"38.25.16.184\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f682dd2b30c6b81b0d0660ed876929acfbfec56f', '207.241.235.249', '1676519427', '__ci_last_regenerate|i:1676519427;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6839212cdc1864f8203776d8cf8cf8144026ad9', '148.102.26.11', '1620228297', '__ci_last_regenerate|i:1620227984;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620143836\";last_ip|s:13:\"190.239.66.67\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6945663b82d7fbff544f3a0316e0c6102edefb1', '38.25.16.150', '1672272132', '__ci_last_regenerate|i:1672272119;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672264133\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f698cccbaab37db2f378325d25381e90f15d592e', '92.118.160.17', '1629489749', '__ci_last_regenerate|i:1629489749;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69dfb89cd59bdb78817c8a8031210e54fbc82c9', '186.1.135.158', '1612881908', '__ci_last_regenerate|i:1612881908;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612878149\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b2eb4d802870e9f8bce41082a0ec62dae93dc7', '186.1.135.134', '1612799109', '__ci_last_regenerate|i:1612798824;local|s:1:\"1\";listaVenta|i:220;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612560528\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6bb7594663202f1688d8b7c65fec419c68ea6da', '167.248.133.51', '1691099361', '__ci_last_regenerate|i:1691099361;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c75bbecd49a1bdd174527d41c896b3949b5f32', '92.118.160.1', '1634384184', '__ci_last_regenerate|i:1634384184;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d88ee126436d025f63ee8764d7a56b6a3d50fb', '148.102.26.11', '1619444258', '__ci_last_regenerate|i:1619443981;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619211697\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6dae744eab9f1846f26dac972e2948da5510adc', '134.175.228.189', '1636156575', '__ci_last_regenerate|i:1636156575;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6dbf1d266818b51131f3060bb2dde8d7f62ff77', '92.118.160.45', '1630310384', '__ci_last_regenerate|i:1630310384;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e3842ce53bbd949335f0cacbbb92a456b75c5e', '38.25.16.150', '1670989371', '__ci_last_regenerate|i:1670989362;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1670943321\";last_ip|s:14:\"45.177.196.194\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e555cb8ec805f6d5b3682498a587480e9eeb03', '186.1.135.134', '1612819590', '__ci_last_regenerate|i:1612819343;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612813482\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e5d0ee68a226c8779db8bfabcf2026cca8b138', '167.248.133.62', '1656868339', '__ci_last_regenerate|i:1656868339;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6eae690449054d42a9e6362c79ba029fe3f5b6d', '167.248.133.118', '1672584774', '__ci_last_regenerate|i:1672584774;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6f258af5cae6345b134638266210ce545838b5a', '190.43.38.134', '1621693780', '__ci_last_regenerate|i:1621693482;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1621543604\";last_ip|s:13:\"190.233.5.229\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f702cf62f7848c2deee46987fa5282019d97695d', '144.91.106.14', '1690768648', '__ci_last_regenerate|i:1690768648;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f716b5881d09b5596ddcdba1edeb728e8073a6ce', '18.230.188.58', '1611232393', '__ci_last_regenerate|i:1611232393;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f71a88b71ce89434559f91df12319ffa94d62c64', '18.231.127.206', '1622027980', '__ci_last_regenerate|i:1622027980;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7201e48f579ce5805b20ae71160563976a13aaf', '205.210.31.25', '1659356490', '__ci_last_regenerate|i:1659356490;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72136ca51653268258424ab4b1baf65bf4b8438', '132.184.128.169', '1612231947', '__ci_last_regenerate|i:1612231896;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612231264\";last_ip|s:15:\"190.237.243.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72675cec9990befc0b687346709defe3cf63d78', '121.5.103.58', '1628956864', '__ci_last_regenerate|i:1628956864;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f727a8105b319f9019c703302c4743018572bce2', '186.1.135.137', '1614199397', '__ci_last_regenerate|i:1614199383;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614177537\";last_ip|s:13:\"186.1.135.137\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f73208590f6d9d202acca060d563e0804b24d11a', '64.225.10.172', '1697109851', '__ci_last_regenerate|i:1697109851;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f73286e84ae0c4e5013a84bec76ba2cba87144d5', '181.67.2.234', '1688753240', '__ci_last_regenerate|i:1688753240;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1688698878\";last_ip|s:12:\"181.67.2.234\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f742ac936f0e1e45f662217c029f4ec047905fa5', '190.239.78.92', '1620658357', '__ci_last_regenerate|i:1620658141;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7454ad4d034c6699a97931a0259ab5fc713723f', '101.199.254.235', '1677871972', '__ci_last_regenerate|i:1677871972;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f748b11393f96b3a2f662df6434e1990fb79a447', '186.1.135.131', '1618344089', '__ci_last_regenerate|i:1618342967;local|s:1:\"1\";listaVenta|i:146;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f75a9eb1db114d87104590d8974dd8bd597f76c3', '142.54.177.164', '1652501274', '__ci_last_regenerate|i:1652501273;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76a9cd7e6036ccc281b5ee1efc75139522f8fe9', '186.1.135.153', '1618411870', '__ci_last_regenerate|i:1618411870;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f787294eb5b30c21cabc5ff431f3bf6aad0e9a09', '199.203.59.201', '1688330721', '__ci_last_regenerate|i:1688330721;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f79a314d545f99f97b078bf12acbfb2109aa959b', '128.199.243.74', '1667800737', '__ci_last_regenerate|i:1667800737;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f79b549160650bf6580771b3d17bd31722d2f761', '186.1.135.129', '1618236978', '__ci_last_regenerate|i:1618236705;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618233925\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a3bb9668bd8b3905aa7b73d6ef63796d26abcf', '181.64.18.180', '1634584272', '__ci_last_regenerate|i:1634584244;local|s:1:\"1\";listaVenta|i:3;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1634414864\";last_ip|s:13:\"181.64.18.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a4a3e30ad60ea6dd079be5a61f41f8b75f4ac9', '148.102.26.11', '1621536656', '__ci_last_regenerate|i:1621536656;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c0689d7f7f1a9991c11057d41a54505ef7fb77', '190.239.78.92', '1620667521', '__ci_last_regenerate|i:1620667272;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d067b0a9c5c16e28f0a0703f5dc587a0787942', '35.223.164.204', '1656371566', '__ci_last_regenerate|i:1656371566;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d777db44b5d9638457b5ba1d9f9402fa04dafb', '198.235.24.55', '1698728307', '__ci_last_regenerate|i:1698728307;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d9e5003877c8e569e278519b50fe68c0adc95f', '186.1.135.138', '1613063498', '__ci_last_regenerate|i:1613063212;local|s:1:\"1\";listaVenta|i:2529;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e283af45da54df84a3d60dc2e2d764fed53b54', '18.136.72.135', '1619191323', '__ci_last_regenerate|i:1619191323;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7s9j9kt2s68d1rsqbu9nd64pv', '::1', '1598575632', '__ci_last_regenerate|i:1598575632;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f805f49f352540df91166b6005602c36ee5e5ccc', '34.244.44.68', '1688020421', '__ci_last_regenerate|i:1688020421;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f818e3d517ae3838f0e02c8ddacbf6645ef471ac', '118.24.106.70', '1628794357', '__ci_last_regenerate|i:1628794357;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82259fc5726a443a7f9cccedd05d529564aae1e', '34.77.162.13', '1623762442', '__ci_last_regenerate|i:1623762442;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82579d10f73b281ba3edc5a0a895ea6d3d79e4a', '161.35.224.235', '1696575269', '__ci_last_regenerate|i:1696575269;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f84735e78e07c8444ab0c4498608deff004e28f8', '38.25.7.99', '1653955640', '__ci_last_regenerate|i:1653955632;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1652909731\";last_ip|s:11:\"38.25.7.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f848f0e8e00a012f4ccce663fbc84be539954b6d', '161.132.234.14', '1623332820', '__ci_last_regenerate|i:1623332594;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1623283203\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f85891c669fe7e867bd46489ff1e8f5d7ab2331f', '181.192.1.15', '1659539833', '__ci_last_regenerate|i:1659539833;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8809495062253638c0a0cee7a02d82ee9f3851d', '205.210.31.17', '1663640337', '__ci_last_regenerate|i:1663640337;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f883958603fa6a3a8b4786f6ca4a2c947c225f56', '190.236.24.150', '1611077102', '__ci_last_regenerate|i:1611076829;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598834103\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"Dyy60hamyB5kR4ghDgHuAoYOWgK+OKWtNGgoOswAU2v4uhKE3LRY8tqTXq730/+WTAIa0YEPcgEQFTk8Ym0RIQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8905ee44afdfce48cdc4a4000ed857b02782224', '89.163.190.203', '1633046309', '__ci_last_regenerate|i:1633046308;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ab8f905733585547e56dfee223bd4b85ced87c', '::1', '1598611000', '__ci_last_regenerate|i:1598610940;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bafb57d81a60e423b19b4c4d7662808e5cb3f7', '190.237.172.53', '1616099708', '__ci_last_regenerate|i:1616099582;local|s:1:\"1\";listaVenta|i:758;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616082515\";last_ip|s:13:\"190.239.70.53\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000318\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c0b740a316e090752803eb96a99f0d2b9cd4d3', '18.230.131.155', '1611417971', '__ci_last_regenerate|i:1611417971;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c28cc6a89970a69f2caab7ff806cb2c6695158', '167.248.133.124', '1694804558', '__ci_last_regenerate|i:1694804558;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d67e7a91648975d5a0d323dfbdb2dd34e422c7', '186.1.135.143', '1615398170', '__ci_last_regenerate|i:1615397772;local|s:1:\"1\";listaVenta|i:15;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615322288\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ec78a918a753108c9193eefb87198f7882b34e', '::1', '1598363724', '__ci_last_regenerate|i:1598363515;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598339373\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8f8851ef60b257b221ae49aef607faa2a40fea7', '181.67.2.242', '1688061303', '__ci_last_regenerate|i:1688061303;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ff719c095301d568a6d82c4ab53d02f25ee3c2', '186.1.135.135', '1612536374', '__ci_last_regenerate|i:1612536333;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9071e5d4df6cc424f1d80c80781a5887850b921', '181.176.117.171', '1675261431', '__ci_last_regenerate|i:1675261431;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90e089157b055539b1fbe298529a29563721556', '186.1.135.66', '1616438225', '__ci_last_regenerate|i:1616437723;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437373\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f925b0fba4b0ca47a47c467d6bc74fc722a3e58b', '186.1.135.154', '1618516745', '__ci_last_regenerate|i:1618516704;local|s:1:\"1\";listaVenta|i:309;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618414864\";last_ip|s:13:\"186.1.135.153\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f93fa6ef69b306f7cc6562d73e13dc5b30f7b482', '138.68.133.118', '1683172266', '__ci_last_regenerate|i:1683172266;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f941baff6aa08627aaa7148cf26439a8686482ec', '54.233.119.128', '1622258124', '__ci_last_regenerate|i:1622258123;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9450a3ebd4af713e2bf1621b9115b6d2bef5f7c', '162.142.125.222', '1665414075', '__ci_last_regenerate|i:1665414075;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f952a721a45bb43ff252d49d0a6b8570b03603cd', '87.236.176.34', '1679751713', '__ci_last_regenerate|i:1679751713;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9595af29b5571f46f2d92931dd9bf985faab311', '52.64.20.252', '1618572520', '__ci_last_regenerate|i:1618572520;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f96cf67477001f9a0438e62f0043e27f674f1a1c', '190.232.180.131', '1612815380', '__ci_last_regenerate|i:1612815319;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1612798667\";last_ip|s:15:\"190.232.180.131\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9913f2388eda2c3d999078b844b5ff2905b8a23', '52.15.212.3', '1620110194', '__ci_last_regenerate|i:1620110194;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f994685738dcf0cc4316e7486bcce9b75876fc10', '51.255.62.15', '1669065654', '__ci_last_regenerate|i:1669065654;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f994d1f5f75593ce01d85570e4777526f03d66e8', '18.231.65.163', '1611174084', '__ci_last_regenerate|i:1611174083;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f997378ac78f4f30d0b2a0e8629249259c0d9755', '186.1.135.137', '1614174159', '__ci_last_regenerate|i:1614173733;local|s:1:\"1\";listaVenta|i:122;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1614113393\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9abc38da50d6f5a08f36235d83f8e35', '161.132.234.14', '1624914793', '__ci_last_regenerate|i:1624914793;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c5ad07648288a5d3b8fda3b8565a0eda3b51f9', '186.1.135.129', '1618247241', '__ci_last_regenerate|i:1618247206;local|s:1:\"1\";listaVenta|i:670;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d6731d0880a8000b53bafed159228b074a7ac7', '190.239.192.47', '1622560351', '__ci_last_regenerate|i:1622560317;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622500495\";last_ip|s:14:\"45.225.216.151\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9db263f557a65d8762a77e1727c70af7469d49d', '198.235.24.43', '1681585517', '__ci_last_regenerate|i:1681585517;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e6dced4816c3eeb317edb66798a90e609d169f', '40.94.31.8', '1676346779', '__ci_last_regenerate|i:1676346735;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e80e2273176f11063414f481c65bba3b2f1abf', '201.230.205.217', '1672972931', '__ci_last_regenerate|i:1672972931;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672963620\";last_ip|s:11:\"38.25.16.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f3cab561ea1538d7e7f8d5f23132106edb2735', '205.210.31.162', '1693808575', '__ci_last_regenerate|i:1693808575;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa02c5381b1177eb2ec6592baa3603e9fe6698ee', '205.210.31.27', '1658558900', '__ci_last_regenerate|i:1658558900;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa07c56ea2b602008e224f573cd0daae7a803c2a', '198.235.24.37', '1697364135', '__ci_last_regenerate|i:1697364135;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa09c18b6d6d6fc8e364b71c543c3eeb6799e6a3', '186.1.135.134', '1615830686', '__ci_last_regenerate|i:1615830686;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615580526\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa28ad272bd661cde410c9236504eb923e9d46ad', '54.207.7.48', '1621872541', '__ci_last_regenerate|i:1621872541;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa448c56a1121ae60419f9035ab16017566b0e35', '190.235.15.24', '1618853378', '__ci_last_regenerate|i:1618853151;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1618503090\";last_ip|s:15:\"132.184.129.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa45849c2a820d823b6cd1965077b7a6899cb6f9', '186.1.135.129', '1618245911', '__ci_last_regenerate|i:1618245011;local|s:1:\"1\";listaVenta|i:670;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618236317\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa51e9045d4af4b9ca51423921f57707444f93c3', '144.91.106.14', '1655994065', '__ci_last_regenerate|i:1655994065;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa56e423367fa2513fc34802b3b105ad1b233675', '167.248.133.124', '1689059540', '__ci_last_regenerate|i:1689059540;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5b08d7c2ec8b33947f75dfdc6a6ca5cf1d8488', '205.210.31.25', '1663550326', '__ci_last_regenerate|i:1663550326;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa80a5b6b296a1329a9fbdd7821e1f4a3f28ce22', '103.153.68.244', '1661397027', '__ci_last_regenerate|i:1661397027;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa9a71dbd32345cf4b82c7f0533b0c303431f8a1', '209.17.97.122', '1611585073', '__ci_last_regenerate|i:1611585073;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faaad691f2afc58ff59183a7b57298d64007c875', '205.210.31.57', '1695610205', '__ci_last_regenerate|i:1695610205;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('facbf169468c0038a63d5c8af69915358c2e5d30', '35.202.219.132', '1655974035', '__ci_last_regenerate|i:1655974029;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad01da167e01022def836a718a4b52f62e8ed22', '186.1.135.146', '1614029539', '__ci_last_regenerate|i:1614029539;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad2eb90008882af5ae2b82de994140c7259347e', '38.25.16.150', '1672112461', '__ci_last_regenerate|i:1672112255;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671740108\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fadc00dffffab170d559c33e5f323be6e367ab2b', '190.237.30.46', '1622158840', '__ci_last_regenerate|i:1622158830;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1622158503\";last_ip|s:13:\"190.237.30.46\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"2Kqe52+OmYqmPThVwY/YJAzwgnM4B5VV7n8R6mw7dB8z2r0IMtkJSg70SgH+9QYudJJnufkztZHov3lL32zoAQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";error|s:83:\"La caja no está abierta, por favor introduzca el valor de la caja para la apertura\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faf03b8c4637dfb08384c34ed87d867f9d1e6165', '167.248.133.191', '1682988624', '__ci_last_regenerate|i:1682988624;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb09f1a71e698f4dc09c06c1eb237fdb81018ee8', '186.1.135.131', '1618339736', '__ci_last_regenerate|i:1618339508;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618325693\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb1f13c8d4b4db6d652b335a685be390f10cf96b', '205.210.31.152', '1655449868', '__ci_last_regenerate|i:1655449868;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb24254f99da32a96cf5835e5df2f711e0d7164d', '183.136.225.44', '1677853322', '__ci_last_regenerate|i:1677853322;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb380cff743e27bf6bb84232a80aaa69', '45.177.196.194', '1670873994', '__ci_last_regenerate|i:1670873994;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3ef504ccd5f1a7d67e4ba1a5452c7e928260c5', '18.228.170.58', '1611652328', '__ci_last_regenerate|i:1611652328;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4199a1a76a969818b2cfe0558ef8aa5da470e9', '18.230.106.83', '1621984535', '__ci_last_regenerate|i:1621984535;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb488aa4ba8d5afc4d58fa88df237762a7ec2592', '63.33.209.222', '1689109396', '__ci_last_regenerate|i:1689109396;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb569cfc805ff3b3c51cfb9a4554cc83315a22ec', '190.239.78.92', '1620657032', '__ci_last_regenerate|i:1620656754;local|s:1:\"1\";listaVenta|i:195;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb7141dd167af232c89197dc8d40cf4a551eb0f2', '190.239.70.91', '1619210326', '__ci_last_regenerate|i:1619210326;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8790c856e4f16d76e00860bda66167cb93889e', '186.1.135.129', '1618260249', '__ci_last_regenerate|i:1618260249;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8e41ee9653407dd4f70e55fc15e5dae4b72d68', '::1', '1598765854', '__ci_last_regenerate|i:1598765602;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598723762\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"FyWd0gCdnsC1z2oT7q7hKHeZuxsa+pjYHhEBRvVAZ0AagQi7IE7vSjuulABCE0PkEvs3VDxr5WVx11CL58zCwA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:3:\"444\";user_sol|s:3:\"123\";pass_sol|s:0:\"\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb91fb72ba896a9ca6433135c34fb5ae44cbeca3', '54.207.54.31', '1612016200', '__ci_last_regenerate|i:1612016200;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb926a8930d65d0472ae746d4056dd72a2016171', '159.203.110.200', '1664828402', '__ci_last_regenerate|i:1664828402;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb981ff0314b28c6ac124f87b361276606e66846', '198.235.24.183', '1686387153', '__ci_last_regenerate|i:1686387153;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb98bdc26af760cc84344d3112d5deb0487f75b4', '181.64.18.3', '1619197601', '__ci_last_regenerate|i:1619197414;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1619122727\";last_ip|s:11:\"181.64.18.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbab4c2b8cc1c05df484a7cbcdc6f010ffed14cc', '205.210.31.158', '1695017114', '__ci_last_regenerate|i:1695017113;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbb65d685ad891595429f2dd7b51e4fbb5bbfe12', '179.6.212.129', '1615245890', '__ci_last_regenerate|i:1615245890;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbfbd42f53bfff251ed71c3e9eea91fd9334a29b', '167.248.133.120', '1668694922', '__ci_last_regenerate|i:1668694922;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbfd2fef37f6162b484b660ed1d02d447b8f8d7c', '167.94.138.35', '1685373976', '__ci_last_regenerate|i:1685373975;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0ef4efed2a2f6f28881940b457007b3accdbc8', '139.155.16.233', '1615018490', '__ci_last_regenerate|i:1615018490;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc171ebfe15036b5cdba1eea01bd5972a88d33d1', '186.1.135.129', '1615236223', '__ci_last_regenerate|i:1615236223;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615210259\";last_ip|s:13:\"186.1.135.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1f1e206a717cf921cb9ab8554463e08834c572', '162.142.125.222', '1695550234', '__ci_last_regenerate|i:1695550234;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc22e7b894be1072c0b40fc737fb8bab06d590ea', '138.68.164.160', '1692856582', '__ci_last_regenerate|i:1692856582;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc36c54f2d30397b15c1bd597fcc83b7feba505e', '101.68.211.2', '1692181519', '__ci_last_regenerate|i:1692181519;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3b8f26e053c8dcb04dd3d2dfe2100d5a22dae4', '205.210.31.213', '1690273544', '__ci_last_regenerate|i:1690273544;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc599c623978c8c22767121138fad440151a3fc4', '46.101.26.151', '1673218034', '__ci_last_regenerate|i:1673218034;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc71278d321ad0460ad0bc3fe4ca95dd5ffdfebd', '186.1.135.71', '1613685764', '__ci_last_regenerate|i:1613685764;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613663965\";last_ip|s:12:\"186.1.135.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc84eaab29f557caf8006135a9be3fb7f7e654e7', '179.6.161.87', '1698948911', '__ci_last_regenerate|i:1698948895;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1698945767\";last_ip|s:12:\"38.25.16.184\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:0;gratuito|i:0;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc89514ba1da94f47605459c504a45af6e539f4e', '186.1.135.78', '1611853313', '__ci_last_regenerate|i:1611853312;local|s:1:\"1\";listaVenta|i:192;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc89916a59c046d2591523f5ae3ea90371bd6031', '201.230.205.217', '1671253372', '__ci_last_regenerate|i:1671253113;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1671252878\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc9b0ca8c01572c76853fabcb7ae140ee9c717d8', '186.1.135.134', '1618601264', '__ci_last_regenerate|i:1618601203;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618589046\";last_ip|s:13:\"186.1.135.134\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca656b8b8a057f8c3815e63f6bd34abfa9f2c8e', '46.101.26.151', '1673218034', '__ci_last_regenerate|i:1673218034;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbc4767f3f88fac05cd6b29aa6525f0321c832c', '198.235.24.42', '1678006437', '__ci_last_regenerate|i:1678006437;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbe4f4ec9faffd7dec0b9aa611ada81d6d85b66', '181.176.97.28', '1676644082', '__ci_last_regenerate|i:1676644081;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc8e1cfbf5c626d1c25a40b50070ca259eb379c', '3.252.221.160', '1680930946', '__ci_last_regenerate|i:1680930946;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fccc323c812dc87703f741259d027bc1e417855a', '18.228.18.156', '1621905381', '__ci_last_regenerate|i:1621905381;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd5cb4e2956f181024d411f762dc139234ae73d', '162.142.125.212', '1677443436', '__ci_last_regenerate|i:1677443436;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcdbc229021b89f3efbcd92565ce1d5401c34aef', '207.148.127.89', '1694522434', '__ci_last_regenerate|i:1694522434;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce5be0ccdaaa3be14b16d92df5f2faa733472fe', '144.86.173.27', '1629174536', '__ci_last_regenerate|i:1629174536;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf5297157376bbbf2a589c245d858a05dbd9d9d', '198.235.24.14', '1655583158', '__ci_last_regenerate|i:1655583158;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf9a5e3db3117e31b9a75f86aa3d7ff757785de', '52.42.79.222', '1620641508', '__ci_last_regenerate|i:1620641508;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd00c21c88006d3f3cbfdfac9c2ff93436fd4588', '::1', '1598604859', '__ci_last_regenerate|i:1598604569;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598575669\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd17fba532882923e41876377fd5a79338036380', '38.25.16.150', '1672159565', '__ci_last_regenerate|i:1672159540;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1672112268\";last_ip|s:12:\"38.25.16.150\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd332cef5678b7a9d2769a1ba310302a316ef0f8', '183.136.225.44', '1685498962', '__ci_last_regenerate|i:1685498962;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd3a584edeb9a30ce22d6c92ce32b9c629c60250', '186.1.135.130', '1617024716', '__ci_last_regenerate|i:1617024349;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616978568\";last_ip|s:11:\"179.6.222.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4a49cf60695dbed48a60546d99d3937cb92521', '181.64.18.180', '1634584237', '__ci_last_regenerate|i:1634579237;local|s:1:\"1\";listaVenta|i:3;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1634414864\";last_ip|s:13:\"181.64.18.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4bd8b2b582635f1d7fdd856e032e649576ce67', '148.102.26.11', '1619733230', '__ci_last_regenerate|i:1619733230;local|s:1:\"1\";listaVenta|i:619;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619717910\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd625fea6af769a82f6ff8c2cb71dcfb793e863c', '162.142.125.214', '1689080898', '__ci_last_regenerate|i:1689080898;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd78a32119ea03d42fe29f06d894a4ee4b7c8432', '148.102.26.11', '1620666247', '__ci_last_regenerate|i:1620665957;local|s:1:\"1\";listaVenta|i:124;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620653998\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7b3f4bd32bfbe409eb5955b4e5cc6216ef433d', '186.1.135.141', '1612448781', '__ci_last_regenerate|i:1612448486;local|s:1:\"1\";listaVenta|i:221;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612442480\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd84a119c5fa43bf8a8f89e95a38ab0ed5ce5d4a', '186.1.135.138', '1613064596', '__ci_last_regenerate|i:1613064301;local|s:1:\"1\";listaVenta|i:2994;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612990485\";last_ip|s:13:\"179.6.212.129\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fda99f72650deb7f1233060df4c159b3b8552b00', '159.65.184.120', '1628039239', '__ci_last_regenerate|i:1628039239;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb9d9f42fb6a6fc1acb666255244c32253c5407', '186.1.135.150', '1613143402', '__ci_last_regenerate|i:1613137965;local|s:1:\"1\";listaVenta|i:239;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613047424\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdbaa06f7195dd53ca9eaa8049523a9bc08d054c', '186.1.135.135', '1612537985', '__ci_last_regenerate|i:1612537903;local|s:1:\"1\";listaVenta|i:38;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdbcdf8056d7c1b014519e750e8f7f2d', '201.230.81.164', '1622131775', '__ci_last_regenerate|i:1622131775;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdcf148cb04b70fe2e0af646e369476f17d3d178', '186.1.135.141', '1611850398', '__ci_last_regenerate|i:1611849965;local|s:1:\"1\";listaVenta|i:156;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1611076625\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"330gh9vQG+qP+E0AaZQOkBdBB0crIyIcXHx6nMDqfYdOgPfrh/1o2L+D576JDdPfK+CeTqnKnsAECl+8PFbRFA==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:16:\"HfnSCUYV5Q3E4qnB\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd2ee5e6513ba34f12171b001553e1aaeff54fe', '186.1.135.66', '1616444417', '__ci_last_regenerate|i:1616444246;local|s:1:\"1\";listaVenta|i:61;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616437991\";last_ip|s:12:\"186.1.135.66\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fddca299647763bd1cb488d86b6d3fb9d7956e2b', '87.236.176.197', '1695659379', '__ci_last_regenerate|i:1695659379;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf3c48e6eca65f653951ee37c68c50d4ab1a31c', '18.232.121.166', '1654293245', '__ci_last_regenerate|i:1654293244;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf60d798c47a78f8c7203ad331030531bf0c84a', '186.1.135.142', '1612358595', '__ci_last_regenerate|i:1612358277;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612299033\";last_ip|s:13:\"186.1.135.133\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdfc23600d49e1dba1f5b1a0ef3bc4173b81872b', '137.184.32.150', '1676522772', '__ci_last_regenerate|i:1676522772;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe26354eb598ca0929889b09e136b1e4ef57fe11', '198.235.24.37', '1697364133', '__ci_last_regenerate|i:1697364133;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe306c2fa85f063da1fc06ea41abbd02d057dca3', '18.136.72.135', '1623511666', '__ci_last_regenerate|i:1623511666;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe319d6c80589605974a6d369302c5d8deea8b2f', '186.1.135.138', '1616600481', '__ci_last_regenerate|i:1616599686;local|s:1:\"1\";listaVenta|i:392;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616599704\";last_ip|s:13:\"186.1.135.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe32b8f6c3d536933d43888a5a60c88592a656df', '186.1.135.141', '1613426864', '__ci_last_regenerate|i:1613426793;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1613424944\";last_ip|s:13:\"186.1.135.141\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3660819f6a75282971677765543680a3c58fd9', '190.239.64.130', '1621439138', '__ci_last_regenerate|i:1621438821;local|s:1:\"1\";listaVenta|i:867;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1621436735\";last_ip|s:14:\"190.239.64.130\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3c730ebc6bf2e08acfcfbb9e1a6d512d13ec67', '3.239.158.19', '1611123680', '__ci_last_regenerate|i:1611123679;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe43481e628e796bbe05818c86f57069ae1b2e2b', '34.86.35.29', '1623815271', '__ci_last_regenerate|i:1623815271;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe5013af7aee31a97a8c1cb6fdb37fbceb4dfe36', '190.239.70.91', '1619194286', '__ci_last_regenerate|i:1619194190;local|s:1:\"1\";listaVenta|i:110;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1619189243\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe785c0f1ff11b4c240727a6fc96245e8d827624', '186.1.135.135', '1612557092', '__ci_last_regenerate|i:1612557091;local|s:1:\"1\";listaVenta|i:24;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612535753\";last_ip|s:13:\"186.1.135.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";error|s:83:\"La caja no está abierta, por favor introduzca el valor de la caja para la apertura\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8147b36951f4267a6ae0b5737f844288b00979', '148.102.22.241', '1616697742', '__ci_last_regenerate|i:1616697532;local|s:1:\"1\";listaVenta|i:445;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1616682644\";last_ip|s:13:\"132.191.2.144\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8740498caba3a23c608dda96bfcad5af08d7e5', '148.102.26.11', '1619016467', '__ci_last_regenerate|i:1619016307;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1618942787\";last_ip|s:13:\"148.102.23.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe93c8f4db88fe006090b95d868ad27305c6e1fe', '144.86.173.151', '1628018580', '__ci_last_regenerate|i:1628018580;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe9c020038e212231c0f18b16779eae7e4a6c969', '186.1.135.129', '1614694699', '__ci_last_regenerate|i:1614694699;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea4b1ed4056bd87edbe2081fad69cbc1aed4a02', '186.1.135.132', '1612878973', '__ci_last_regenerate|i:1612878972;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1612878149\";last_ip|s:13:\"186.1.135.132\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feba26b83487ffc84d7107fcd75f40c22462e91a', '148.102.26.11', '1620655569', '__ci_last_regenerate|i:1620655392;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620331311\";last_ip|s:14:\"190.239.67.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fec687df1253670ceaf6303d22ddf8c030e3ed8e', '148.102.26.11', '1620744267', '__ci_last_regenerate|i:1620744267;local|s:1:\"1\";listaVenta|i:0;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1620677115\";last_ip|s:13:\"148.102.26.11\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedcfd9b8da2f8abf13ac22f7985fbf5f6a07aa6', '35.180.138.30', '1655615123', '__ci_last_regenerate|i:1655615123;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fefb661b11e23c26711eac7a56857ef2abf09199', '201.230.205.208', '1694653006', '__ci_last_regenerate|i:1694652993;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1692975151\";last_ip|s:12:\"38.25.16.184\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"10123456781\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:0;retencion|i:1;gratuito|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";register_id|s:1:\"1\";cash_in_hand|s:4:\"1.00\";register_open_time|s:19:\"2021-05-27 18:48:10\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff089369a33afadf42d599dd0fd21064b735038d', '120.41.45.194', '1618758579', '__ci_last_regenerate|i:1618758579;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff1251c6068793603488184d44cb5cfb48233e48', '35.181.87.238', '1615448737', '__ci_last_regenerate|i:1615448737;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2068c31b537d75c9ccb92f96d3827e42d31b6b', '205.210.31.32', '1673402924', '__ci_last_regenerate|i:1673402924;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff210c09bd37dd7309251a625239db3eecd957e6', '183.136.225.45', '1697656755', '__ci_last_regenerate|i:1697656755;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff4f5fdc7a93349fd0779d7a4a52a645a6d15545', '45.177.196.194', '1673278640', '__ci_last_regenerate|i:1673278622;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1673274224\";last_ip|s:14:\"181.176.125.91\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"t+/PiLF6Jc8SA8ox9WHFzM+L7k2nSUHEUBaQbdWLl1xPkjAkoRL0j582ea3ld0n1fa3+f1FjQx0FCW9oq2usXQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";traders|i:1;pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff59d5cfca00437dd0d2243796dfa9c63079b685', '51.15.205.3', '1684233353', '__ci_last_regenerate|i:1684233353;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff69043ab56bc45431bda386159d42199f284707', '18.230.119.195', '1622625148', '__ci_last_regenerate|i:1622625148;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff7d3104fec87e49a319a1023d3528abe120a757', '186.1.135.143', '1615416314', '__ci_last_regenerate|i:1615416311;local|s:1:\"1\";listaVenta|i:812;identity|s:29:\"administracion@dxlapparel.com\";username|s:15:\"dxlapparelgroup\";email|s:29:\"administracion@dxlapparel.com\";user_id|s:1:\"2\";first_name|s:5:\"Nancy\";last_name|s:7:\"Huaman \";created_on|s:22:\"19/01/2021 12:17:05 PM\";old_last_login|s:10:\"1615413018\";last_ip|s:13:\"186.1.135.143\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"20505239262\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"0\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"iNqkc8ndqRz2/1T1+CA8KtE13LLIMmuuoYt+bQSopkMz0IXQMDPZdee/yVoKPuEPRBrMxO1rmB6xb68gvLrhkw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:8:\"Appa5239\";user_sol|s:8:\"CONTABIL\";pass_sol|s:9:\"Halley123\";remove_spo|i:1;message|s:65:\"Se registro y envío con exito la guia de remision - T001-0000311\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9c1222ae65c92262c05a27f67bd78c', '161.132.234.14', '1624914783', '__ci_last_regenerate|i:1624914783;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffa7d5bc59e577d9e30a674d6e3299af', '161.132.234.14', '1624915051', '__ci_last_regenerate|i:1624915051;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc5f5cde4d1a294fd8e89375b62ac8dd89d6a88', '181.64.18.180', '1634415195', '__ci_last_regenerate|i:1634414852;local|s:1:\"1\";listaVenta|i:797;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1632763662\";last_ip|s:14:\"161.132.234.14\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:21:\"DXL APPAREL GROUP SAC\";ruc|s:11:\"12345678912\";direccion|s:134:\"CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA\";region|s:4:\"LIMA\";pais|s:4:\"PERU\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:12:\"logo-pdf.png\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"YhLqSfcg4MhFF6Cq2U3xRcjfVxPds0iMDUxp3LvkcUcZeGBVxn78CTyvi8yXncizGTxAg0e02M4XPKSag0c6rw==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:60:\"/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffe675a7dca51bc4e5ea778ba68a8dd4efa181b1', '167.94.138.36', '1679013477', '__ci_last_regenerate|i:1679013477;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('j1v2qdsab9eufdpjeuut6g5utn', '::1', '1598834004', '__ci_last_regenerate|i:1598834004;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('nh7fj8r4msi0sqlqeh3ia6ecd1', '::1', '1598575624', '__ci_last_regenerate|i:1598575624;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('pbdtjuj4amslon4fmc753iigg5', '::1', '1598834013', '__ci_last_regenerate|i:1598834013;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('sjo9nc30uee1mil5f515m9972v', '::1', '1598834008', '__ci_last_regenerate|i:1598834008;');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('sjrgtnh9q7o1kogtuaoinpo496', '::1', '1598575632', '__ci_last_regenerate|i:1598575632;local|s:1:\"1\";listaVenta|i:0;identity|s:20:\"admin@sistematpv.com\";username|s:5:\"admin\";email|s:20:\"admin@sistematpv.com\";user_id|s:1:\"1\";first_name|s:5:\"Admin\";last_name|s:3:\"TPV\";created_on|s:22:\"22/08/2018 12:29:11 PM\";old_last_login|s:10:\"1598556807\";last_ip|s:3:\"::1\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";razon_social|s:24:\"Empresa de Prueba & demo\";ruc|s:11:\"12345678912\";direccion|s:19:\"av. desconocida 123\";region|s:4:\"lima\";pais|s:4:\"peru\";negocio|s:1:\"0\";beta|s:1:\"1\";habilita_btn_pago|s:1:\"1\";habilita_btn_caja|s:1:\"0\";logo|s:16:\"logo-empresa.jpg\";pos_logo|s:1:\"2\";logo_pdf|s:12:\"logo-pdf.png\";type_imagen_pdf|s:1:\"1\";protocol|s:4:\"smtp\";smtp_host|s:19:\"mail.sistematpv.com\";smtp_user|s:23:\"no-reply@sistematpv.com\";smtp_pass|s:88:\"nrxyPyw2ocZOpBM1MOkJAeh7vHPZw1rgOrUfIK2Rh40N4JD826PqBdyw1+1upsP0FqWE/Wbqsjgi28hG262lrQ==\";smtp_port|s:3:\"587\";mailpath|N;ubicacion_XML|s:0:\"\";pass_firma|s:6:\"123456\";user_sol|s:7:\"1DATOS1\";pass_sol|s:6:\"1Datos\";message|s:45:\"<p>¡Logueado con éxito! Sea bienvenido!</p>\";__ci_vars|a:1:{s:7:\"message\";s:3:\"new\";}');
INSERT INTO `tec_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('v56tt3r7c6c5fuoirdvjonjfgv', '::1', '1598575624', '__ci_last_regenerate|i:1598575624;');


#
# TABLE STRUCTURE FOR: tec_settings
#

DROP TABLE IF EXISTS `tec_settings`;

CREATE TABLE `tec_settings` (
  `setting_id` int(1) NOT NULL,
  `logo` varchar(255) NOT NULL,
  `site_name` varchar(55) NOT NULL,
  `tel` varchar(20) NOT NULL,
  `dateformat` varchar(20) DEFAULT NULL,
  `timeformat` varchar(20) DEFAULT NULL,
  `default_email` varchar(100) NOT NULL,
  `language` varchar(20) NOT NULL,
  `version` varchar(10) NOT NULL DEFAULT '1.0',
  `theme` varchar(20) NOT NULL,
  `timezone` varchar(255) NOT NULL DEFAULT '0',
  `protocol` varchar(20) NOT NULL DEFAULT 'mail',
  `smtp_host` varchar(255) DEFAULT NULL,
  `smtp_user` varchar(100) DEFAULT NULL,
  `smtp_pass` varchar(255) DEFAULT NULL,
  `smtp_port` varchar(10) DEFAULT '25',
  `smtp_crypto` varchar(5) DEFAULT NULL,
  `mmode` tinyint(1) NOT NULL,
  `captcha` tinyint(1) NOT NULL DEFAULT '1',
  `mailpath` varchar(55) DEFAULT NULL,
  `currency_prefix` varchar(3) NOT NULL,
  `default_customer` int(11) NOT NULL,
  `default_tax_rate` varchar(20) NOT NULL,
  `rows_per_page` int(2) NOT NULL,
  `total_rows` int(2) NOT NULL,
  `header` varchar(1000) NOT NULL,
  `footer` varchar(1000) NOT NULL,
  `bsty` tinyint(4) NOT NULL,
  `display_kb` tinyint(4) NOT NULL,
  `default_category` int(11) NOT NULL,
  `default_discount` varchar(20) NOT NULL,
  `item_addition` tinyint(1) NOT NULL,
  `barcode_symbology` varchar(55) NOT NULL,
  `pro_limit` tinyint(4) NOT NULL,
  `decimals` tinyint(1) NOT NULL DEFAULT '2',
  `thousands_sep` varchar(2) NOT NULL DEFAULT ',',
  `decimals_sep` varchar(2) NOT NULL DEFAULT '.',
  `focus_add_item` varchar(55) DEFAULT NULL,
  `add_customer` varchar(55) DEFAULT NULL,
  `toggle_category_slider` varchar(55) DEFAULT NULL,
  `cancel_sale` varchar(55) DEFAULT NULL,
  `suspend_sale` varchar(55) DEFAULT NULL,
  `print_order` varchar(55) DEFAULT NULL,
  `print_bill` varchar(55) DEFAULT NULL,
  `finalize_sale` varchar(55) DEFAULT NULL,
  `today_sale` varchar(55) DEFAULT NULL,
  `open_hold_bills` varchar(55) DEFAULT NULL,
  `close_register` varchar(55) DEFAULT NULL,
  `java_applet` tinyint(1) NOT NULL,
  `receipt_printer` varchar(55) DEFAULT NULL,
  `pos_printers` varchar(255) DEFAULT NULL,
  `cash_drawer_codes` varchar(55) DEFAULT NULL,
  `char_per_line` tinyint(4) DEFAULT '42',
  `rounding` tinyint(1) DEFAULT '0',
  `pin_code` varchar(20) DEFAULT NULL,
  `stripe` tinyint(1) DEFAULT NULL,
  `stripe_secret_key` varchar(100) DEFAULT NULL,
  `stripe_publishable_key` varchar(100) DEFAULT NULL,
  `purchase_code` varchar(100) DEFAULT NULL,
  `envato_username` varchar(50) DEFAULT NULL,
  `default_warehouse` int(11) NOT NULL,
  `invoice_format` varchar(50) NOT NULL,
  `bill_format` varchar(50) NOT NULL,
  `invoice_number` int(11) NOT NULL,
  `bill_number` int(11) NOT NULL,
  `nventa_format` varchar(50) NOT NULL,
  `nventa_number` int(11) NOT NULL,
  `note_credit_invoice_format` varchar(50) NOT NULL,
  `note_credit_invoice_number` int(11) NOT NULL,
  `note_credit_bill_format` varchar(50) NOT NULL,
  `note_credit_bill_number` int(11) NOT NULL,
  `referral_guide_format` varchar(50) NOT NULL,
  `referral_guide_number` int(11) NOT NULL,
  `beta` int(11) DEFAULT NULL,
  `habilita_btn_pago` int(11) DEFAULT NULL,
  `habilita_btn_caja` int(11) DEFAULT NULL,
  `logo_auth` varchar(50) DEFAULT NULL,
  `pos_logo` int(11) DEFAULT NULL,
  `logo_pdf` varchar(50) DEFAULT NULL,
  `type_imagen_pdf` int(11) DEFAULT NULL,
  `advanced_sale` int(11) NOT NULL,
  `tax_icbper` int(11) NOT NULL,
  `mail_incidents` varchar(100) NOT NULL,
  `pdf_format` int(11) DEFAULT NULL,
  `type_Print` int(11) NOT NULL,
  `summaries_limit` int(11) NOT NULL,
  `ubicacion_XML` longtext NOT NULL,
  `direccion` longtext NOT NULL,
  `region` varchar(100) NOT NULL,
  `pais` varchar(100) NOT NULL,
  `razon_social` longtext NOT NULL,
  `ruc` varchar(20) NOT NULL,
  `pass_firma` varchar(50) NOT NULL,
  `user_sol` varchar(50) NOT NULL,
  `pass_sol` varchar(50) NOT NULL,
  `beta_pass_firma` varchar(50) NOT NULL,
  `beta_user_sol` varchar(50) NOT NULL,
  `beta_pass_sol` varchar(50) NOT NULL,
  `negocio` int(11) NOT NULL,
  `client_id` varchar(150) DEFAULT NULL,
  `client_pass` varchar(150) DEFAULT NULL,
  `beta_client_id` varchar(150) DEFAULT NULL,
  `beta_client_pass` varchar(150) DEFAULT NULL,
  PRIMARY KEY (`setting_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `tec_settings` (`setting_id`, `logo`, `site_name`, `tel`, `dateformat`, `timeformat`, `default_email`, `language`, `version`, `theme`, `timezone`, `protocol`, `smtp_host`, `smtp_user`, `smtp_pass`, `smtp_port`, `smtp_crypto`, `mmode`, `captcha`, `mailpath`, `currency_prefix`, `default_customer`, `default_tax_rate`, `rows_per_page`, `total_rows`, `header`, `footer`, `bsty`, `display_kb`, `default_category`, `default_discount`, `item_addition`, `barcode_symbology`, `pro_limit`, `decimals`, `thousands_sep`, `decimals_sep`, `focus_add_item`, `add_customer`, `toggle_category_slider`, `cancel_sale`, `suspend_sale`, `print_order`, `print_bill`, `finalize_sale`, `today_sale`, `open_hold_bills`, `close_register`, `java_applet`, `receipt_printer`, `pos_printers`, `cash_drawer_codes`, `char_per_line`, `rounding`, `pin_code`, `stripe`, `stripe_secret_key`, `stripe_publishable_key`, `purchase_code`, `envato_username`, `default_warehouse`, `invoice_format`, `bill_format`, `invoice_number`, `bill_number`, `nventa_format`, `nventa_number`, `note_credit_invoice_format`, `note_credit_invoice_number`, `note_credit_bill_format`, `note_credit_bill_number`, `referral_guide_format`, `referral_guide_number`, `beta`, `habilita_btn_pago`, `habilita_btn_caja`, `logo_auth`, `pos_logo`, `logo_pdf`, `type_imagen_pdf`, `advanced_sale`, `tax_icbper`, `mail_incidents`, `pdf_format`, `type_Print`, `summaries_limit`, `ubicacion_XML`, `direccion`, `region`, `pais`, `razon_social`, `ruc`, `pass_firma`, `user_sol`, `pass_sol`, `beta_pass_firma`, `beta_user_sol`, `beta_pass_sol`, `negocio`, `client_id`, `client_pass`, `beta_client_id`, `beta_client_pass`) VALUES ('1', 'logoTPV_B.png', 'DXL APPAREL GROUP SAC', '999 999 999', 'd/m/Y', 'h:i:s A', 'no-reply@sistematpv.com', 'spanish', '2.5.11', 'default', 'America/Lima', 'smtp', 'mail.sistematpv.com', 'no-reply@sistematpv.com', '5xIgBFxp3zd10AhefCP3uUbGcZPQVDOmhzv9OXk9ihAsYC8J4/WtRtXn4Y3Bmv51YKurEFYbsmZ+jiHMPZQAng==', '587', 'ssl', '0', '0', NULL, 'PEN', '18199', '15', '50', '30', '<img src=\"https://dxlapparelgroup.sistematpv.com/uploads/logo-empresa.png\" alt=\"\" width=\"203\" height=\"279\"><br>DXL APPAREL GROUP SAC<br>CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA<br>RUC. 20505239262', 'PUEDE SER CONSULTADA MEDIANTE <a id=\"selection-marker-1\" class=\"redactor-selection-marker\">http://dxlapparelgroup.sistematpv.com/Search_invoice</a><br>Autorizado mediante resolución <br>No. 155-2017/Sunat<br><br>Gracias por elegirnos!<br>', '3', '0', '1', '10', '1', '', '10', '2', ',', '.', 'F7', 'ALT+F2', 'ALT+F10', 'F3', 'F2', 'F6', 'F4', 'F1', 'Ctrl+F1', 'F5', 'ALT+F7', '0', NULL, NULL, NULL, '42', '5', '1234', NULL, NULL, NULL, 'ff2400d9-f3aa-4db5-9dc5-4eee236c6254', 'patriciomelo', '4', 'F002-{0000000}', 'B002-{0000000}', '230', '221', 'NV001-{0000}', '1', 'FC01-{0000000}', '18', 'BC01-{0000000}', '7', 'T001-{0000000}', '466', '1', '1', '0', 'logo-pdf.png', '2', 'logo-pdf.png', '1', '0', '1', 'informes@actecperu.com', '1', '0', '500', '/home/sistematpv/public_html/api/wsfe/archivos_xml_sunat/FE/', 'CAL.LOS ALAMOS MZA. J LOTE. 11 INT. B URB. PARCELA SEMI RUSTICA (ALTURA DEL PARADERO ALBORADA DE ENSENADA) LIMA - LIMA - PUENTE PIEDRA', 'LIMAa', 'PERUu', 'DXL APPAREL GROUP SAC', '10123456781', 'Appa5239', 'CONTABIL', 'Halley123', '123456', '1DATOS1', '1Datos', '0', '', '', '', '');


#
# TABLE STRUCTURE FOR: tec_suppliers
#

DROP TABLE IF EXISTS `tec_suppliers`;

CREATE TABLE `tec_suppliers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(55) NOT NULL,
  `cf1` varchar(255) NOT NULL,
  `cf2` varchar(255) NOT NULL,
  `phone` varchar(20) NOT NULL,
  `email` varchar(100) NOT NULL,
  `custom_field_1` varchar(250) DEFAULT NULL,
  `custom_field_2` varchar(250) DEFAULT NULL,
  `custom_field_3` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `tec_suppliers` (`id`, `name`, `cf1`, `cf2`, `phone`, `email`, `custom_field_1`, `custom_field_2`, `custom_field_3`) VALUES ('1', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '20544105494', 'AV. TOMAS MARSANO NRO. 4163 URB. VISTA ALEGRE - LIMA LIMA SANTIAGO DE SURCO', '', '', NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: tec_suspended_items
#

DROP TABLE IF EXISTS `tec_suspended_items`;

CREATE TABLE `tec_suspended_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `suspend_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `quantity` decimal(15,2) NOT NULL,
  `unit_price` decimal(25,2) NOT NULL,
  `net_unit_price` decimal(25,2) NOT NULL,
  `discount` varchar(20) DEFAULT NULL,
  `item_discount` decimal(25,2) DEFAULT NULL,
  `tax` int(20) DEFAULT NULL,
  `item_tax` decimal(25,2) DEFAULT NULL,
  `subtotal` decimal(25,2) NOT NULL,
  `real_unit_price` decimal(25,2) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_suspended_sales
#

DROP TABLE IF EXISTS `tec_suspended_sales`;

CREATE TABLE `tec_suspended_sales` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer_name` varchar(55) NOT NULL,
  `total` decimal(25,2) NOT NULL,
  `product_discount` decimal(25,2) DEFAULT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `order_discount` decimal(25,2) DEFAULT NULL,
  `total_discount` decimal(25,2) DEFAULT NULL,
  `product_tax` decimal(25,2) DEFAULT NULL,
  `order_tax_id` varchar(20) DEFAULT NULL,
  `order_tax` decimal(25,2) DEFAULT NULL,
  `total_tax` decimal(25,2) DEFAULT NULL,
  `grand_total` decimal(25,2) NOT NULL,
  `total_items` int(11) DEFAULT NULL,
  `total_quantity` decimal(15,2) DEFAULT NULL,
  `paid` decimal(25,2) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `hold_ref` varchar(255) DEFAULT NULL,
  `canal_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_tax_icbper
#

DROP TABLE IF EXISTS `tec_tax_icbper`;

CREATE TABLE `tec_tax_icbper` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `year` int(11) NOT NULL,
  `amount` decimal(25,2) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `tec_tax_icbper` (`id`, `year`, `amount`) VALUES ('1', '2019', '0.10');
INSERT INTO `tec_tax_icbper` (`id`, `year`, `amount`) VALUES ('2', '2020', '0.20');
INSERT INTO `tec_tax_icbper` (`id`, `year`, `amount`) VALUES ('3', '2021', '0.30');
INSERT INTO `tec_tax_icbper` (`id`, `year`, `amount`) VALUES ('4', '2022', '0.40');
INSERT INTO `tec_tax_icbper` (`id`, `year`, `amount`) VALUES ('5', '2023', '0.50');


#
# TABLE STRUCTURE FOR: tec_traders
#

DROP TABLE IF EXISTS `tec_traders`;

CREATE TABLE `tec_traders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ruc` varchar(11) COLLATE utf8mb4_unicode_ci NOT NULL,
  `cod_vend` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type_document` int(11) NOT NULL,
  `document` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name_1` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name_2` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `birth_date` date NOT NULL,
  `gender` char(1) COLLATE utf8mb4_unicode_ci NOT NULL,
  `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ubigeo` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `movil` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `movil_2` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `email` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type_commission` varchar(2) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `valor_commission` decimal(10,4) DEFAULT NULL,
  `observation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'imagen',
  `user_id` int(11) DEFAULT NULL,
  `created_by` int(11) NOT NULL COMMENT 'El id usuario que crea.',
  `updated_by` int(11) DEFAULT NULL COMMENT 'El id usuario que modifica.',
  `created_at` datetime NOT NULL,
  `updated_at` datetime DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT '1' COMMENT 'el estado es 1 cuando esta activo, 0 eliminado',
  PRIMARY KEY (`id`) USING BTREE,
  UNIQUE KEY `index_ruc_codVend` (`ruc`,`cod_vend`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;

INSERT INTO `tec_traders` (`id`, `ruc`, `cod_vend`, `type_document`, `document`, `name`, `last_name_1`, `last_name_2`, `birth_date`, `gender`, `address`, `ubigeo`, `movil`, `movil_2`, `email`, `type_commission`, `valor_commission`, `observation`, `image`, `user_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('44', '12345678912', 'D34DR1', '1', '11111111', 'Alexander', 'Ponte', 'Trujillo', '1999-02-22', 'M', 'Ancash-peru', '020107', '969845416', '950288019', 'angelez2050@hotmail.com', '', '0.0000', 'prueba', '', '1', '79', '1', '2022-12-02 21:24:21', '2022-12-27 17:25:50', '1');
INSERT INTO `tec_traders` (`id`, `ruc`, `cod_vend`, `type_document`, `document`, `name`, `last_name_1`, `last_name_2`, `birth_date`, `gender`, `address`, `ubigeo`, `movil`, `movil_2`, `email`, `type_commission`, `valor_commission`, `observation`, `image`, `user_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('45', '12345678912', 'D34DR', '1', '34343434', 'ñañes', 'Angeles', 'Castro', '1993-02-22', 'O', 'Lima', '180204', '969845416', '950288019', 'angelez2050@hotmail.com', '', '0.0000', 'prueba', '', '1', '1', '1', '2022-12-03 03:25:11', '2022-12-27 03:56:31', '0');
INSERT INTO `tec_traders` (`id`, `ruc`, `cod_vend`, `type_document`, `document`, `name`, `last_name_1`, `last_name_2`, `birth_date`, `gender`, `address`, `ubigeo`, `movil`, `movil_2`, `email`, `type_commission`, `valor_commission`, `observation`, `image`, `user_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('46', '12345678912', 'D3438456', '1', '34540332', 'Perex', 'Angeles', 'Castro', '1993-02-22', 'O', 'Lima', '020112', '969845416', '950288019', 'angelez2050@hotmail.com', '', '0.0000', 'prueba', '', '1', '1', '1', '2022-12-03 03:34:13', '2022-12-27 03:53:31', '1');
INSERT INTO `tec_traders` (`id`, `ruc`, `cod_vend`, `type_document`, `document`, `name`, `last_name_1`, `last_name_2`, `birth_date`, `gender`, `address`, `ubigeo`, `movil`, `movil_2`, `email`, `type_commission`, `valor_commission`, `observation`, `image`, `user_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('47', '12345678912', 'D34384d56', '1', '23476034', 'Carlos', 'Angeles', 'Castro', '1993-02-22', 'O', 'Lima', '020401', '969845416', '950288019', 'angelez2050@hotmail.com', '', '0.0000', 'prueba', '', '1', '1', '1', '2022-12-03 03:42:08', '2022-12-27 03:46:05', '1');
INSERT INTO `tec_traders` (`id`, `ruc`, `cod_vend`, `type_document`, `document`, `name`, `last_name_1`, `last_name_2`, `birth_date`, `gender`, `address`, `ubigeo`, `movil`, `movil_2`, `email`, `type_commission`, `valor_commission`, `observation`, `image`, `user_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('48', '12345678912', '09456ALEX', '1', '70980667', 'NILO', 'VASQUEZ', 'HOYOS', '2005-12-15', 'M', 'Av Canto Grande', '0', '938490474', '938490470', 'alexponte1999@gmail.com', '', '0.0000', 'prueba', '', '0', '1', NULL, '2022-12-16 16:57:30', '2022-12-16 16:57:30', '1');
INSERT INTO `tec_traders` (`id`, `ruc`, `cod_vend`, `type_document`, `document`, `name`, `last_name_1`, `last_name_2`, `birth_date`, `gender`, `address`, `ubigeo`, `movil`, `movil_2`, `email`, `type_commission`, `valor_commission`, `observation`, `image`, `user_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('49', '12345678912', 'AC001', '1', '10306843', 'ELIDIO ALFREDO', 'CONTRERAS', 'ROJAS', '1976-04-24', 'M', 'Av Canto Grande', '0', '12345', '', 'alfredo@gmail.com', '', '0.0000', 'prueba', '', '1', '1', '1', '2022-12-16 17:42:47', '2022-12-17 04:35:30', '1');
INSERT INTO `tec_traders` (`id`, `ruc`, `cod_vend`, `type_document`, `document`, `name`, `last_name_1`, `last_name_2`, `birth_date`, `gender`, `address`, `ubigeo`, `movil`, `movil_2`, `email`, `type_commission`, `valor_commission`, `observation`, `image`, `user_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('50', '10123456781', '01', '1', '75255228', 'Kevin Diego', 'Rodriguez', 'Benites', '2002-09-19', 'M', 'Santiago de surco', '150140', '916921773', '930908971', 'dartkaill_07@hotmail.com', '', '0.0000', '', '', '0', '1', NULL, '2023-08-22 03:08:04', '2023-08-22 03:08:04', '1');
INSERT INTO `tec_traders` (`id`, `ruc`, `cod_vend`, `type_document`, `document`, `name`, `last_name_1`, `last_name_2`, `birth_date`, `gender`, `address`, `ubigeo`, `movil`, `movil_2`, `email`, `type_commission`, `valor_commission`, `observation`, `image`, `user_id`, `created_by`, `updated_by`, `created_at`, `updated_at`, `status`) VALUES ('51', '10123456781', '001', '1', '75124460', 'PIERO', 'MENDIETA', 'SAUCEDO', '2001-01-08', 'M', '', '0', '', '', '', '', '0.0000', '', '', '0', '1', NULL, '2023-08-22 03:09:15', '2023-08-22 03:09:15', '1');


#
# TABLE STRUCTURE FOR: tec_transfer_items
#

DROP TABLE IF EXISTS `tec_transfer_items`;

CREATE TABLE `tec_transfer_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transfer_id` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `stock_prev` int(11) DEFAULT NULL,
  `stock_new` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_transfers
#

DROP TABLE IF EXISTS `tec_transfers`;

CREATE TABLE `tec_transfers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `num` varchar(100) DEFAULT NULL,
  `ref` varchar(250) DEFAULT NULL,
  `warehouse_origin_id` int(11) DEFAULT NULL,
  `warehouse_destiny_id` int(11) DEFAULT NULL,
  `estado` int(11) DEFAULT NULL,
  `uCrea` int(11) DEFAULT NULL,
  `fCrea` timestamp NULL DEFAULT NULL,
  `uActualiza` int(11) DEFAULT NULL,
  `fActualiza` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_types_movement
#

DROP TABLE IF EXISTS `tec_types_movement`;

CREATE TABLE `tec_types_movement` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(10) NOT NULL,
  `description` varchar(250) NOT NULL,
  `type` varchar(10) NOT NULL,
  `purchase` varchar(1) NOT NULL,
  `billable` varchar(1) NOT NULL,
  `code_sunat` varchar(8) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: tec_unitmeasure
#

DROP TABLE IF EXISTS `tec_unitmeasure`;

CREATE TABLE `tec_unitmeasure` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `code_sunat` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description_fe` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '01', 'BOBINAS', '4A', 'BOBINAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', '02', 'BALDE', 'BJ', 'BALDE', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', '03', 'BARRILES', 'BLL', 'BARRILES', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('5', '04', 'BOLSA', 'BG', 'BOLSA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('6', '05', 'BOTELLAS', 'BO', 'BOTELLAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('7', '06', 'CAJA', 'BX', 'CAJA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('8', '07', 'CARTONES', 'CT', 'CARTONES', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('9', '08', 'CENTIMETRO CUADRADO', 'CMK', 'CENTIMETRO CUADRADO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('10', '09', 'CENTIMETRO CUBICO', 'CMQ', 'CENTIMETRO CUBICO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('11', '10', 'CENTIMETRO LINEAL', 'CMT', 'CENTIMETRO LINEAL', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('12', '11', 'CIENTO DE UNIDADES', 'CEN', 'CIENTO DE UNIDADES', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('13', '12', 'CILINDRO', 'CY', 'CILINDRO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('14', '13', 'CONOS', 'CJ', 'CONOS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('15', '14', 'DOCENA', 'DZN', 'DOCENA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('16', '15', 'DOCENA POR 10**6', 'DZP', 'DOCENA POR 10**6', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('17', '16', 'FARDO', 'BE', 'FARDO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('18', '17', 'GALON INGLES (4,545956L)', 'GLI', 'GALON INGLES (4,545956L)', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('19', '18', 'GRAMO', 'GRM', 'GRAMO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('20', '19', 'GRUESA', 'GRO', 'GRUESA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('21', '20', 'HECTOLITRO', 'HLT', 'HECTOLITRO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('22', '21', 'HOJA', 'LEF', 'HOJA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('23', '22', 'JUEGO', 'SET', 'JUEGO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('24', '23', 'KILOGRAMO', 'KGM', 'KILOGRAMO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('25', '24', 'KILOMETRO', 'KTM', 'KILOMETRO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('26', '25', 'KILOVATIO HORA', 'KWH', 'KILOVATIO HORA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('27', '26', 'KIT', 'KT', 'KIT', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('28', '27', 'LATAS', 'CA', 'LATAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('29', '28', 'LIBRAS', 'LBR', 'LIBRAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('30', '29', 'LITRO', 'LTR', 'LITRO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('31', '30', 'MEGAWATT HORA', 'MWH', 'MEGAWATT HORA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('32', '31', 'METRO', 'MTR', 'METRO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('33', '32', 'METRO CUADRADO', 'MTK', 'METRO CUADRADO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('34', '33', 'METRO CUBICO', 'MTQ', 'METRO CUBICO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('35', '34', 'MILIGRAMOS', 'MGM', 'MILIGRAMOS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('36', '35', 'MILILITRO', 'MLT', 'MILILITRO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('37', '36', 'MILIMETRO', 'MMT', 'MILIMETRO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('38', '37', 'MILIMETRO CUADRADO', 'MMK', 'MILIMETRO CUADRADO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('39', '38', 'MILIMETRO CUBICO', 'MMQ', 'MILIMETRO CUBICO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('40', '39', 'MILLARES', 'MIL', 'MILLARES', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('41', '40', 'MILLON DE UNIDADES', 'UM', 'MILLON DE UNIDADES', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('42', '41', 'ONZAS', 'ONZ', 'ONZAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('43', '42', 'PALETAS', 'PF', 'PALETAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('44', '43', 'PAQUETE', 'PK', 'PAQUETE', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('45', '44', 'PAR', 'PR', 'PAR', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('46', '45', 'PIES', 'FOT', 'PIES', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('47', '46', 'PIES CUADRADOS', 'FTK', 'PIES CUADRADOS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('48', '47', 'PIES CUBICOS', 'FTQ', 'PIES CUBICOS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('49', '48', 'PIEZAS', 'C62', 'PIEZAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('50', '49', 'PLACAS', 'PG', 'PLACAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('51', '50', 'PLIEGO', 'ST', 'PLIEGO', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('52', '51', 'PULGADAS', 'INH', 'PULGADAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('53', '52', 'RESMA', 'RM', 'RESMA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('54', '53', 'TAMBOR', 'DR', 'TAMBOR', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('55', '54', 'TONELADA CORTA', 'STN', 'TONELADA CORTA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('56', '55', 'TONELADA LARGA', 'LTN', 'TONELADA LARGA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('57', '56', 'TONELADAS', 'TNE', 'TONELADAS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('58', '57', 'TUBOS', 'TU', 'TUBOS', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('59', '58', 'UNIDAD (BIENES)', 'NIU', 'UNIDAD (BIENES)', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('60', '59', 'UNIDAD (SERVICIOS)', 'ZZ', 'UNIDAD (SERVICIOS)', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('61', '60', 'US GALON (3,7843 L)', 'GLL', 'US GALON (3,7843 L)', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('62', '61', 'YARDA', 'YRD', 'YARDA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);
INSERT INTO `tec_unitmeasure` (`id`, `code`, `description`, `code_sunat`, `description_fe`, `created_at`, `updated_at`, `deleted_at`) VALUES ('63', '62', 'YARDA CUADRADA', 'YDK', 'YARDA CUADRADA', '2021-06-30 13:12:33', '2021-06-30 13:12:33', NULL);


#
# TABLE STRUCTURE FOR: tec_user_logins
#

DROP TABLE IF EXISTS `tec_user_logins`;

CREATE TABLE `tec_user_logins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `company_id` int(11) DEFAULT NULL,
  `ip_address` varbinary(16) NOT NULL,
  `login` varchar(100) NOT NULL,
  `time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=609 DEFAULT CHARSET=utf8;

INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('1', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-25 00:59:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('2', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-25 02:06:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('3', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-25 07:09:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('4', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-25 13:40:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('5', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-27 19:33:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('6', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 00:47:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('7', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 00:47:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('8', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 07:53:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('9', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 12:44:36');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('10', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 20:00:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('11', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 20:54:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('12', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 20:55:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('13', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 20:55:42');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('14', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 20:56:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('15', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 20:56:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('16', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-28 21:00:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('17', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-29 17:56:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('18', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-30 05:33:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('19', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-30 19:35:34');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('20', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-30 19:43:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('21', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-31 00:33:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('22', '1', NULL, '::1', 'admin@sistematpv.com', '2020-08-31 00:35:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('23', '1', NULL, '190.236.24.150', 'admin@sistematpv.com', '2021-01-19 17:20:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('24', '1', NULL, '190.238.217.9', 'admin@sistematpv.com', '2021-01-20 15:07:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('25', '1', NULL, '190.238.217.9', 'admin@sistematpv.com', '2021-01-20 15:07:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('26', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-01-20 19:50:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('27', '1', NULL, '190.238.217.9', 'admin@sistematpv.com', '2021-01-20 19:52:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('28', '1', NULL, '190.238.217.6', 'admin@sistematpv.com', '2021-01-26 21:17:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('29', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-01-27 15:12:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('30', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-01-27 20:33:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('31', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-01-28 15:43:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('32', '1', NULL, '132.157.130.59', 'admin@sistematpv.com', '2021-01-28 16:22:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('33', '1', NULL, '132.157.130.59', 'admin@sistematpv.com', '2021-01-28 16:30:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('34', '1', NULL, '132.157.130.59', 'admin@sistematpv.com', '2021-01-28 17:17:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('35', '1', NULL, '132.184.128.122', 'admin@sistematpv.com', '2021-01-28 19:47:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('36', '2', NULL, '186.1.135.79', 'administracion@dxlapparel.com', '2021-01-28 22:41:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('37', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-01-28 22:43:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('38', '1', NULL, '132.184.128.153', 'admin@sistematpv.com', '2021-01-29 01:53:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('39', '1', NULL, '132.184.128.153', 'admin@sistematpv.com', '2021-01-29 02:47:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('40', '1', NULL, '132.184.128.153', 'admin@sistematpv.com', '2021-01-29 02:55:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('41', '1', NULL, '132.184.128.153', 'admin@sistematpv.com', '2021-01-29 03:02:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('42', '2', NULL, '186.1.135.79', 'administracion@dxlapparel.com', '2021-01-29 13:24:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('43', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-01-29 13:38:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('44', '1', NULL, '132.157.130.10', 'admin@sistematpv.com', '2021-01-29 14:02:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('45', '2', NULL, '186.1.135.79', 'administracion@dxlapparel.com', '2021-01-29 14:14:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('46', '2', NULL, '201.212.119.152', 'administracion@dxlapparel.com', '2021-01-29 15:42:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('47', '2', NULL, '186.1.135.79', 'administracion@dxlapparel.com', '2021-01-29 15:57:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('48', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-01-29 16:06:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('49', '2', NULL, '186.1.135.79', 'administracion@dxlapparel.com', '2021-01-29 16:17:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('50', '1', NULL, '190.238.217.7', 'admin@sistematpv.com', '2021-01-29 22:32:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('51', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-01-30 16:25:59');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('52', '2', NULL, '186.1.135.133', 'administracion@dxlapparel.com', '2021-02-01 14:32:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('53', '2', NULL, '186.1.135.133', 'administracion@dxlapparel.com', '2021-02-01 14:54:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('54', '2', NULL, '186.1.135.133', 'administracion@dxlapparel.com', '2021-02-01 18:05:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('55', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-01 19:32:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('56', '2', NULL, '186.1.135.133', 'administracion@dxlapparel.com', '2021-02-01 20:03:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('57', '1', NULL, '132.184.130.201', 'admin@sistematpv.com', '2021-02-01 20:41:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('58', '1', NULL, '132.184.130.201', 'admin@sistematpv.com', '2021-02-01 20:49:07');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('59', '1', NULL, '190.237.243.105', 'admin@sistematpv.com', '2021-02-02 02:01:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('60', '1', NULL, '132.184.128.169', 'admin@sistematpv.com', '2021-02-02 02:11:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('61', '2', NULL, '186.1.135.133', 'administracion@dxlapparel.com', '2021-02-02 12:40:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('62', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-02 14:26:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('63', '1', NULL, '132.184.130.216', 'admin@sistematpv.com', '2021-02-02 20:32:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('64', '2', NULL, '186.1.135.133', 'administracion@dxlapparel.com', '2021-02-02 20:50:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('65', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-02 21:24:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('66', '1', NULL, '190.239.238.60', 'admin@sistematpv.com', '2021-02-02 23:36:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('67', '2', NULL, '186.1.135.142', 'administracion@dxlapparel.com', '2021-02-03 13:18:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('68', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-03 14:51:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('69', '2', NULL, '186.1.135.76', 'administracion@dxlapparel.com', '2021-02-03 15:04:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('70', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-04 12:41:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('71', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-04 13:14:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('72', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-04 15:59:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('73', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-04 16:41:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('74', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-04 19:12:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('75', '2', NULL, '186.1.135.138', 'administracion@dxlapparel.com', '2021-02-04 21:38:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('76', '2', NULL, '186.1.135.135', 'administracion@dxlapparel.com', '2021-02-05 12:41:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('77', '2', NULL, '186.1.135.135', 'administracion@dxlapparel.com', '2021-02-05 13:54:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('78', '2', NULL, '186.1.135.135', 'administracion@dxlapparel.com', '2021-02-05 14:35:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('79', '2', NULL, '186.1.135.135', 'administracion@dxlapparel.com', '2021-02-05 14:35:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('80', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-05 14:58:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('81', '1', NULL, '132.184.130.166', 'admin@sistematpv.com', '2021-02-05 16:09:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('82', '2', NULL, '186.1.135.135', 'administracion@dxlapparel.com', '2021-02-05 20:15:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('83', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-05 21:00:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('84', '2', NULL, '186.1.135.135', 'administracion@dxlapparel.com', '2021-02-05 21:28:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('85', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-02-08 12:45:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('86', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-08 15:37:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('87', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-02-08 15:53:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('88', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-02-08 18:57:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('89', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-02-08 19:36:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('90', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-02-08 19:44:42');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('91', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-08 20:05:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('92', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-02-08 21:22:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('93', '1', NULL, '190.236.26.74', 'admin@sistematpv.com', '2021-02-09 02:00:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('94', '2', NULL, '186.1.135.132', 'administracion@dxlapparel.com', '2021-02-09 12:51:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('95', '2', NULL, '186.1.135.132', 'administracion@dxlapparel.com', '2021-02-09 13:42:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('96', '2', NULL, '186.1.135.132', 'administracion@dxlapparel.com', '2021-02-09 13:50:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('97', '1', NULL, '190.238.217.8', 'admin@sistematpv.com', '2021-02-09 15:12:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('98', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-09 17:59:07');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('99', '1', NULL, '190.238.217.9', 'admin@sistematpv.com', '2021-02-09 18:32:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('100', '2', NULL, '186.1.135.158', 'administracion@dxlapparel.com', '2021-02-09 19:06:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('101', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-09 20:20:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('102', '1', NULL, '201.212.119.152', 'Admin@sistematpv.com', '2021-02-09 20:35:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('103', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-09 20:39:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('104', '2', NULL, '186.1.135.158', 'administracion@dxlapparel.com', '2021-02-09 22:43:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('105', '2', NULL, '186.1.135.158', 'administracion@dxlapparel.com', '2021-02-09 22:59:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('106', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-02-10 20:54:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('107', '2', NULL, '186.1.135.138', 'administracion@dxlapparel.com', '2021-02-11 12:43:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('108', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-11 14:54:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('109', '2', NULL, '186.1.135.150', 'administracion@dxlapparel.com', '2021-02-12 13:24:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('110', '2', NULL, '186.1.135.150', 'administracion@dxlapparel.com', '2021-02-12 18:27:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('111', '2', NULL, '186.1.135.150', 'administracion@dxlapparel.com', '2021-02-12 20:25:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('112', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-02-13 10:25:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('113', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-02-14 08:23:26');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('114', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-02-14 08:23:26');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('115', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-15 13:12:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('116', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-15 19:15:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('117', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-15 19:18:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('118', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-15 21:12:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('119', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-15 21:35:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('120', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-02-15 22:06:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('121', '2', NULL, '186.1.135.70', 'administracion@dxlapparel.com', '2021-02-16 16:31:36');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('122', '2', NULL, '186.1.135.70', 'administracion@dxlapparel.com', '2021-02-16 21:26:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('123', '1', NULL, '132.184.128.61', 'admin@sistematpv.com', '2021-02-17 03:07:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('124', '2', NULL, '186.1.135.147', 'administracion@dxlapparel.com', '2021-02-17 14:28:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('125', '2', NULL, '186.1.135.147', 'administracion@dxlapparel.com', '2021-02-17 16:27:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('126', '1', NULL, '190.236.31.249', 'admin@sistematpv.com', '2021-02-17 17:14:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('127', '2', NULL, '186.1.135.147', 'administracion@dxlapparel.com', '2021-02-17 20:02:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('128', '2', NULL, '186.1.135.137', 'administracion@dxlapparel.com', '2021-02-18 13:06:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('129', '2', NULL, '186.1.135.137', 'administracion@dxlapparel.com', '2021-02-18 13:45:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('130', '2', NULL, '186.1.135.71', 'administracion@dxlapparel.com', '2021-02-18 15:59:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('131', '2', NULL, '186.1.135.71', 'administracion@dxlapparel.com', '2021-02-18 20:28:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('132', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-02-19 13:50:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('133', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-02-21 09:55:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('134', '2', NULL, '186.1.135.146', 'administracion@dxlapparel.com', '2021-02-22 13:57:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('135', '2', NULL, '186.1.135.146', 'administracion@dxlapparel.com', '2021-02-22 16:31:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('136', '2', NULL, '186.1.135.146', 'administracion@dxlapparel.com', '2021-02-22 18:45:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('137', '2', NULL, '186.1.135.146', 'administracion@dxlapparel.com', '2021-02-22 20:15:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('138', '2', NULL, '186.1.135.146', 'administracion@dxlapparel.com', '2021-02-22 21:22:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('139', '1', NULL, '201.212.119.152', 'admin@sistematpv.com', '2021-02-23 04:46:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('140', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-02-23 12:25:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('141', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-02-23 13:30:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('142', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-02-23 15:32:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('143', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-02-23 20:49:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('144', '2', NULL, '186.1.135.137', 'administracion@dxlapparel.com', '2021-02-24 13:27:15');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('145', '2', NULL, '186.1.135.137', 'administracion@dxlapparel.com', '2021-02-24 14:38:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('146', '1', NULL, '190.232.180.131', 'admin@sistematpv.com', '2021-02-24 17:22:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('147', '2', NULL, '186.1.135.137', 'administracion@dxlapparel.com', '2021-02-24 20:43:07');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('148', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-02-25 15:15:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('149', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-02-25 17:36:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('150', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-02-25 19:46:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('151', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-02-25 22:00:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('152', '2', NULL, '186.1.135.130', 'administracion@dxlapparel.com', '2021-02-26 13:12:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('153', '2', NULL, '186.1.135.130', 'administracion@dxlapparel.com', '2021-02-26 19:03:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('154', '2', NULL, '186.1.135.130', 'administracion@dxlapparel.com', '2021-02-26 21:11:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('155', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-02-27 14:53:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('156', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-03-01 02:51:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('157', '1', NULL, '190.239.238.60', 'admin@sistematpv.com', '2021-03-01 15:06:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('158', '2', NULL, '186.1.135.142', 'administracion@dxlapparel.com', '2021-03-01 16:49:10');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('159', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-02 13:46:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('160', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-03-02 14:23:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('161', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-03-02 15:53:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('162', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-03-02 22:19:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('163', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-03-03 11:33:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('164', '2', NULL, '190.237.172.147', 'administracion@dxlapparel.com', '2021-03-03 11:33:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('165', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-03 13:24:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('166', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-03 13:34:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('167', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-03 20:13:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('168', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-04 15:03:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('169', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-04 15:23:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('170', '2', NULL, '186.1.135.140', 'administracion@dxlapparel.com', '2021-03-04 18:26:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('171', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-05 15:53:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('172', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-05 20:05:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('173', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-05 21:59:34');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('174', '2', NULL, '190.237.172.109', 'administracion@dxlapparel.com', '2021-03-07 11:13:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('175', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-08 00:57:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('176', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-08 01:19:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('177', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-03-08 13:30:59');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('178', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-03-08 20:18:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('179', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-03-08 20:20:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('180', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-09 13:28:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('181', '2', NULL, '186.1.135.144', 'administracion@dxlapparel.com', '2021-03-09 13:36:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('182', '2', NULL, '186.1.135.144', 'administracion@dxlapparel.com', '2021-03-09 19:28:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('183', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-09 20:38:08');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('184', '2', NULL, '186.1.135.143', 'administracion@dxlapparel.com', '2021-03-10 15:58:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('185', '2', NULL, '186.1.135.143', 'administracion@dxlapparel.com', '2021-03-10 21:50:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('186', '2', NULL, '186.1.135.143', 'administracion@dxlapparel.com', '2021-03-10 22:20:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('187', '2', NULL, '186.1.135.132', 'administracion@dxlapparel.com', '2021-03-11 13:48:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('188', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-11 16:26:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('189', '2', NULL, '186.1.135.132', 'administracion@dxlapparel.com', '2021-03-11 21:06:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('190', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-11 21:36:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('191', '1', NULL, '190.192.49.231', 'admin@sistematpv.com', '2021-03-12 13:42:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('192', '2', NULL, '186.1.135.143', 'administracion@dxlapparel.com', '2021-03-12 15:44:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('193', '2', NULL, '179.6.212.129', 'administracion@dxlapparel.com', '2021-03-12 15:50:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('194', '2', NULL, '186.1.135.143', 'administracion@dxlapparel.com', '2021-03-12 20:22:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('195', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-03-15 15:20:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('196', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-03-15 16:17:42');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('197', '2', NULL, '186.1.135.143', 'administracion@dxlapparel.com', '2021-03-16 13:33:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('198', '2', NULL, '186.1.135.143', 'administracion@dxlapparel.com', '2021-03-16 16:11:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('199', '2', NULL, '148.102.22.241', 'administracion@dxlapparel.com', '2021-03-16 16:34:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('200', '2', NULL, '190.237.172.53', 'administracion@dxlapparel.com', '2021-03-17 18:03:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('201', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-17 18:26:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('202', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-17 19:18:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('203', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-18 15:35:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('204', '2', NULL, '190.237.172.53', 'administracion@dxlapparel.com', '2021-03-18 15:37:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('205', '2', NULL, '190.239.70.53', 'administracion@dxlapparel.com', '2021-03-18 15:48:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('206', '2', NULL, '190.237.172.53', 'administracion@dxlapparel.com', '2021-03-18 19:16:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('207', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-19 15:06:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('208', '2', NULL, '190.237.172.53', 'administracion@dxlapparel.com', '2021-03-19 17:42:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('209', '2', NULL, '186.1.135.66', 'administracion@dxlapparel.com', '2021-03-22 13:25:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('210', '2', NULL, '186.1.135.66', 'administracion@dxlapparel.com', '2021-03-22 14:24:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('211', '2', NULL, '186.1.135.66', 'administracion@dxlapparel.com', '2021-03-22 17:12:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('212', '2', NULL, '186.1.135.66', 'administracion@dxlapparel.com', '2021-03-22 18:22:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('213', '2', NULL, '186.1.135.66', 'administracion@dxlapparel.com', '2021-03-22 18:33:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('214', '2', NULL, '186.1.135.66', 'administracion@dxlapparel.com', '2021-03-22 19:53:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('215', '2', NULL, '186.1.135.138', 'administracion@dxlapparel.com', '2021-03-24 15:28:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('216', '2', NULL, '186.1.135.138', 'administracion@dxlapparel.com', '2021-03-24 15:28:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('217', '2', NULL, '186.1.135.79', 'administracion@dxlapparel.com', '2021-03-24 16:23:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('218', '2', NULL, '186.1.135.79', 'administracion@dxlapparel.com', '2021-03-24 16:23:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('219', '2', NULL, '186.1.135.79', 'administracion@dxlapparel.com', '2021-03-24 20:48:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('220', '2', NULL, '132.191.2.144', 'administracion@dxlapparel.com', '2021-03-25 14:30:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('221', '2', NULL, '148.102.22.241', 'administracion@dxlapparel.com', '2021-03-25 16:18:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('222', '2', NULL, '148.102.22.241', 'administracion@dxlapparel.com', '2021-03-25 16:37:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('223', '2', NULL, '148.102.22.241', 'administracion@dxlapparel.com', '2021-03-25 20:12:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('224', '2', NULL, '190.236.0.145', 'administracion@dxlapparel.com', '2021-03-25 22:24:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('225', '2', NULL, '186.1.135.157', 'administracion@dxlapparel.com', '2021-03-26 13:27:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('226', '2', NULL, '186.1.135.149', 'administracion@dxlapparel.com', '2021-03-26 14:20:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('227', '2', NULL, '186.1.135.149', 'administracion@dxlapparel.com', '2021-03-26 20:24:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('228', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-27 12:17:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('229', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-27 12:26:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('230', '2', NULL, '190.237.172.96', 'administracion@dxlapparel.com', '2021-03-27 14:09:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('231', '2', NULL, '190.237.172.96', 'administracion@dxlapparel.com', '2021-03-27 21:51:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('232', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-27 22:17:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('233', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-29 00:42:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('234', '2', NULL, '186.1.135.130', 'administracion@dxlapparel.com', '2021-03-29 13:25:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('235', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-30 14:24:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('236', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-30 20:59:36');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('237', '2', NULL, '186.1.135.141', 'administracion@dxlapparel.com', '2021-03-31 13:25:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('238', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-03-31 19:47:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('239', '2', NULL, '190.239.238.126', 'administracion@dxlapparel.com', '2021-04-01 14:01:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('240', '1', NULL, '190.239.238.126', 'admin@sistematpv.com', '2021-04-02 21:23:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('241', '1', NULL, '132.184.129.122', 'admin@sistematpv.com', '2021-04-03 02:08:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('242', '1', NULL, '132.157.130.180', 'admin@sistematpv.com', '2021-04-03 20:52:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('243', '1', NULL, '132.184.128.25', 'admin@sistematpv.com', '2021-04-03 23:40:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('244', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-04-05 13:31:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('245', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-04-05 17:38:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('246', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-04-05 20:32:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('247', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-04-05 22:24:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('248', '2', NULL, '190.236.5.11', 'administracion@dxlapparel.com', '2021-04-06 13:16:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('249', '2', NULL, '190.236.5.11', 'administracion@dxlapparel.com', '2021-04-06 13:33:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('250', '2', NULL, '190.236.5.11', 'administracion@dxlapparel.com', '2021-04-06 13:53:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('251', '1', NULL, '132.157.129.160', 'admin@sistematpv.com', '2021-04-06 14:24:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('252', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-06 15:31:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('253', '1', NULL, '132.157.129.160', 'admin@sistematpv.com', '2021-04-06 17:22:15');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('254', '2', NULL, '186.1.135.130', 'administracion@dxlapparel.com', '2021-04-06 19:52:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('255', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-04-06 22:08:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('256', '2', NULL, '186.1.135.135', 'administracion@dxlapparel.com', '2021-04-07 13:19:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('257', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-04-07 13:43:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('258', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-04-07 13:45:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('259', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-04-07 15:26:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('260', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-04-07 20:25:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('261', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-08 13:22:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('262', '2', NULL, '186.1.135.136', 'administracion@dxlapparel.com', '2021-04-08 14:02:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('263', '2', NULL, '186.1.135.136', 'administracion@dxlapparel.com', '2021-04-08 14:12:59');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('264', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-08 18:55:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('265', '2', NULL, '186.1.135.136', 'administracion@dxlapparel.com', '2021-04-08 19:39:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('266', '2', NULL, '186.1.135.136', 'administracion@dxlapparel.com', '2021-04-08 21:33:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('267', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-04-09 13:00:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('268', '2', NULL, '179.6.222.7', 'administracion@dxlapparel.com', '2021-04-09 21:54:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('269', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-10 13:46:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('270', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-04-12 13:25:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('271', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-04-12 14:05:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('272', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-04-12 14:09:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('273', '2', NULL, '186.1.135.129', 'administracion@dxlapparel.com', '2021-04-12 19:13:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('274', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-13 14:54:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('275', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-04-13 17:38:07');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('276', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-13 17:40:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('277', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-13 19:32:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('278', '2', NULL, '186.1.135.131', 'administracion@dxlapparel.com', '2021-04-13 20:55:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('279', '2', NULL, '186.1.135.153', 'administracion@dxlapparel.com', '2021-04-14 14:27:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('280', '2', NULL, '186.1.135.153', 'administracion@dxlapparel.com', '2021-04-14 15:41:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('281', '1', NULL, '132.184.129.157', 'admin@sistematpv.com', '2021-04-15 16:11:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('282', '2', NULL, '186.1.135.154', 'administracion@dxlapparel.com', '2021-04-15 19:34:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('283', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-04-16 15:32:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('284', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-04-16 16:04:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('285', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-04-16 16:33:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('286', '2', NULL, '186.1.135.134', 'administracion@dxlapparel.com', '2021-04-16 18:55:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('287', '2', NULL, '186.1.135.159', 'administracion@dxlapparel.com', '2021-04-19 13:44:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('288', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-19 16:55:13');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('289', '1', NULL, '190.235.15.24', 'admin@sistematpv.com', '2021-04-19 17:25:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('290', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-04-19 17:33:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('291', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-19 17:55:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('292', '1', NULL, '190.235.15.24', 'admin@sistematpv.com', '2021-04-19 20:04:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('293', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-20 18:19:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('294', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-21 14:45:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('295', '1', NULL, '181.64.18.3', 'admin@sistematpv.com', '2021-04-22 20:18:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('296', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-23 14:47:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('297', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-23 16:04:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('298', '1', NULL, '181.64.18.3', 'admin@sistematpv.com', '2021-04-23 17:04:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('299', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-23 17:05:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('300', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-23 17:21:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('301', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-23 17:29:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('302', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-23 17:36:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('303', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-23 21:01:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('304', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-26 13:33:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('305', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-26 13:38:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('306', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-26 15:47:13');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('307', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-26 16:23:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('308', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-26 20:30:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('309', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-27 14:29:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('310', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-27 14:36:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('311', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-27 15:00:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('312', '1', NULL, '190.236.28.76', 'admin@sistematpv.com', '2021-04-27 15:31:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('313', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-28 13:46:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('314', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-28 17:27:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('315', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-04-28 17:40:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('316', '1', NULL, '201.230.81.79', 'admin@sistematpv.com', '2021-04-28 17:48:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('317', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-04-28 18:48:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('318', '1', NULL, '181.64.93.165', 'admin@sistematpv.com', '2021-04-29 17:36:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('319', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-29 17:38:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('320', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-29 20:07:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('321', '1', NULL, '181.64.93.165', 'admin@sistematpv.com', '2021-04-29 20:07:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('322', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-30 13:30:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('323', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-30 16:06:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('324', '1', NULL, '201.230.81.79', 'admin@sistematpv.com', '2021-04-30 16:27:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('325', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-04-30 19:59:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('326', '1', NULL, '190.43.38.234', 'admin@sistematpv.com', '2021-04-30 22:57:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('327', '1', NULL, '190.239.238.200', 'admin@sistematpv.com', '2021-05-01 20:30:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('328', '1', NULL, '190.43.38.234', 'admin@sistematpv.com', '2021-05-02 16:42:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('329', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-03 14:39:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('330', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-03 16:36:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('331', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-03 20:12:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('332', '1', NULL, '190.43.38.234', 'admin@sistematpv.com', '2021-05-04 14:20:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('333', '2', NULL, '190.239.66.67', 'administracion@dxlapparel.com', '2021-05-04 15:57:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('334', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-05 14:07:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('335', '1', NULL, '190.236.27.12', 'admin@sistematpv.com', '2021-05-05 14:59:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('336', '1', NULL, '190.43.38.234', 'admin@sistematpv.com', '2021-05-05 15:40:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('337', '1', NULL, '201.230.81.79', 'admin@sistematpv.com', '2021-05-05 15:40:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('338', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-05 20:12:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('339', '1', NULL, '190.43.38.234', 'admin@sistematpv.com', '2021-05-06 19:55:52');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('340', '2', NULL, '190.239.67.117', 'administracion@dxlapparel.com', '2021-05-06 20:01:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('341', '1', NULL, '190.43.38.234', 'admin@sistematpv.com', '2021-05-07 14:52:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('342', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-10 13:39:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('343', '1', NULL, '190.237.30.221', 'admin@sistematpv.com', '2021-05-10 14:31:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('344', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-10 17:00:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('345', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-10 17:06:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('346', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-10 20:05:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('347', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-10 20:05:15');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('348', '1', NULL, '190.237.30.221', 'admin@sistematpv.com', '2021-05-10 20:45:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('349', '1', NULL, '190.43.38.234', 'admin@sistematpv.com', '2021-05-10 23:35:26');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('350', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-11 14:32:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('351', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-11 17:55:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('352', '1', NULL, '190.237.30.221', 'admin@sistematpv.com', '2021-05-11 18:08:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('353', '1', NULL, '190.237.30.221', 'admin@sistematpv.com', '2021-05-11 18:08:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('354', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-11 20:15:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('355', '2', NULL, '190.239.71.47', 'administracion@dxlapparel.com', '2021-05-12 16:18:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('356', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-12 16:19:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('357', '1', NULL, '181.64.57.12', 'admin@sistematpv.com', '2021-05-12 17:21:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('358', '2', NULL, '190.239.71.47', 'administracion@dxlapparel.com', '2021-05-12 19:09:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('359', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-12 22:11:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('360', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-05-13 15:10:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('361', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-13 19:44:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('362', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-05-13 19:59:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('363', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-13 22:01:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('364', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-14 13:55:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('365', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-14 14:20:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('366', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-14 19:06:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('367', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-17 14:02:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('368', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-17 17:23:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('369', '2', NULL, '190.239.64.130', 'administracion@dxlapparel.com', '2021-05-19 15:05:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('370', '2', NULL, '190.239.64.130', 'administracion@dxlapparel.com', '2021-05-19 15:35:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('371', '1', NULL, '190.233.5.229', 'admin@sistematpv.com', '2021-05-19 15:35:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('372', '2', NULL, '132.191.2.181', 'administracion@dxlapparel.com', '2021-05-19 19:02:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('373', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-19 22:22:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('374', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-20 14:39:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('375', '2', NULL, '190.239.64.130', 'administracion@dxlapparel.com', '2021-05-20 15:25:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('376', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-20 16:53:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('377', '1', NULL, '190.233.5.229', 'admin@sistematpv.com', '2021-05-20 20:46:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('378', '2', NULL, '148.102.23.16', 'administracion@dxlapparel.com', '2021-05-20 22:20:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('379', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-21 13:44:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('380', '2', NULL, '148.102.26.11', 'administracion@dxlapparel.com', '2021-05-21 21:53:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('381', '1', NULL, '190.43.38.134', 'admin@sistematpv.com', '2021-05-22 14:24:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('382', '1', NULL, '190.43.38.134', 'admin@sistematpv.com', '2021-05-22 14:32:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('383', '1', NULL, '190.43.38.134', 'admin@sistematpv.com', '2021-05-22 14:55:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('384', '1', NULL, '190.43.38.134', 'admin@sistematpv.com', '2021-05-22 14:55:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('385', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-05-22 15:05:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('386', '1', NULL, '201.230.81.164', 'admin@sistematpv.com', '2021-05-27 16:09:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('387', '1', NULL, '201.230.81.164', 'admin@sistematpv.com', '2021-05-27 16:09:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('388', '1', NULL, '201.230.81.164', 'admin@sistematpv.com', '2021-05-27 16:10:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('389', '1', NULL, '201.230.81.164', 'admin@sistematpv.com', '2021-05-27 20:11:34');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('390', '1', NULL, '201.230.81.164', 'admin@sistematpv.com', '2021-05-27 20:12:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('391', '1', NULL, '190.237.30.46', 'admin@sistematpv.com', '2021-05-27 23:35:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('392', '1', NULL, '190.237.30.46', 'admin@sistematpv.com', '2021-05-27 23:35:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('393', '1', NULL, '181.64.105.12', 'admin@sistematpv.com', '2021-05-28 14:07:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('394', '1', NULL, '181.64.105.12', 'admin@sistematpv.com', '2021-05-28 14:21:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('395', '1', NULL, '181.64.105.12', 'admin@sistematpv.com', '2021-05-28 20:20:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('396', '1', NULL, '45.225.216.151', 'admin@sistematpv.com', '2021-05-31 22:34:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('397', '1', NULL, '190.239.192.47', 'admin@sistematpv.com', '2021-06-01 14:13:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('398', '1', NULL, '190.239.192.47', 'admin@sistematpv.com', '2021-06-01 15:45:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('399', '1', NULL, '45.225.216.151', 'admin@sistematpv.com', '2021-06-01 18:41:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('400', '1', NULL, '146.112.244.227', 'admin@sistematpv.com', '2021-06-01 20:23:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('401', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-02 16:08:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('402', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-04 14:21:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('403', '1', NULL, '190.192.49.231', 'admin@sistematpv.com', '2021-06-07 15:32:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('404', '1', NULL, '190.192.49.231', 'admin@sistematpv.com', '2021-06-07 21:16:58');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('405', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-08 13:33:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('406', '1', NULL, '186.141.135.236', 'admin@sistematpv.com', '2021-06-08 13:40:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('407', '1', NULL, '45.225.216.151', 'admin@sistematpv.com', '2021-06-09 15:25:34');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('408', '1', NULL, '45.225.216.151', 'admin@sistematpv.com', '2021-06-09 21:17:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('409', '1', NULL, '45.225.216.151', 'admin@sistematpv.com', '2021-06-10 00:00:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('410', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-10 13:32:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('411', '1', NULL, '45.225.216.151', 'admin@sistematpv.com', '2021-06-10 13:48:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('412', '1', NULL, '45.225.216.151', 'admin@sistematpv.com', '2021-06-11 12:57:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('413', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-11 19:20:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('414', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-13 01:14:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('415', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-13 04:24:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('416', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-14 17:33:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('417', '1', NULL, '45.225.216.151', 'admin@sistematpv.com', '2021-06-14 17:47:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('418', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-28 21:13:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('419', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-28 21:13:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('420', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-28 21:17:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('421', '1', NULL, '181.64.223.213', 'admin@sistematpv.com', '2021-06-28 21:18:39');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('422', '1', NULL, '181.64.223.213', 'admin@sistematpv.com', '2021-06-28 21:19:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('423', '1', NULL, '181.64.223.213', 'admin@sistematpv.com', '2021-06-28 21:19:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('424', '1', NULL, '181.64.223.213', 'admin@sistematpv.com', '2021-06-28 21:20:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('425', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-28 21:22:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('426', '1', NULL, '45.225.216.152', 'admin@sistematpv.com', '2021-06-28 22:04:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('427', '1', NULL, '45.225.216.152', 'admin@sistematpv.com', '2021-06-28 23:51:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('428', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-06-30 03:50:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('429', '1', NULL, '45.225.216.152', 'admin@sistematpv.com', '2021-06-30 13:44:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('430', '1', NULL, '45.225.216.152', 'admin@sistematpv.com', '2021-07-01 04:50:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('431', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-01 14:45:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('432', '1', NULL, '45.225.216.152', 'admin@sistematpv.com', '2021-07-02 01:22:34');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('433', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-02 01:38:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('434', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-02 04:14:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('435', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-06 17:14:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('436', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-07 00:57:59');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('437', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-07 03:31:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('438', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-09 16:40:42');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('439', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-11 21:30:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('440', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-12 02:29:42');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('441', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-14 04:02:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('442', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-07-24 04:59:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('443', '1', NULL, '161.132.238.121', 'admin@sistematpv.com', '2021-07-30 06:31:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('444', '1', NULL, '161.132.238.121', 'admin@sistematpv.com', '2021-08-07 18:47:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('445', '1', NULL, '190.43.38.246', 'admin@sistematpv.com', '2021-08-13 15:55:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('446', '1', NULL, '161.132.238.121', 'admin@sistematpv.com', '2021-08-17 13:54:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('447', '1', NULL, '161.132.238.121', 'admin@sistematpv.com', '2021-08-17 14:11:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('448', '1', NULL, '161.132.238.121', 'admin@sistematpv.com', '2021-08-17 14:15:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('449', '1', NULL, '201.212.119.152', 'admin@sistematpv.com', '2021-08-17 15:13:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('450', '1', NULL, '201.212.119.152', 'admin@sistematpv.com', '2021-08-17 15:16:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('451', '1', NULL, '201.212.119.152', 'admin@sistematpv.com', '2021-08-17 15:19:42');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('452', '1', NULL, '201.212.119.152', 'admin@sistematpv.com', '2021-08-17 15:19:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('453', '1', NULL, '161.132.238.121', 'admin@sistematpv.com', '2021-08-18 00:54:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('454', '1', NULL, '161.132.238.121', 'admin@sistematpv.com', '2021-08-31 02:39:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('455', '1', NULL, '161.132.238.121', 'admin@sistematpv.com', '2021-08-31 15:39:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('456', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-09-26 23:30:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('457', '1', NULL, '161.132.234.14', 'admin@sistematpv.com', '2021-09-27 17:27:42');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('458', '1', NULL, '181.64.18.180', 'admin@sistematpv.com', '2021-10-16 20:07:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('459', '1', NULL, '181.64.18.180', 'admin@sistematpv.com', '2021-10-18 17:41:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('460', '1', NULL, '161.132.239.98', 'admin@sistematpv.com', '2021-10-26 15:45:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('461', '1', NULL, '161.132.239.98', 'admin@sistematpv.com', '2021-11-01 20:09:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('462', '1', NULL, '161.132.239.98', 'admin@sistematpv.com', '2021-11-22 14:30:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('463', '1', NULL, '161.132.239.98', 'admin@sistematpv.com', '2021-11-24 15:38:59');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('464', '1', NULL, '161.132.239.98', 'admin@sistematpv.com', '2021-11-24 22:39:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('465', '1', NULL, '38.25.7.251', 'admin@sistematpv.com', '2022-05-12 15:24:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('466', '1', NULL, '38.25.7.251', 'admin@sistematpv.com', '2022-05-13 14:11:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('467', '1', NULL, '38.25.7.251', 'admin@sistematpv.com', '2022-05-13 22:30:27');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('468', '1', NULL, '38.25.7.251', 'admin@sistematpv.com', '2022-05-16 18:34:10');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('469', '1', NULL, '38.25.7.251', 'admin@sistematpv.com', '2022-05-18 16:45:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('470', '1', NULL, '38.25.7.251', 'admin@sistematpv.com', '2022-05-18 21:30:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('471', '1', NULL, '38.25.7.251', 'admin@sistematpv.com', '2022-05-18 21:35:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('472', '1', NULL, '38.25.7.99', 'admin@sistematpv.com', '2022-05-31 00:07:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('473', '1', NULL, '38.25.7.99', 'admin@sistematpv.com', '2022-05-31 03:24:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('474', '1', NULL, '38.25.7.99', 'admin@sistematpv.com', '2022-06-03 21:35:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('475', '1', NULL, '38.25.7.99', 'admin@sistematpv.com', '2022-06-03 21:36:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('476', '1', NULL, '201.240.25.180', 'admin@sistematpv.com', '2022-06-03 21:42:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('477', '1', NULL, '38.25.7.99', 'admin@sistematpv.com', '2022-06-06 00:06:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('478', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2022-12-12 19:48:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('479', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-13 02:55:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('480', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-13 03:49:12');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('481', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-13 04:20:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('482', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2022-12-13 14:54:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('483', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2022-12-13 14:54:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('484', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2022-12-13 14:55:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('485', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-14 03:42:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('486', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-15 02:27:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('487', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-15 03:24:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('488', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-15 03:40:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('489', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-16 15:04:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('490', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-16 15:04:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('491', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-16 15:05:25');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('492', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-16 17:19:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('493', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-17 03:46:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('494', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-17 04:28:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('495', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-17 04:53:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('496', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-17 04:54:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('497', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-17 04:58:35');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('498', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-17 05:05:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('499', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-17 15:03:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('500', '1', NULL, '190.239.64.158', 'admin@sistematpv.com', '2022-12-17 21:59:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('501', '1', NULL, '190.239.64.158', 'admin@sistematpv.com', '2022-12-17 22:14:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('502', '1', NULL, '190.236.9.128', 'admin@sistematpv.com', '2022-12-18 03:32:01');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('503', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2022-12-19 00:46:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('504', '1', NULL, '190.239.68.82', 'admin@sistematpv.com', '2022-12-20 14:38:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('505', '1', NULL, '190.235.45.172', 'admin@sistematpv.com', '2022-12-20 19:46:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('506', '1', NULL, '190.236.0.66', 'admin@sistematpv.com', '2022-12-20 22:30:07');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('507', '1', NULL, '190.235.46.177', 'admin@sistematpv.com', '2022-12-21 16:31:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('508', '1', NULL, '190.235.46.177', 'admin@sistematpv.com', '2022-12-21 23:41:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('509', '1', NULL, '190.235.46.177', 'admin@sistematpv.com', '2022-12-22 17:41:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('510', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-22 20:15:08');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('511', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-27 03:37:48');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('512', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-27 16:45:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('513', '1', NULL, '190.239.66.187', 'admin@sistematpv.com', '2022-12-27 20:14:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('514', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-28 21:48:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('515', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-29 00:02:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('516', '1', NULL, '190.43.38.149', 'admin@sistematpv.com', '2022-12-29 03:30:24');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('517', '1', NULL, '190.43.38.149', 'admin@sistematpv.com', '2022-12-29 07:01:15');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('518', '1', NULL, '190.43.38.149', 'admin@sistematpv.com', '2022-12-29 07:26:15');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('519', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-29 21:40:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('520', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-30 03:09:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('521', '1', NULL, '181.64.231.238', 'admin@sistematpv.com', '2022-12-30 03:09:14');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('522', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2022-12-30 15:08:08');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('523', '1', NULL, '38.25.16.150', 'admin@sistematpv.com', '2023-01-04 00:44:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('524', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2023-01-05 02:12:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('525', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2023-01-05 02:13:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('526', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2023-01-05 02:18:21');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('527', '1', NULL, '38.25.16.18', 'admin@sistematpv.com', '2023-01-05 03:14:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('528', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2023-01-05 04:49:13');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('529', '1', NULL, '38.25.16.18', 'admin@sistematpv.com', '2023-01-05 16:40:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('530', '1', NULL, '38.25.16.18', 'admin@sistematpv.com', '2023-01-06 00:07:00');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('531', '1', NULL, '201.230.205.217', 'admin@sistematpv.com', '2023-01-06 01:55:40');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('532', '1', NULL, '181.176.125.91', 'admin@sistematpv.com', '2023-01-09 14:23:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('533', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2023-01-09 15:37:04');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('534', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2023-01-13 22:14:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('535', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2023-01-13 22:14:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('536', '1', NULL, '181.176.108.35', 'admin@sistematpv.com', '2023-01-16 14:26:08');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('537', '1', NULL, '181.176.103.132', 'admin@sistematpv.com', '2023-01-17 18:22:07');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('538', '1', NULL, '181.176.102.27', 'admin@sistematpv.com', '2023-01-24 14:14:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('539', '1', NULL, '181.176.117.131', 'admin@sistematpv.com', '2023-01-26 23:45:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('540', '1', NULL, '181.176.109.80', 'admin@sistematpv.com', '2023-01-27 17:57:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('541', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2023-01-27 19:38:49');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('542', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2023-01-27 19:38:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('543', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2023-01-27 19:39:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('544', '1', NULL, '181.176.109.80', 'admin@sistematpv.com', '2023-01-27 20:49:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('545', '1', NULL, '181.176.114.37', 'admin@sistematpv.com', '2023-01-28 16:17:53');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('546', '1', NULL, '181.176.114.37', 'admin@sistematpv.com', '2023-01-28 17:22:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('547', '1', NULL, '181.176.121.19', 'admin@sistematpv.com', '2023-01-31 00:53:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('548', '1', NULL, '181.176.121.19', 'admin@sistematpv.com', '2023-01-31 14:04:09');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('549', '1', NULL, '181.176.117.171', 'admin@sistematpv.com', '2023-02-01 16:04:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('550', '1', NULL, '181.176.122.57', 'admin@sistematpv.com', '2023-02-05 20:03:28');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('551', '1', NULL, '181.176.107.81', 'admin@sistematpv.com', '2023-02-07 13:54:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('552', '1', NULL, '181.176.113.174', 'admin@sistematpv.com', '2023-02-08 15:39:13');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('553', '1', NULL, '181.176.124.89', 'admin@sistematpv.com', '2023-02-08 19:20:29');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('554', '1', NULL, '181.176.107.88', 'admin@sistematpv.com', '2023-02-15 15:46:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('555', '1', NULL, '181.176.107.88', 'admin@sistematpv.com', '2023-02-15 19:35:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('556', '1', NULL, '181.176.109.242', 'admin@sistematpv.com', '2023-02-16 21:40:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('557', '1', NULL, '181.176.97.28', 'admin@sistematpv.com', '2023-02-17 15:51:38');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('558', '1', NULL, '181.67.49.46', 'admin@sistematpv.com', '2023-02-25 14:10:03');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('559', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2023-04-13 19:52:30');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('560', '1', NULL, '201.230.205.189', 'admin@sistematpv.com', '2023-04-18 01:29:43');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('561', '1', NULL, '38.25.26.18', 'admin@sistematpv.com', '2023-04-18 03:42:20');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('562', '1', NULL, '45.177.196.194', 'admin@sistematpv.com', '2023-04-19 14:00:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('563', '1', NULL, '190.237.34.224', 'admin@sistematpv.com', '2023-05-16 03:39:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('564', '1', NULL, '177.91.248.76', 'admin@sistematpv.com', '2023-05-23 16:55:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('565', '1', NULL, '177.91.248.76', 'admin@sistematpv.com', '2023-05-30 17:11:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('566', '1', NULL, '181.67.2.242', 'admin@sistematpv.com', '2023-06-28 04:23:55');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('567', '1', NULL, '181.67.2.242', 'admin@sistematpv.com', '2023-06-28 16:02:10');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('568', '1', NULL, '181.67.2.242', 'admin@sistematpv.com', '2023-06-28 16:02:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('569', '1', NULL, '181.67.2.242', 'admin@sistematpv.com', '2023-06-28 22:50:45');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('570', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-06-30 02:40:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('571', '1', NULL, '190.234.141.82', 'admin@sistematpv.com', '2023-06-30 03:21:17');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('572', '1', NULL, '181.67.2.242', 'admin@sistematpv.com', '2023-06-30 15:51:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('573', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-07-04 02:28:05');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('574', '1', NULL, '181.67.2.234', 'admin@sistematpv.com', '2023-07-04 02:37:56');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('575', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-07-06 02:05:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('576', '1', NULL, '181.67.2.234', 'admin@sistematpv.com', '2023-07-07 02:09:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('577', '1', NULL, '181.67.2.234', 'admin@sistematpv.com', '2023-07-07 03:01:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('578', '1', NULL, '181.67.2.234', 'admin@sistematpv.com', '2023-07-07 16:19:08');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('579', '1', NULL, '181.67.2.234', 'admin@sistematpv.com', '2023-07-11 05:03:22');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('580', '1', NULL, '181.66.176.124', 'admin@sistematpv.com', '2023-08-09 06:58:50');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('581', '1', NULL, '38.25.16.184', 'admin@sistematpv.com', '2023-08-25 14:30:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('582', '1', NULL, '38.25.16.184', 'admin@sistematpv.com', '2023-08-25 14:52:31');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('583', '1', NULL, '201.230.205.208', 'admin@sistematpv.com', '2023-09-14 00:56:33');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('584', '1', NULL, '201.230.205.208', 'admin@sistematpv.com', '2023-09-14 01:16:41');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('585', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-09-14 01:17:26');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('586', '1', NULL, '201.230.205.235', 'admin@sistematpv.com', '2023-09-22 15:50:11');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('587', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-09-25 16:15:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('588', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-10-11 02:04:44');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('589', '1', NULL, '201.230.205.28', 'admin@sistematpv.com', '2023-10-16 16:25:15');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('590', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-10-16 17:05:19');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('591', '1', NULL, '201.230.205.165', 'admin@sistematpv.com', '2023-10-27 21:51:32');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('592', '1', NULL, '179.6.1.37', 'admin@sistematpv.com', '2023-10-27 22:09:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('593', '1', NULL, '201.230.205.165', 'admin@sistematpv.com', '2023-10-28 04:54:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('594', '1', NULL, '201.230.205.196', 'admin@sistematpv.com', '2023-10-31 02:00:06');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('595', '1', NULL, '201.230.205.196', 'admin@sistematpv.com', '2023-10-31 04:40:54');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('596', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-10-31 04:51:37');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('597', '1', NULL, '201.230.205.196', 'admin@sistematpv.com', '2023-10-31 20:43:51');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('598', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-11-01 00:22:13');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('599', '1', NULL, '201.230.205.150', 'admin@sistematpv.com', '2023-11-01 19:21:02');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('600', '1', NULL, '38.25.16.184', 'admin@sistematpv.com', '2023-11-01 22:07:18');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('601', '1', NULL, '38.25.16.38', 'admin@sistematpv.com', '2023-11-02 02:29:08');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('602', '1', NULL, '38.25.16.184', 'admin@sistematpv.com', '2023-11-02 17:22:47');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('603', '1', NULL, '179.6.161.87', 'admin@sistematpv.com', '2023-11-02 18:14:57');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('604', '1', NULL, '38.25.16.184', 'admin@sistematpv.com', '2023-11-02 18:27:16');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('605', '1', NULL, '181.176.209.242', 'admin@sistematpv.com', '2023-11-02 23:25:46');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('606', '1', NULL, '181.176.209.242', 'admin@sistematpv.com', '2023-11-02 23:28:23');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('607', '1', NULL, '181.176.209.242', 'admin@sistematpv.com', '2023-11-02 23:30:08');
INSERT INTO `tec_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES ('608', '1', NULL, '181.176.209.242', 'admin@sistematpv.com', '2023-11-02 23:32:27');


#
# TABLE STRUCTURE FOR: tec_users
#

DROP TABLE IF EXISTS `tec_users`;

CREATE TABLE `tec_users` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `last_ip_address` varbinary(45) DEFAULT NULL,
  `ip_address` varbinary(45) DEFAULT NULL,
  `username` varchar(100) NOT NULL,
  `password` varchar(40) NOT NULL,
  `salt` varchar(40) DEFAULT NULL,
  `email` varchar(100) NOT NULL,
  `activation_code` varchar(40) DEFAULT NULL,
  `forgotten_password_code` varchar(40) DEFAULT NULL,
  `forgotten_password_time` int(11) unsigned DEFAULT NULL,
  `remember_code` varchar(40) DEFAULT NULL,
  `created_on` int(11) unsigned NOT NULL,
  `last_login` int(11) unsigned DEFAULT NULL,
  `active` tinyint(1) unsigned DEFAULT NULL,
  `first_name` varchar(50) DEFAULT NULL,
  `last_name` varchar(50) DEFAULT NULL,
  `company` varchar(100) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `avatar` varchar(55) DEFAULT NULL,
  `gender` varchar(20) DEFAULT NULL,
  `group_id` int(11) unsigned NOT NULL DEFAULT '2',
  PRIMARY KEY (`id`),
  KEY `group_id` (`group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;

INSERT INTO `tec_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`) VALUES ('1', '181.176.209.242', '190.235.78.55', 'admin', '4c547a4ab4036b371474bd00c813bdf590d627ca', NULL, 'admin@sistematpv.com', NULL, NULL, NULL, NULL, '1534958951', '1698967947', '1', 'Admin', 'TPV', NULL, '123456789', NULL, 'male', '1');
INSERT INTO `tec_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`) VALUES ('2', '148.102.26.11', '::1', 'dxlapparelgroup', '51e52403c17e0102737afb581fcb14d40976fad7', NULL, 'administracion@dxlapparel.com', NULL, NULL, NULL, NULL, '1611076625', '1621634020', '1', 'Nancy', 'Huaman ', NULL, '975 591 787', NULL, 'male', '1');
INSERT INTO `tec_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`) VALUES ('12', NULL, '38.25.16.184', 'pierito_1-1', 'dbf7abbf4a0baaadaf457b5054fd67dadab3d9db', NULL, 'prueba@gmail.com', NULL, NULL, NULL, NULL, '1698953763', '1698953763', '1', 'Piero', 'PieroApe', NULL, '999999999', NULL, 'male', '3');
INSERT INTO `tec_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`) VALUES ('13', NULL, '38.25.16.184', 'keny10_0y', '44b5601aa093a319d2de5441b0efd2424feb8554', NULL, 'kenyyprueba@gmail.com', NULL, NULL, NULL, NULL, '1698953832', '1698953832', '0', 'Kenyy', 'KenyyApe', NULL, '988888889', NULL, 'male', '2');


#
# TABLE STRUCTURE FOR: tec_warehouse_stock
#

DROP TABLE IF EXISTS `tec_warehouse_stock`;

CREATE TABLE `tec_warehouse_stock` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `warehouse_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `stock` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=244 DEFAULT CHARSET=utf8;

INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('1', '1', '1', '61');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('2', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('3', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('4', '1', '1', '28');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('5', '1', '1', '11');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('6', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('7', '1', '1', '88');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('8', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('9', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('10', '1', '1', '21');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('11', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('12', '1', '1', '2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('13', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('14', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('15', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('16', '1', '1', '120');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('17', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('18', '1', '1', '371');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('19', '1', '1', '86');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('20', '1', '1', '163');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('21', '1', '1', '133');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('22', '1', '1', '106');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('23', '1', '1', '115');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('24', '1', '1', '103');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('25', '1', '1', '263');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('26', '1', '1', '325');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('27', '1', '1', '81');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('28', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('29', '1', '1', '34');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('30', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('31', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('32', '1', '1', '6');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('33', '1', '1', '8');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('34', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('35', '1', '1', '51');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('36', '1', '1', '1600');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('37', '1', '1', '2225');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('38', '1', '1', '550');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('39', '1', '1', '2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('40', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('41', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('42', '1', '1', '409');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('43', '1', '1', '152');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('44', '1', '1', '317');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('45', '1', '1', '49');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('46', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('47', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('48', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('49', '1', '1', '21');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('50', '1', '1', '10');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('51', '1', '1', '4');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('52', '1', '1', '2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('53', '1', '1', '454');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('54', '1', '1', '55');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('55', '1', '1', '9');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('56', '1', '1', '42');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('57', '1', '1', '31');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('58', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('59', '1', '1', '63');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('60', '1', '1', '294');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('61', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('62', '1', '1', '13');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('63', '1', '1', '80');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('64', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('65', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('66', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('67', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('68', '1', '1', '3');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('69', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('70', '1', '1', '70');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('71', '1', '1', '102');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('72', '1', '1', '2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('73', '1', '1', '6');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('74', '1', '1', '17');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('75', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('76', '1', '1', '150');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('77', '1', '1', '60');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('78', '1', '1', '4');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('79', '1', '1', '6');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('80', '1', '1', '2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('81', '1', '1', '11');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('82', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('83', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('84', '1', '1', '8');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('85', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('86', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('87', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('88', '1', '1', '1100');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('89', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('90', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('91', '1', '1', '6');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('92', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('93', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('94', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('95', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('96', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('97', '1', '1', '12');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('98', '1', '1', '130');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('99', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('100', '1', '1', '18');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('101', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('102', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('103', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('104', '1', '1', '2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('105', '1', '1', '10');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('106', '1', '1', '19');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('107', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('108', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('109', '1', '1', '24');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('110', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('111', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('112', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('113', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('114', '1', '1', '2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('115', '1', '1', '38');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('116', '1', '1', '53');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('117', '1', '1', '16');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('118', '1', '1', '7');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('119', '1', '1', '1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('120', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('121', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('122', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('123', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('124', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('125', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('126', '1', '1', '40');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('127', '1', '1', '35');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('128', '1', '1', '40');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('129', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('130', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('131', '1', '1', '17');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('132', '1', '1', '48');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('133', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('134', '1', '1', '61');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('135', '1', '1', '2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('136', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('137', '1', '1', '96');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('138', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('139', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('140', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('141', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('142', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('143', '1', '1', '3');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('144', '1', '1', '33');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('145', '1', '1', '311');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('146', '1', '1', '401');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('147', '1', '1', '1785');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('148', '1', '1', '1588');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('149', '1', '1', '158');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('150', '1', '1', '75');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('151', '1', '1', '967');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('152', '1', '1', '3792');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('153', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('154', '1', '1', '-279');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('155', '1', '1', '-20');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('156', '1', '1', '18602');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('157', '1', '1', '7620');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('158', '1', '1', '19');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('159', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('160', '1', '1', '960');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('161', '1', '1', '10440');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('162', '1', '1', '870');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('163', '1', '1', '1270');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('164', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('165', '1', '1', '471');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('166', '1', '1', '141');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('167', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('168', '1', '1', '130');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('169', '1', '1', '471');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('170', '1', '1', '15');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('171', '1', '1', '539');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('172', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('173', '1', '1', '330');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('174', '1', '1', '14');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('175', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('176', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('177', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('178', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('179', '1', '1', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('180', '1', '1', '3810');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('181', '1', '1', '574');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('182', '1', '145', '-28960');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('183', '1', '21', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('184', '1', '20', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('185', '1', '19', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('186', '1', '22', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('187', '1', '155', '-3901');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('188', '1', '154', '-2991');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('189', '1', '24', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('190', '1', '152', '-3270');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('191', '1', '23', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('192', '1', '148', '-134259');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('193', '1', '151', '-658');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('194', '1', '147', '-20060');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('195', '1', '146', '-15895');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('196', '1', '182', '-21');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('197', '1', '150', '-3897');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('198', '1', '149', '-2175');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('199', '1', '153', '-208');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('200', '1', '183', '-912');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('201', '1', '188', '-43');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('202', '1', '36', '-216');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('203', '1', '156', '-9416');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('204', '1', '194', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('205', '1', '30', '-3616');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('206', '1', '196', '-1605');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('207', '1', '185', '-1260');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('208', '1', '198', '-20');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('209', '1', '177', '0');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('210', '1', '175', '-10');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('211', '1', '176', '-10');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('212', '1', '199', '-10');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('213', '1', '76', '-20');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('214', '1', '50', '-12');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('215', '1', '3', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('216', '1', '32', '-5');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('217', '1', '204', '-33');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('218', '1', '12', '-3000');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('219', '1', '207', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('220', '1', '200', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('221', '1', '78', '-3');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('222', '1', '25', '-50');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('223', '1', '14', '-4');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('224', '1', '100', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('225', '1', '34', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('226', '1', '15', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('227', '1', '115', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('228', '1', '10', '-3');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('229', '1', '29', '-10');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('230', '1', '11', '-5');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('231', '1', '16', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('232', '1', '112', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('233', '1', '195', '-2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('234', '1', '197', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('235', '1', '13', '-1');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('236', '1', '73', '-120');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('237', '1', '35', '-2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('238', '1', '82', '-23');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('239', '1', '61', '-2');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('240', '1', '43', '-4');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('241', '1', '4', '-47');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('242', '1', '38', '-134');
INSERT INTO `tec_warehouse_stock` (`id`, `warehouse_id`, `product_id`, `stock`) VALUES ('243', '1', '2', '-1');


#
# TABLE STRUCTURE FOR: tec_warehouseguide
#

DROP TABLE IF EXISTS `tec_warehouseguide`;

CREATE TABLE `tec_warehouseguide` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `guide_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `warehouse_id` int(10) unsigned NOT NULL,
  `warehouse_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `date_tras` date DEFAULT NULL,
  `supplier_id` int(10) unsigned DEFAULT NULL,
  `supplier_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `customer_id` int(10) unsigned DEFAULT NULL,
  `customer_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `payment_method_id` int(10) unsigned NOT NULL,
  `zone_id` int(10) unsigned DEFAULT NULL,
  `order_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `docreference_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `observation` text COLLATE utf8mb4_unicode_ci,
  `counter` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `guide_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `movement_type_id` int(10) unsigned NOT NULL,
  `sucursal_id` int(10) unsigned DEFAULT NULL,
  `currency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `exchange` decimal(8,2) DEFAULT '0.00',
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', 'I', '1', 'principal', '2021-05-30', '2021-06-01', '0', '', '2', 'JIMMY LOYOLA BETETA', '1', NULL, '1', '1', '21wdw', '', '12', '6', NULL, 'PEN', '12.00', 'open', '2021-06-01 17:07:48', '2021-06-01 17:07:48', NULL);
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', 'S', '4', 'Almacen 02', '2021-06-01', '2021-05-31', '0', '', '1', 'CLIENTES VARIOS', '1', NULL, '1', '1', '21wdw', 'interno', 'GI01101011', '5', NULL, 'PEN', '0.00', 'open', '2021-06-01 17:13:45', '2021-06-01 17:13:45', NULL);
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', 'I', '4', 'Almacen 02', '2021-06-01', '2021-06-01', '1', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '0', '', '4', NULL, 'xxxx', 'xxxx', '', '', 'xxxx', '0', NULL, 'USD', '0.00', 'open', '2021-06-01 20:35:59', '2021-06-01 20:37:44', '2021-06-01 20:37:44');
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', 'I', '4', 'Almacen 02', '2021-06-01', '2021-06-01', '1', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '0', '', '4', NULL, 'xxxx', 'xxxx', '', '', 'xxxx', '0', NULL, 'USD', '0.00', 'open', '2021-06-01 20:37:44', '2021-06-01 20:37:44', NULL);
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('5', 'S', '4', 'Almacen 02', '2021-06-01', '0000-00-00', '0', '', '2', 'JIMMY LOYOLA BETETA', '2', NULL, 'xxxx', 'xxxx', '', 'externo', 'B002200001', '5', NULL, 'USD', '0.00', 'open', '2021-06-01 20:39:17', '2021-06-01 20:39:17', NULL);
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('6', 'I', '1', 'principal', '2021-06-02', '0000-00-00', '1', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '0', '', '1', NULL, '3424242', '324', 'esto es un comentario', '', '23324234345', '2', NULL, 'USD', '0.00', 'open', '2021-06-08 00:12:16', '2021-06-08 00:12:16', NULL);
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('7', 'I', '1', 'principal', '2021-06-02', '2021-06-08', '1', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '0', '', '2', NULL, '223222222', '11111111', 'comentario de prueba', '', '3233333333', '3', NULL, 'USD', '0.00', 'open', '2021-06-10 00:06:54', '2021-06-10 00:06:54', NULL);
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('8', 'I', '1', 'principal', '2021-06-10', '2021-06-11', '1', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '0', '', '1', NULL, '11111111', '222222', 'preubua', '', '3333333', '1', NULL, 'USD', '0.00', 'open', '2021-06-11 13:27:17', '2021-06-11 13:27:17', NULL);
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('9', 'I', '1', 'principal', '2021-06-09', '2021-06-11', '0', '', '1', 'CLIENTES VARIOS', '1', NULL, '555555555', '333333333', 'das sadasd asd asdasdsa da asd', '', '11111111111', '1', NULL, 'PEN', '0.00', 'open', '2021-06-11 13:57:08', '2021-06-11 13:57:08', NULL);
INSERT INTO `tec_warehouseguide` (`id`, `guide_type`, `warehouse_id`, `warehouse_name`, `date`, `date_tras`, `supplier_id`, `supplier_name`, `customer_id`, `customer_name`, `payment_method_id`, `zone_id`, `order_number`, `docreference_number`, `observation`, `counter`, `guide_number`, `movement_type_id`, `sucursal_id`, `currency`, `exchange`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES ('10', 'I', '1', 'principal', '2021-11-01', '2021-11-01', '1', 'ACTEC PERU SOCIEDAD ANONIMA CERRADA - ACTEC PERU S.A.C.', '0', '', '4', NULL, '123456789', '1', '', '', '123456789', '1', NULL, 'PEN', '4.10', 'open', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);


#
# TABLE STRUCTURE FOR: tec_warehouseguide_detail
#

DROP TABLE IF EXISTS `tec_warehouseguide_detail`;

CREATE TABLE `tec_warehouseguide_detail` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `warehouseguide_id` int(10) unsigned NOT NULL,
  `product_id` int(10) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `quantity` int(10) unsigned DEFAULT NULL,
  `price` decimal(10,2) DEFAULT '0.00',
  `price_inc` decimal(10,2) DEFAULT '0.00',
  `total` decimal(10,2) DEFAULT '0.00',
  `avgdiscount` decimal(8,2) DEFAULT '0.00',
  `lote` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `observation` text COLLATE utf8mb4_unicode_ci,
  `production_date` date DEFAULT NULL,
  `expiration_date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `tec_warehouseguide_detail` (`id`, `warehouseguide_id`, `product_id`, `name`, `quantity`, `price`, `price_inc`, `total`, `avgdiscount`, `lote`, `observation`, `production_date`, `expiration_date`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '1', '1', 'TAPA PLÁSTICA CELESTE MAQUILA AGUA D.A.M.', '3', '1.00', '1.18', '3.54', '0.00', '', 'efvfrt', '0000-00-00', '0000-00-00', '2021-06-01 17:07:48', '2021-06-01 17:07:48', NULL);
INSERT INTO `tec_warehouseguide_detail` (`id`, `warehouseguide_id`, `product_id`, `name`, `quantity`, `price`, `price_inc`, `total`, `avgdiscount`, `lote`, `observation`, `production_date`, `expiration_date`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '2', '1', 'TAPA PLÁSTICA CELESTE MAQUILA AGUA D.A.M.', '5', '1.00', '1.18', '5.90', '0.00', '', '', '0000-00-00', '0000-00-00', '2021-06-01 17:13:45', '2021-06-01 17:13:45', NULL);
INSERT INTO `tec_warehouseguide_detail` (`id`, `warehouseguide_id`, `product_id`, `name`, `quantity`, `price`, `price_inc`, `total`, `avgdiscount`, `lote`, `observation`, `production_date`, `expiration_date`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', '4', '1', 'TAPA PLÁSTICA CELESTE MAQUILA AGUA D.A.M.', '10', '5.00', '5.90', '59.00', '0.00', '', 'Observaciones del detalle', '0000-00-00', '0000-00-00', '2021-06-01 20:37:44', '2021-06-01 20:37:44', NULL);
INSERT INTO `tec_warehouseguide_detail` (`id`, `warehouseguide_id`, `product_id`, `name`, `quantity`, `price`, `price_inc`, `total`, `avgdiscount`, `lote`, `observation`, `production_date`, `expiration_date`, `created_at`, `updated_at`, `deleted_at`) VALUES ('6', '6', '1', 'TAPA PLÁSTICA CELESTE MAQUILA AGUA D.A.M.', '12', '132.25', '140.45', '1685.39', '10.00', '', 'Esta es una prueba', '0000-00-00', '0000-00-00', '2021-06-08 00:12:16', '2021-06-08 00:12:16', NULL);
INSERT INTO `tec_warehouseguide_detail` (`id`, `warehouseguide_id`, `product_id`, `name`, `quantity`, `price`, `price_inc`, `total`, `avgdiscount`, `lote`, `observation`, `production_date`, `expiration_date`, `created_at`, `updated_at`, `deleted_at`) VALUES ('7', '7', '3', 'TAPA PLÁSTICA TRANSPARENTE MAQUILA AGUA D.A.M.', '5', '120.00', '137.35', '686.76', '3.00', '', 'otra observacion', '0000-00-00', '0000-00-00', '2021-06-10 00:06:54', '2021-06-10 00:06:54', NULL);
INSERT INTO `tec_warehouseguide_detail` (`id`, `warehouseguide_id`, `product_id`, `name`, `quantity`, `price`, `price_inc`, `total`, `avgdiscount`, `lote`, `observation`, `production_date`, `expiration_date`, `created_at`, `updated_at`, `deleted_at`) VALUES ('8', '8', '2', 'TAPA PLÁSTICA ROJA MAQUILA AGUA D.A.M.', '13', '123.00', '140.79', '1830.22', '3.00', '', 'wqeewq wqeqwewq', '0000-00-00', '0000-00-00', '2021-06-11 13:27:17', '2021-06-11 13:27:17', NULL);
INSERT INTO `tec_warehouseguide_detail` (`id`, `warehouseguide_id`, `product_id`, `name`, `quantity`, `price`, `price_inc`, `total`, `avgdiscount`, `lote`, `observation`, `production_date`, `expiration_date`, `created_at`, `updated_at`, `deleted_at`) VALUES ('9', '9', '1', 'TAPA PLÁSTICA CELESTE MAQUILA AGUA D.A.M.', '13', '123.00', '126.27', '1641.53', '13.00', '', 'werwqe vqweqw', '0000-00-00', '0000-00-00', '2021-06-11 13:57:08', '2021-06-11 13:57:08', NULL);
INSERT INTO `tec_warehouseguide_detail` (`id`, `warehouseguide_id`, `product_id`, `name`, `quantity`, `price`, `price_inc`, `total`, `avgdiscount`, `lote`, `observation`, `production_date`, `expiration_date`, `created_at`, `updated_at`, `deleted_at`) VALUES ('10', '10', '208', 'IMPRESORA TERMINCA HOP H806 LAN + SERIAL + BLUETOOTH 80MM', '10', '340.00', '401.20', '4012.00', '0.00', '', '', '0000-00-00', '0000-00-00', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);


#
# TABLE STRUCTURE FOR: tec_warehouseguide_detail_serie
#

DROP TABLE IF EXISTS `tec_warehouseguide_detail_serie`;

CREATE TABLE `tec_warehouseguide_detail_serie` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `warehouseguide_detail_id` int(10) unsigned NOT NULL,
  `serie_number` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', '10', 'HTRP-80210923071', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('2', '10', 'HTRP-80210923072', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', '10', 'HTRP-80210923073', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', '10', 'HTRP-80210923074', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('5', '10', 'HTRP-80210923075', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('6', '10', 'HTRP-80210923076', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('7', '10', 'HTRP-80210923077', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('8', '10', 'HTRP-80210923078', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('9', '10', 'HTRP-80210923079', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);
INSERT INTO `tec_warehouseguide_detail_serie` (`id`, `warehouseguide_detail_id`, `serie_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('10', '10', 'HTRP-80210923080', '2021-11-01 20:55:26', '2021-11-01 20:55:26', NULL);


#
# TABLE STRUCTURE FOR: tec_warehouses
#

DROP TABLE IF EXISTS `tec_warehouses`;

CREATE TABLE `tec_warehouses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `warehouse` varchar(250) NOT NULL,
  `code` varchar(10) NOT NULL,
  `address` varchar(200) NOT NULL,
  `location` varchar(6) NOT NULL,
  `external_guide_serie` varchar(4) NOT NULL,
  `external_guide_number` varchar(8) NOT NULL,
  `internal_guide_serie` varchar(4) NOT NULL,
  `internal_guide_number` varchar(8) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `tec_warehouses` (`id`, `warehouse`, `code`, `address`, `location`, `external_guide_serie`, `external_guide_number`, `internal_guide_serie`, `internal_guide_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('1', 'principal', '223', 'ew rwerwe', '100402', '12fg', '2342323', '23ee', '324232', NULL, '2021-06-28 22:29:48', NULL);
INSERT INTO `tec_warehouses` (`id`, `warehouse`, `code`, `address`, `location`, `external_guide_serie`, `external_guide_number`, `internal_guide_serie`, `internal_guide_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('3', 'dcdfddc', '1', 'Av Canto Grande', '160205', 'B002', '100000', 'GI01', '101010', '2021-06-01 15:12:29', '2021-06-01 15:12:29', NULL);
INSERT INTO `tec_warehouses` (`id`, `warehouse`, `code`, `address`, `location`, `external_guide_serie`, `external_guide_number`, `internal_guide_serie`, `internal_guide_number`, `created_at`, `updated_at`, `deleted_at`) VALUES ('4', 'Almacen 02', '4', 'Canto grande', '0', 'B002', '200001', 'GI01', '101011', '2021-06-01 15:30:26', '2021-06-01 20:39:17', NULL);


#
# TABLE STRUCTURE FOR: view_sales
#

DROP TABLE IF EXISTS `view_sales`;

CREATE ALGORITHM=UNDEFINED DEFINER=`sistematpv`@`localhost` SQL SECURITY DEFINER VIEW `view_sales` AS select `sistemat_db_00000000000`.`tec_sales`.`id` AS `pid`,`sistemat_db_00000000000`.`tec_sales`.`date` AS `date`,`sistemat_db_00000000000`.`tec_sales`.`customer_name` AS `customer_name`,`sistemat_db_00000000000`.`tec_sales`.`currency` AS `currency`,`sistemat_db_00000000000`.`tec_sales`.`grand_total` AS `grand_total`,`sistemat_db_00000000000`.`tec_sales`.`paid` AS `paid`,`sistemat_db_00000000000`.`tec_sales`.`status` AS `status`,(case when (`sistemat_db_00000000000`.`tec_sales`.`document_type` = 1) then 'Boleta' when (`sistemat_db_00000000000`.`tec_sales`.`document_type` = 2) then 'Factura' else 'Nota de venta' end) AS `vdoctype`,`sistemat_db_00000000000`.`tec_sales`.`invoice_id` AS `ndoc`,`sistemat_db_00000000000`.`tec_sales`.`estado` AS `estado`,`sistemat_db_00000000000`.`tec_canals`.`canal` AS `canal`,`sistemat_db_00000000000`.`tec_sales`.`trader_id` AS `trader`,if((`t2`.`estadoSend` = 1),'Error de envío',if((`t2`.`estadoSend` = 2),'Enviado',if((`t2`.`estadoSend` = 3),concat('Rechazado|',concat_ws(' ',`t2`.`error_code`,`t2`.`response_descrip`)),convert(if((`t2`.`estadoSend` = 4),'Procesado','') using utf8)))) AS `Name_exp_12`,`sistemat_db_00000000000`.`tec_locals`.`code` AS `code`,`sistemat_db_00000000000`.`tec_sales`.`created_by` AS `created_by`,`t2`.`response_descrip` AS `response_descrip` from (((`sistemat_db_00000000000`.`tec_sales` left join `sistemat_db_00000000000`.`tec_canals` on((`sistemat_db_00000000000`.`tec_canals`.`id` = `sistemat_db_00000000000`.`tec_sales`.`canal_id`))) left join `sistemat_db_00000000000`.`tec_locals` on((`sistemat_db_00000000000`.`tec_locals`.`id` = `sistemat_db_00000000000`.`tec_sales`.`local_id`))) left join (select `detalle`.`sale_id` AS `id_venta`,`envio`.`status` AS `estadoSend`,`envio`.`response_descrip` AS `response_descrip`,`envio`.`error_code` AS `error_code` from (`sistemat_db_00000000000`.`tec_send_invoice` `envio` join `sistemat_db_00000000000`.`tec_send_invoice_items` `detalle` on((`detalle`.`send_invoice_id` = `envio`.`id`))) where (`envio`.`estado` = 1)) `t2` on((`t2`.`id_venta` = `sistemat_db_00000000000`.`tec_sales`.`id`))) order by `sistemat_db_00000000000`.`tec_sales`.`date` desc;

utf8mb4_general_ci;

INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2643', '2023-08-09 02:13:49', 'OJEDA MARKET INVERSIONES E.I.R.L.', 'PEN', '100.00', '0.00', 'DEBE', 'Factura', 'F002-0000230', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'SUNAT: La Factura numero F002-0000230, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2642', '2023-08-09 02:12:45', 'CLIENTES VARIOS', 'PEN', '15.73', '0.00', 'DEBE', 'Boleta', 'B002-0000221', '1', 'FZA', NULL, '', 'Principal', '1', NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2641', '2023-08-09 02:05:12', 'TUEROS AYQUIPA JUANA NATIVIDAD', 'PEN', '15.73', '15.73', 'Pagado', 'Boleta', 'B002-0000220', '1', 'FZA', NULL, '', 'Principal', '1', NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2640', '2023-08-09 02:04:39', 'LAZO MARKET S.A.C.', 'PEN', '0.04', '0.04', 'Pagado', 'Boleta', 'B002-0000219', '0', 'FZA', NULL, '', 'Principal', '1', NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2639', '2023-08-09 02:02:21', 'TUEROS AYQUIPA JUANA NATIVIDAD', 'PEN', '121.32', '0.00', 'DEBE', 'Factura', 'F002-0000229', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000229, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2638', '2023-08-09 01:59:28', 'CLIENTES VARIOS', 'PEN', '15.73', '0.00', 'DEBE', 'Boleta', 'B002-0000218', '1', 'FZA', NULL, '', 'Principal', '1', NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2637', '2023-07-06 21:58:32', 'LAZO MARKET S.A.C.', 'PEN', '0.10', '0.00', 'DEBE', 'Factura', 'F002-0000228', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000228, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2636', '2023-07-06 21:14:14', 'LAZO MARKET S.A.C.', 'PEN', '0.10', '0.00', 'DEBE', 'Factura', 'F002-0000227', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000227, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2635', '2023-07-03 21:40:09', 'LAZO MARKET S.A.C.', 'PEN', '250.50', '0.00', 'DEBE', 'Factura', 'F002-0000226', '1', 'FZA', NULL, 'Rechazado|soap-env:Client La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688698219873 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.50\")\'', 'Principal', '1', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688698219873 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.50\")\'');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2634', '2023-07-03 21:40:04', 'OJEDA MARKET INVERSIONES E.I.R.L.', 'PEN', '250.50', '0.00', 'DEBE', 'Factura', 'F002-0000225', '1', 'FZA', NULL, 'Rechazado|soap-env:Client La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688438153041 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'', 'Principal', '1', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688438153041 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2633', '2023-07-03 21:37:32', 'LAZO MARKET S.A.C.', 'PEN', '250.50', '0.00', 'DEBE', 'Factura', 'F002-0000224', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000224, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2632', '2023-07-03 21:34:26', 'LAZO MARKET S.A.C.', 'PEN', '260.50', '0.00', 'DEBE', 'Factura', 'F002-0000223', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000223, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2631', '2023-07-03 21:32:24', 'LAZO MARKET S.A.C.', 'PEN', '250.50', '0.00', 'DEBE', 'Factura', 'F002-0000222', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000222, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2630', '2023-06-30 11:14:34', 'OJEDA MARKET INVERSIONES E.I.R.L.', 'PEN', '250.50', '0.00', 'DEBE', 'Factura', 'F002-0000221', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000221, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2629', '2023-06-30 11:03:05', 'OJEDA MARKET INVERSIONES E.I.R.L.', 'PEN', '250.50', '0.00', 'DEBE', 'Factura', 'F002-0000220', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000220, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2628', '2023-06-29 22:08:12', 'LAZO MARKET S.A.C.', 'PEN', '250.50', '0.00', 'DEBE', 'Factura', 'F002-0000219', '1', 'FZA', NULL, 'Rechazado|soap-env:Client La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688094248260 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'', 'Principal', '1', 'La suma de las cuotas debe ser igual al Monto neto pendiente de pago. - Detalle: xxx.xxx.xxx value=\'ticket: 1688094248260 error: INFO : 3319 (nodo: \"cac:PaymentTerms/cbc:Amount\" valor: \"250.5\")\'');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2627', '2023-06-28 18:41:23', 'LAZO MARKET S.A.C.', 'PEN', '464431.28', '464431.28', 'Pagado', 'Factura', 'F002-0000218', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000218, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2626', '2023-06-28 18:28:12', 'OJEDA MARKET INVERSIONES E.I.R.L.', 'PEN', '1775.70', '0.00', 'DEBE', 'Factura', 'F002-0000217', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000217, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2625', '2023-06-28 18:11:55', 'LAZO MARKET S.A.C.', 'PEN', '934.20', '0.00', 'DEBE', 'Factura', 'F002-0000216', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000216, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2624', '2023-06-28 18:02:40', 'LAZO MARKET S.A.C.', 'PEN', '738.00', '0.00', 'DEBE', 'Factura', 'F002-0000215', '1', 'FZA', NULL, 'Rechazado|soap-env:Client Si el tipo de transaccion es al Credito debe existir al menos información de una cuota de pago - Detalle: xxx.xxx.xxx value=\'ticket: 1687993119148 error: INFO : 3249 (nodo: \"/\" valor: \"\")\'', 'Principal', '1', 'Si el tipo de transaccion es al Credito debe existir al menos información de una cuota de pago - Detalle: xxx.xxx.xxx value=\'ticket: 1687993119148 error: INFO : 3249 (nodo: \"/\" valor: \"\")\'');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2623', '2023-06-28 17:58:35', 'TUEROS AYQUIPA JUANA NATIVIDAD', 'PEN', '11.90', '11.90', 'Pagado', 'Factura', 'F002-0000214', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000214, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2622', '2023-06-28 17:56:49', 'TUEROS AYQUIPA JUANA NATIVIDAD', 'PEN', '15.44', '15.44', 'Pagado', 'Factura', 'F002-0000213', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000213, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2621', '2023-06-28 17:51:14', 'TUEROS AYQUIPA JUANA NATIVIDAD', 'PEN', '15.44', '15.44', 'Pagado', 'Factura', 'F002-0000212', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000212, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2605', '2023-01-27 14:42:38', 'PONTE TRUJILLO ALEXANDER KENY', 'PEN', '99.80', '99.80', 'Pagado', 'Factura', 'F002-0000211', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000211, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2604', '2023-01-27 14:41:27', 'PONTE TRUJILLO ALEXANDER KENY', 'PEN', '5.00', '5.00', 'Pagado', 'Boleta', 'B002-0000217', '1', 'TPV', NULL, 'Enviado', 'Principal', '1', NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2603', '2023-01-27 14:40:52', 'PONTE TRUJILLO ALEXANDER KENY', 'PEN', '652.60', '652.60', 'Pagado', 'Factura', 'F002-0000210', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000210, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2598', '2023-01-05 21:07:34', '6G E.I.R.L.', 'PEN', '200.00', '200.00', 'Pagado', 'Factura', 'F002-0000209', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000209, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2597', '2023-01-05 20:58:09', 'CHIPA MALPARTIDA YARINE STEPHANY', 'PEN', '24.30', '24.30', 'Pagado', 'Factura', 'F002-0000208', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000208, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2596', '2023-01-05 19:08:24', '6G E.I.R.L.', 'PEN', '162.30', '162.30', 'Pagado', 'Factura', 'F002-0000207', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000207, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2594', '2023-01-05 19:07:21', '6G E.I.R.L.', 'PEN', '200.00', '200.00', 'Pagado', 'Factura', 'F002-0000206', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000206, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2593', '2023-01-05 11:40:54', '6G E.I.R.L.', 'PEN', '200.00', '200.00', 'Pagado', 'Factura', 'F002-0000205', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000205, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2592', '2023-01-05 00:03:34', 'SUPERMERCADO CANDY S.A.C.', 'PEN', '24.30', '24.30', 'Pagado', 'Factura', 'F002-0000204', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000204, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2591', '2023-01-05 00:03:00', 'SUPERMERCADO CANDY S.A.C.', 'PEN', '126.00', '126.00', 'Pagado', 'Nota de venta', 'NV001-0001', '1', 'TPV', NULL, '', 'Principal', '1', NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2590', '2023-01-05 00:02:30', 'SUPERMERCADO CANDY S.A.C.', 'PEN', '126.00', '126.00', 'Pagado', 'Factura', 'F002-0000203', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000203, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2589', '2023-01-05 00:01:36', 'VILLEGAS TRELLES SOFIA ROXANA', 'PEN', '1.00', '1.00', 'Pagado', 'Factura', 'F002-0000202', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000202, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2588', '2023-01-05 00:00:36', 'VILLEGAS TRELLES SOFIA ROXANA', 'PEN', '1.00', '1.00', 'Pagado', 'Factura', 'F002-0000201', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000201, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2587', '2023-01-05 00:00:00', 'CHIPA MALPARTIDA YARINE STEPHANY', 'PEN', '8.00', '8.00', 'Pagado', 'Boleta', 'B002-0000216', '1', 'TPV', NULL, '', 'Principal', '1', NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2586', '2023-01-04 23:58:51', 'CHIPA MALPARTIDA YARINE STEPHANY', 'PEN', '8.00', '8.00', 'Pagado', 'Factura', 'F002-0000200', '1', 'TPV', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000200, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2585', '2023-01-04 22:16:54', '6G E.I.R.L.', 'PEN', '75.00', '75.00', 'Pagado', 'Factura', 'F002-0000199', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000199, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2581', '2022-12-29 22:55:16', 'LAZO MARKET S.A.C.', 'PEN', '100.00', '150.00', 'Pagado', 'Factura', 'F002-0000198', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000198, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2578', '2022-12-29 22:35:49', '6G E.I.R.L.', 'PEN', '75.00', '75.00', 'Pagado', 'Factura', 'F002-0000197', '1', 'FZA', '44', 'Procesado', 'Principal', '1', 'La Factura numero F002-0000197, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2565', '2022-12-29 02:21:53', 'CHIPA MALPARTIDA YARINE STEPHANY', 'PEN', '223.00', '223.00', 'Pagado', 'Factura', 'F002-0000196', '1', 'FZA', NULL, 'Procesado', 'Principal', '1', 'La Factura numero F002-0000196, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2548', '2022-12-16 12:45:05', 'CLIENTES VARIOS', 'PEN', '21.94', '0.00', 'DEBE', 'Boleta', 'B002-0000215', '1', 'FZA', '49', '', 'Principal', '1', NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2546', '2022-12-16 11:17:03', 'LIVIOS REPRESENTACIONES S.R.L.', 'PEN', '125.86', '125.86', 'Pagado', 'Factura', 'F002-0000195', '1', 'FZA', '45', 'Procesado', 'Principal', '1', 'La Factura numero F002-0000195, ha sido aceptada');
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2541', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2542', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2543', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2544', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2545', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2547', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2549', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2550', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2551', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2552', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2553', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2554', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2555', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2556', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2557', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2558', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2559', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2560', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2561', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2562', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2563', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2564', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2566', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2567', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2568', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2569', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2570', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2571', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2572', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2573', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2574', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2575', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2576', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2577', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2579', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2580', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2582', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2583', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2584', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2595', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2599', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2600', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2601', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2602', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2606', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2607', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2608', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2609', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2610', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2611', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2612', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2613', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2614', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2615', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2616', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2617', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2618', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2619', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);
INSERT INTO `view_sales` (`pid`, `date`, `customer_name`, `currency`, `grand_total`, `paid`, `status`, `vdoctype`, `ndoc`, `estado`, `canal`, `trader`, `Name_exp_12`, `code`, `created_by`, `response_descrip`) VALUES ('2620', '0000-00-00 00:00:00', '', NULL, '0.00', NULL, NULL, 'Nota de venta', NULL, NULL, NULL, NULL, '', NULL, NULL, NULL);


